Commit 78210d4e authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

contracts-bedrock: deal uint128 max

Co-authored-by: default avatarMatt Solomon <matt@mattsolomon.dev>
parent efdf61f7
...@@ -30,8 +30,8 @@ contract OptimismPortal_Test is Portal_Initializer { ...@@ -30,8 +30,8 @@ contract OptimismPortal_Test is Portal_Initializer {
function setUp() public override { function setUp() public override {
super.setUp(); super.setUp();
depositor = makeAddr("depositor"); depositor = makeAddr("depositor");
vm.deal(depositor, type(uint256).max); vm.deal(depositor, type(uint128).max);
vm.deal(address(this), type(uint256).max); vm.deal(address(this), type(uint128).max);
} }
/// @dev Tests that the constructor sets the correct values. /// @dev Tests that the constructor sets the correct values.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment