Reorder Cancel event args for consistency
This commit is contained in:
committed by
Alex Towle
parent
5ee7c2f9dc
commit
5fe231b689
@@ -315,10 +315,10 @@ contract MixinExchangeCore is
|
|||||||
emit Cancel(
|
emit Cancel(
|
||||||
order.makerAddress,
|
order.makerAddress,
|
||||||
order.feeRecipientAddress,
|
order.feeRecipientAddress,
|
||||||
msg.sender,
|
|
||||||
orderHash,
|
|
||||||
order.makerAssetData,
|
order.makerAssetData,
|
||||||
order.takerAssetData
|
order.takerAssetData,
|
||||||
|
msg.sender,
|
||||||
|
orderHash
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -48,10 +48,10 @@ contract IExchangeCore {
|
|||||||
event Cancel(
|
event Cancel(
|
||||||
address indexed makerAddress, // Address that created the order.
|
address indexed makerAddress, // Address that created the order.
|
||||||
address indexed feeRecipientAddress, // Address that would have recieved fees if order was filled.
|
address indexed feeRecipientAddress, // Address that would have recieved fees if order was filled.
|
||||||
address senderAddress, // Address that called the Exchange contract (msg.sender).
|
|
||||||
bytes32 indexed orderHash, // EIP712 hash of order (see LibOrder.getTypedDataHash).
|
|
||||||
bytes makerAssetData, // Encoded data specific to makerAsset.
|
bytes makerAssetData, // Encoded data specific to makerAsset.
|
||||||
bytes takerAssetData // Encoded data specific to takerAsset.
|
bytes takerAssetData, // Encoded data specific to takerAsset.
|
||||||
|
address senderAddress, // Address that called the Exchange contract (msg.sender).
|
||||||
|
bytes32 indexed orderHash // EIP712 hash of order (see LibOrder.getTypedDataHash).
|
||||||
);
|
);
|
||||||
|
|
||||||
// CancelUpTo event is emitted whenever `cancelOrdersUpTo` is executed succesfully.
|
// CancelUpTo event is emitted whenever `cancelOrdersUpTo` is executed succesfully.
|
||||||
|
Reference in New Issue
Block a user