From d7d0a6f2ce42ec7bdd9eb6514b17ff9e9c0b098a Mon Sep 17 00:00:00 2001 From: teddy Date: Wed, 21 Aug 2024 11:41:25 -0300 Subject: [PATCH] chore: small linter fixes --- .../test/properties/medusa/Protocol.properties.t.sol | 4 +--- .../test/properties/medusa/handlers/Protocol.handler.t.sol | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/contracts-bedrock/test/properties/medusa/Protocol.properties.t.sol b/packages/contracts-bedrock/test/properties/medusa/Protocol.properties.t.sol index fae1e724a3128..e8c40a49d8585 100644 --- a/packages/contracts-bedrock/test/properties/medusa/Protocol.properties.t.sol +++ b/packages/contracts-bedrock/test/properties/medusa/Protocol.properties.t.sol @@ -178,9 +178,7 @@ contract ProtocolProperties is ProtocolHandler, CryticERC20ExternalBasicProperti vm.prank(address(MESSENGER)); vm.mockCall( - address(MESSENGER), - abi.encodeWithSignature("crossDomainMessageSource()"), - abi.encode(address(token)) + address(MESSENGER), abi.encodeWithSignature("crossDomainMessageSource()"), abi.encode(address(token)) ); token.relayERC20(currentActor(), recipient, 0); uint256 balanceAfter = token.balanceOf(currentActor()); diff --git a/packages/contracts-bedrock/test/properties/medusa/handlers/Protocol.handler.t.sol b/packages/contracts-bedrock/test/properties/medusa/handlers/Protocol.handler.t.sol index e64612c7b4f14..0502b8ec843a4 100644 --- a/packages/contracts-bedrock/test/properties/medusa/handlers/Protocol.handler.t.sol +++ b/packages/contracts-bedrock/test/properties/medusa/handlers/Protocol.handler.t.sol @@ -38,7 +38,7 @@ contract ProtocolHandler is TestBase, StdUtils, Actors { address[] internal remoteTokens; address[] internal allSuperTokens; - //@notice 'real' deploy salt => total supply sum across chains + /// @notice 'real' deploy salt => total supply sum across chains EnumerableMap.Bytes32ToUintMap internal ghost_totalSupplyAcrossChains; constructor() {