You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is always possible to restore the history of contract calls. As a result, anyone can always find out the state of the internal contract variables. It may be useful to know the contract inner variables in some cases or access it artificially while hiding them has no benefits or reasons.
Recommendation
Specify public visibility for the named variables list.
The text was updated successfully, but these errors were encountered:
Severity: low
Code snippet
txs mapping at MultisigWallet.sol
owners array at Shareable.sol
owner index mapping at Shareable.sol
pendings mapping at Shareable.sol
pendingsIndex at Shareable.sol
Description
It is always possible to restore the history of contract calls. As a result, anyone can always find out the state of the internal contract variables. It may be useful to know the contract inner variables in some cases or access it artificially while hiding them has no benefits or reasons.
Recommendation
Specify
public
visibility for the named variables list.The text was updated successfully, but these errors were encountered: