QA Report #7
Labels
bug
Something isn't working
duplicate
This issue or pull request already exists
QA (Quality Assurance)
Assets are not at risk. State handling, function incorrect as to spec, issues with clarity, syntax
LOW
It's mandatory to create a logic of the owner’s modification where a new owner is proposed first, the owner accepts the proposal and, in this way, we make sure that there are no errors when writing the address of the new owner.
Governable
and can be paused, so a denial of service could happend if the keys are compromised or the issue number 3 happens.safeTransferFrom
, therefore, the amount received byVUSD
will be less than the expected.Some tokens may implement a fee during transfers, this is the case of USDT, even though the project has currently set it to 0. So, the
transferFrom
function would return 'true' despite receiving less than expected.The logic is
while (i < withdrawals.length && (i - start) <= maxWithdrawalProcesses) {
If
maxWithdrawalProcesses=0
andstart=0
theni=0
. So(0-0)<=0
==true
But the expected maxWithdrawalProcesses is zero.
The text was updated successfully, but these errors were encountered: