Skip to content

Commit

Permalink
Fix function state mutability warning
Browse files Browse the repository at this point in the history
This commit fixes warnings thrown by the solc 0.7.4 compiler:
"Warning: Function state mutability can be restricted to pure"
  • Loading branch information
zemse committed Oct 24, 2020
1 parent f0bbdeb commit a28d37e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/mocks/GSNRecipientMock.sol
Expand Up @@ -13,7 +13,7 @@ contract GSNRecipientMock is ContextMock, GSNRecipient {

function acceptRelayedCall(address, address, bytes calldata, uint256, uint256, uint256, uint256, bytes calldata, uint256)
external
view
pure
override
returns (uint256, bytes memory)
{
Expand Down

0 comments on commit a28d37e

Please sign in to comment.