Skip to content
This repository was archived by the owner on Dec 30, 2024. It is now read-only.

Commit

Permalink
VaultLimitChanges parameters added
Browse files Browse the repository at this point in the history
  • Loading branch information
jbaylina committed Apr 21, 2017
1 parent d7439be commit 8d9fbb6
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 9 deletions.
22 changes: 20 additions & 2 deletions contracts/VaultController.sol
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,16 @@ contract VaultController is Owned {
parentVaultController.topUpVault();
sendBackOverflow();

VaultsLimitChanged();
VaultsLimitChanged(
_dailyAmountLimit,
_dailyTxnLimit,
_txnAmountLimit,
_openingTime,
_closingTime,
_whiteListTimelock,
_highestAcceptableBalance,
_lowestAcceptableBalance
);
}

uint public test1; // for testing
Expand Down Expand Up @@ -761,7 +770,16 @@ contract VaultController is Owned {
event VaultCanceled(address indexed canceler);
event TopUpVault(uint indexed vaultControllerId, uint amount);

event VaultsLimitChanged();
event VaultsLimitChanged(
uint dailyAmountLimit,
uint dailyTxnLimit,
uint txnAmountLimit,
uint openingTime,
uint closingTime,
uint whiteListTimelock,
uint highestAcceptableBalance,
uint lowestAcceptableBalance
);
}


Expand Down
Loading

0 comments on commit 8d9fbb6

Please sign in to comment.