Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upTransfer function returns false when wrapped in a require statement #5
Labels
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
BUG
While having other smart contracts communicate with the DSLA token contract, we noticed they might run into issues when wrapping the DSLA token contract
transfer
function in arequire
statement like the following:FIX
After investigation, it appears that the
transfer
function of the DSLA token contract always returnsfalse
because it presently lacks areturn
statement, an issue simular to the one extensively described in this article.To ensure full compatibility of the DSLA token contract with other smart contracts, we will apply a patch to the ropsten and mainnet contracts accordingly, using ZeppellinOS patching capabilities.