diff --git a/contracts/coordinator/test/coordinator.ts b/contracts/coordinator/test/coordinator.ts index 4c8a2b9c16..4ed44c9c6f 100644 --- a/contracts/coordinator/test/coordinator.ts +++ b/contracts/coordinator/test/coordinator.ts @@ -523,7 +523,7 @@ describe('Coordinator tests', () => { expect(cancelLogs.length).to.eq(1); const cancelLogArgs = (cancelLogs[0] as LogWithDecodedArgs).args; expect(cancelLogArgs.makerAddress).to.eq(makerAddress); - expect(cancelLogArgs.senderAddress).to.eq(coordinatorContract.address); + expect(cancelLogArgs.orderSenderAddress).to.eq(coordinatorContract.address); expect(cancelLogArgs.orderEpoch).to.bignumber.eq(targetEpoch.plus(1)); }); }); diff --git a/contracts/exchange/test/transactions.ts b/contracts/exchange/test/transactions.ts index d6b074df6f..a398f5b118 100644 --- a/contracts/exchange/test/transactions.ts +++ b/contracts/exchange/test/transactions.ts @@ -480,7 +480,7 @@ describe('Exchange transactions', () => { expect(cancelLogs.length).to.eq(1); const cancelLogArgs = (cancelLogs[0] as LogWithDecodedArgs).args; expect(cancelLogArgs.makerAddress).to.eq(makerAddress); - expect(cancelLogArgs.senderAddress).to.eq(senderAddress); + expect(cancelLogArgs.orderSenderAddress).to.eq(senderAddress); expect(cancelLogArgs.orderEpoch).to.bignumber.eq(targetEpoch.plus(1)); }); it('should be successful if called by maker without a signature', async () => { @@ -494,7 +494,7 @@ describe('Exchange transactions', () => { expect(cancelLogs.length).to.eq(1); const cancelLogArgs = (cancelLogs[0] as LogWithDecodedArgs).args; expect(cancelLogArgs.makerAddress).to.eq(makerAddress); - expect(cancelLogArgs.senderAddress).to.eq(constants.NULL_ADDRESS); + expect(cancelLogArgs.orderSenderAddress).to.eq(constants.NULL_ADDRESS); expect(cancelLogArgs.orderEpoch).to.bignumber.eq(targetEpoch.plus(1)); }); });