Skip to content

Commit f209609

Browse files
committed
refactor: moved ArbitrableExample to sub-folder
1 parent 98782de commit f209609

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

contracts/src/arbitration/ArbitrableExample.sol renamed to contracts/src/arbitration/arbitrables/ArbitrableExample.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
pragma solidity ^0.8;
44

5-
import "./IArbitrable.sol";
6-
import "../evidence/IMetaEvidence.sol";
5+
import "../IArbitrable.sol";
6+
import "../../evidence/IMetaEvidence.sol";
77

88
/**
99
* @title ArbitrableExample

contracts/src/arbitration/arbitrables/DisputeResolver.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ contract DisputeResolver is IArbitrable, IMetaEvidence {
6767
emit Dispute(arbitrator, disputeID, localDisputeID, localDisputeID);
6868
}
6969

70-
/** @dev To be called by the arbitrator of the dispute, to declare winning ruling.
70+
/** @dev To be called by the arbitrator of the dispute, to declare the winning ruling.
7171
* @param _externalDisputeID ID of the dispute in arbitrator contract.
7272
* @param _ruling The ruling choice of the arbitration.
7373
*/

0 commit comments

Comments
 (0)