Skip to content

Commit

Permalink
feat(protocol): update Hekla ontakeForkHeight (#17983)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha committed Aug 27, 2024
1 parent 9910863 commit 8819e3a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/protocol/contracts/hekla/HeklaTaikoL1.sol
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ contract HeklaTaikoL1 is TaikoL1 {
minGasExcess: 1_340_000_000,
maxGasIssuancePerBlock: 600_000_000 // two minutes
}),
ontakeForkHeight: 720_000 // = 7200 * 100
});
ontakeForkHeight: 793_000
});
}
}
2 changes: 1 addition & 1 deletion packages/protocol/contracts/hekla/HeklaTaikoL2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ import "../L2/TaikoL2.sol";
/// @custom:security-contact security@taiko.xyz
contract HeklaTaikoL2 is TaikoL2 {
function ontakeForkHeight() public pure override returns (uint64) {
return 720_000; // = 7200 * 100
return 793_000;
}
}

0 comments on commit 8819e3a

Please sign in to comment.