From 1784c9180e022fcc901240b91939dd2d4fe80fbc Mon Sep 17 00:00:00 2001 From: wcgcyx Date: Tue, 27 Feb 2024 12:04:52 +1000 Subject: [PATCH] Update RootERC20BridgeFlowRateHandler.sol --- test/invariant/root/RootERC20BridgeFlowRateHandler.sol | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/test/invariant/root/RootERC20BridgeFlowRateHandler.sol b/test/invariant/root/RootERC20BridgeFlowRateHandler.sol index bbf162ae..60bc7f39 100644 --- a/test/invariant/root/RootERC20BridgeFlowRateHandler.sol +++ b/test/invariant/root/RootERC20BridgeFlowRateHandler.sol @@ -113,11 +113,7 @@ contract RootERC20BridgeFlowRateHandler is Test { } } - function findFrom(uint256 offset, address token, uint256 requiredAmt) - public - view - returns (address from) - { + function findFrom(uint256 offset, address token, uint256 requiredAmt) public view returns (address from) { for (uint256 i = 0; i < users.length; i++) { uint256 index = i + offset; if (index >= users.length) {