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
When our contract is calling functions in outside contracts, we need to verify if the expected behaviors are really being executed.
At line 111, it's calling erc20token.transferFrom(). We expect the token contract to transfer the tokens to the _contributors by this function. But a dummy token contract can be designed not to do the transaction.
This is usually a critical issue due to the potential loss if the Dapp syncronizes the balances of those _contributors. But in our case, it is simply a minor issue.
The text was updated successfully, but these errors were encountered:
multisender/contracts/contracts/multisender/UpgradebleStormSender.sol
Lines 102 to 117 in 17153e9
When our contract is calling functions in outside contracts, we need to verify if the expected behaviors are really being executed.
At line 111, it's calling
erc20token.transferFrom()
. We expect the token contract to transfer the tokens to the_contributors
by this function. But a dummy token contract can be designed not to do the transaction.This is usually a critical issue due to the potential loss if the Dapp syncronizes the balances of those
_contributors
. But in our case, it is simply a minor issue.The text was updated successfully, but these errors were encountered: