mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
fix: Add missing return value to metaDeposit
This commit is contained in:
parent
3389b8b806
commit
8a7d523436
|
@ -234,7 +234,7 @@ contract StaticATokenLM is ERC20 {
|
||||||
StaticATokenErrors.INVALID_SIGNATURE
|
StaticATokenErrors.INVALID_SIGNATURE
|
||||||
);
|
);
|
||||||
_nonces[depositor] = currentValidNonce.add(1);
|
_nonces[depositor] = currentValidNonce.add(1);
|
||||||
_deposit(depositor, recipient, value, referralCode, fromUnderlying);
|
return _deposit(depositor, recipient, value, referralCode, fromUnderlying);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue
Block a user