Skip to content

Commit

Permalink
chore: small linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
0xteddybear committed Aug 21, 2024
1 parent d110367 commit d7d0a6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit d7d0a6f

Please sign in to comment.