Skip to content

Commit 8473d88

Browse files
committed
init target manta and bitcion
1 parent a63896d commit 8473d88

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/core/FinalityRelayerManager.sol

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ contract FinalityRelayerManager is OwnableUpgradeable, FinalityRelayerManagerSto
2020

2121
uint256 internal constant MIN_CHALLENGE_PERIOD = 43200 ; // 0.5 days
2222

23-
uint256 public TARGET_MANTA = 1000000 * 10e17;
23+
uint256 public TARGET_MANTA;
2424

25-
uint256 public TARGET_BITCOIN = 1000 * 10e7;
25+
uint256 public TARGET_BITCOIN;
2626

2727
modifier onlyOperatorWhitelistManager() {
2828
require(
@@ -50,7 +50,10 @@ contract FinalityRelayerManager is OwnableUpgradeable, FinalityRelayerManagerSto
5050
disputeGameFactory = _disputeGameFactory;
5151
isDisputeGameFactory = _isDisputeGameFactory;
5252
operatorWhitelistManager = _operatorWhitelistManager;
53+
5354
confirmBatchId = 0;
55+
TARGET_MANTA = 1000000 * 10e17;
56+
TARGET_BITCOIN = 1000 * 10e7;
5457
}
5558

5659
function registerOperator(string calldata nodeUrl) external {

0 commit comments

Comments
 (0)