We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f22d90e commit a9df0abCopy full SHA for a9df0ab
contracts/src/gateway/BaseForeignGateway.sol
@@ -9,7 +9,9 @@ import "./interfaces/IHomeGateway.sol";
9
import "./interfaces/IForeignGateway.sol";
10
11
abstract contract BaseForeignGateway is IL1Bridge, IForeignGateway {
12
- uint256 internal localDisputeID;
+ // @dev Note the disputeID needs to start from one as
13
+ // the KlerosV1 proxy governor depends on this implementation.
14
+ uint256 internal localDisputeID = 1;
15
16
// For now this is just a constant, but we'd probably need to
17
// implement the same arbitrationCost calculation code we'll have
0 commit comments