Skip to content

Commit

Permalink
basic fork test working
Browse files Browse the repository at this point in the history
  • Loading branch information
proletesseract committed Jan 23, 2024
1 parent b7f329a commit f00f34b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/fork/root/RootERC20BridgeFlowRate.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ contract RootERC20BridgeFlowRateForkTest is Test, Utils {

function setUp() public {
mainnetFork = vm.createFork(MAINNET_RPC_URL);
vm.selectFork(mainnetFork);
rootBridgeFlowRate = RootERC20BridgeFlowRate(rootBridgeAddress);
}

function test_getWithdrawalDelay() public {
uint256 withdrawDelay = rootBridgeFlowRate.withdrawalDelay();
console2.log("withdrawDelay");
console2.logUint(withdrawDelay);
assertEq(withdrawDelay, uint256(86400));
}
Expand Down

0 comments on commit f00f34b

Please sign in to comment.