Omniscia MetaSoccer Audit

MetaSoccerScouting Static Analysis Findings

MetaSoccerScouting Static Analysis Findings

MSS-01S: Unusued Function Variables

Description:

Multiple linked variables remain unused in their respective functions.

Example:

contracts/MetaSoccerScouting.sol
97function safeTransferFrom(
98 address from,
99 address to,
100 uint256 tokenId,
101 bytes memory _data
102) public override {
103 revert("Transferring Staked NFT");
104}

Recommendation:

We advise their names to be omitted from each function's signature while their data types remain as advised by the compiler (i.e. test(uint256 foo, uint256 bar) would become test(uint256, uint256 bar)).

Alleviation:

The unutilized function argument names were safely omitted from the codebase.