Reorder Cancel event args for consistency
This commit is contained in:
parent
5ee7c2f9dc
commit
5fe231b689
@ -315,10 +315,10 @@ contract MixinExchangeCore is
|
||||
emit Cancel(
|
||||
order.makerAddress,
|
||||
order.feeRecipientAddress,
|
||||
msg.sender,
|
||||
orderHash,
|
||||
order.makerAssetData,
|
||||
order.takerAssetData
|
||||
order.takerAssetData,
|
||||
msg.sender,
|
||||
orderHash
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -48,10 +48,10 @@ contract IExchangeCore {
|
||||
event Cancel(
|
||||
address indexed makerAddress, // Address that created the order.
|
||||
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 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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user