Browse Source

RefundEscrow's events renamed (#1418)

* fixes #1414
Aniket 7 years ago
parent
commit
844a96d0b9
2 changed files with 3 additions and 3 deletions
  1. 2 2
      contracts/payment/RefundEscrow.sol
  2. 1 1
      test/payment/RefundEscrow.test.js

+ 2 - 2
contracts/payment/RefundEscrow.sol

@@ -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();
   }
 
   /**

+ 1 - 1
test/payment/RefundEscrow.test.js

@@ -54,7 +54,7 @@ contract('RefundEscrow', function ([_, primary, beneficiary, refundee1, refundee
       await shouldFail.reverting(this.escrow.close({ from: beneficiary }));
 
       const { logs } = await this.escrow.close({ from: primary });
-      expectEvent.inLogs(logs, 'Closed');
+      expectEvent.inLogs(logs, 'RefundsClosed');
     });
 
     context('closed state', function () {