Removed VaultSet event and fixed ref comment

This commit is contained in:
Griff Green 2017-12-05 18:29:10 -03:00 committed by GitHub
parent fc47f1c7ee
commit 504c8d8155
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -85,7 +85,6 @@ contract LPVault is Owned {// TODO NEEDS TO BE ESCAPABLE!!! AND WE NEED TO ADD A
function setLiquidPledging(address _newLiquidPledging) public onlyOwner { function setLiquidPledging(address _newLiquidPledging) public onlyOwner {
require(address(liquidPledging) == 0x0); require(address(liquidPledging) == 0x0);
liquidPledging = LiquidPledging(_newLiquidPledging); liquidPledging = LiquidPledging(_newLiquidPledging);
VaultSet(_newLiquidPledging);
} }
/// @notice Used to decentralize, toggles whether the LPVault will /// @notice Used to decentralize, toggles whether the LPVault will
@ -102,7 +101,7 @@ contract LPVault is Owned {// TODO NEEDS TO BE ESCAPABLE!!! AND WE NEED TO ADD A
/// `autoPay == true` the transfer happens automatically `else` the `owner` /// `autoPay == true` the transfer happens automatically `else` the `owner`
/// must call `confirmPayment()` for a transfer to occur (training wheels); /// must call `confirmPayment()` for a transfer to occur (training wheels);
/// either way, a new payment is added to `payments[]` /// either way, a new payment is added to `payments[]`
/// @param _ref References the payment can be a URL, IPFS hash, etc /// @param _ref References the payment will normally be the pledgeID
/// @param _dest The address that payments will be sent to /// @param _dest The address that payments will be sent to
/// @param _amount The amount that the payment is being authorized for /// @param _amount The amount that the payment is being authorized for
/// @return idPayment The id of the payment (needed by the owner to confirm) /// @return idPayment The id of the payment (needed by the owner to confirm)
@ -195,7 +194,6 @@ contract LPVault is Owned {// TODO NEEDS TO BE ESCAPABLE!!! AND WE NEED TO ADD A
} }
event AutoPaySet(); event AutoPaySet();
event VaultSet(address indexed liquidPledging);
event ConfirmPayment(uint indexed idPayment); event ConfirmPayment(uint indexed idPayment);
event CancelPayment(uint indexed idPayment); event CancelPayment(uint indexed idPayment);
event AuthorizePayment( event AuthorizePayment(