Giveth / vaultcontroller

Vault Architecture
GNU General Public License v3.0
0 stars 3 forks source link

initializeChildVault/setChildVaultLimits bad _dailyTxnLimit check #44

Closed adria0 closed 7 years ago

adria0 commented 7 years ago

in initializeChildVault and setChildVaultLimits

if (_dailyTxnLimit > dailyAmountLimit) throw;
jbaylina commented 7 years ago

Fixed! Just removed this check.

adria0 commented 7 years ago

Instead of removing maybe the sentence must be changed to:

if (_dailyTxnLimit > dailyTxnLimit) throw;

?

jbaylina commented 7 years ago

Done!