Skip to content

Commit

Permalink
fix: fix compile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
redhdx committed Jan 14, 2025
1 parent 619a50d commit 898be5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/contracts-bedrock/src/dispute/ZkFaultDisputeGame.sol
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ contract ZkFaultDisputeGame is IZkFaultDisputeGame, Clone, ISemver {
Duration _maxDetectFaultDuration,
uint256 _PROPOSER_BOND,
uint256 _CHALLENGER_BOND,
address _FEE_VAULT_ADDRESS,
address payable _FEE_VAULT_ADDRESS,
uint256 _CHALLENGER_REWARD_PERCENTAGE,
uint256 _PROVER_REWARD_PERCENTAGE,
IDelayedWETH _weth,
Expand All @@ -123,7 +123,7 @@ contract ZkFaultDisputeGame is IZkFaultDisputeGame, Clone, ISemver {
MAX_DETECT_FAULT_DURATION = _maxDetectFaultDuration;
PROPOSER_BOND = _PROPOSER_BOND;
CHALLENGER_BOND = _CHALLENGER_BOND;
_FEE_VAULT_ADDRESS = FEE_VAULT_ADDRESS;
FEE_VAULT_ADDRESS = _FEE_VAULT_ADDRESS;
CHALLENGER_REWARD_PERCENTAGE = _CHALLENGER_REWARD_PERCENTAGE;
PROVER_REWARD_PERCENTAGE = _PROVER_REWARD_PERCENTAGE;
if (CHALLENGER_REWARD_PERCENTAGE + PROVER_REWARD_PERCENTAGE > PERCENTAGE_DIVISOR) {
Expand Down

0 comments on commit 898be5a

Please sign in to comment.