fix: Add missing return value to metaDeposit

This commit is contained in:
Lasse Herskind 2021-09-14 13:00:40 +02:00
parent 3389b8b806
commit 8a7d523436

View File

@ -234,7 +234,7 @@ contract StaticATokenLM is ERC20 {
StaticATokenErrors.INVALID_SIGNATURE
);
_nonces[depositor] = currentValidNonce.add(1);
_deposit(depositor, recipient, value, referralCode, fromUnderlying);
return _deposit(depositor, recipient, value, referralCode, fromUnderlying);
}
/**