code-423n4 / 2022-08-fiatdao-findings

2 stars 1 forks source link

QA Report #258

Open code423n4 opened 2 years ago

code423n4 commented 2 years ago

1.USE OF FLOATING PRAGMA

Recommend using fixed solidity version.This is not a critical issue but this creates unsatbility to the program so having a fixed version reduces the unstability.

Instances

https://github.com/code-423n4/2022-08-fiatdao All the contracts which are in scope has the issue

//actual codes used
contracts/features/Blocklist.sol:2:pragma solidity ^0.8.3;
contracts/interfaces/IERC20.sol:2:pragma solidity ^0.8.3;
contracts/interfaces/IBlocklist.sol:2:pragma solidity ^0.8.3;
contracts/interfaces/IVotingEscrow.sol:2:pragma solidity ^0.8.3;
contracts/VotingEscrow.sol:2:pragma solidity ^0.8.3;