RefundEscrow's events renamed (#1418)

* fixes #1414
This commit is contained in:
Aniket
2018-10-16 19:07:04 +05:30
committed by Nicolás Venturo
parent 03dfb2965c
commit 844a96d0b9
2 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ import "./ConditionalEscrow.sol";
contract RefundEscrow is ConditionalEscrow {
enum State { Active, Refunding, Closed }
event Closed();
event RefundsClosed();
event RefundsEnabled();
State private _state;
@ -57,7 +57,7 @@ contract RefundEscrow is ConditionalEscrow {
function close() public onlyPrimary {
require(_state == State.Active);
_state = State.Closed;
emit Closed();
emit RefundsClosed();
}
/**