Skip to content

Commit

Permalink
Merge pull request #234 from kleros/feat/escrow-interface-arbitrable
Browse files Browse the repository at this point in the history
feat(escrows): implement arbitrable interface
  • Loading branch information
n1c01a5 authored Feb 28, 2019
2 parents c93d508 + 4f3952c commit e0a25b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@
pragma solidity ^0.4.24;

import "./Arbitrator.sol";
import "./IArbitrable.sol";

import "openzeppelin-solidity/contracts/token/ERC20/ERC20.sol";

contract MultipleArbitrableTokenTransaction {
contract MultipleArbitrableTokenTransaction is IArbitrable {

// **************************** //
// * Contract variables * //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@
pragma solidity ^0.4.24;

import "./Arbitrator.sol";
import "./IArbitrable.sol";

contract MultipleArbitrableTransaction {
contract MultipleArbitrableTransaction is IArbitrable {

// **************************** //
// * Contract variables * //
Expand Down

0 comments on commit e0a25b2

Please sign in to comment.