Commit d3d6790b authored by Karl Floersch's avatar Karl Floersch

Fix compilation errors whoops

parent c80aa1be
...@@ -175,7 +175,7 @@ contract OVM_CanonicalTransactionChain is iOVM_CanonicalTransactionChain, OVM_Ba ...@@ -175,7 +175,7 @@ contract OVM_CanonicalTransactionChain is iOVM_CanonicalTransactionChain, OVM_Ba
(, uint32 nextQueueIndex) = _getLatestBatchContext(); (, uint32 nextQueueIndex) = _getLatestBatchContext();
// TODO: Evaluate if we need timestamp // TODO: Evaluate if we need timestamp
emit TransactionEnqueued( emit TransactionEnqueued(
_l1TxOrigin, msg.sender,
_target, _target,
_gasLimit, _gasLimit,
_data, _data,
......
...@@ -20,11 +20,10 @@ interface iOVM_CanonicalTransactionChain is iOVM_BaseChain { ...@@ -20,11 +20,10 @@ interface iOVM_CanonicalTransactionChain is iOVM_BaseChain {
event TransactionEnqueued( event TransactionEnqueued(
address _l1TxOrigin, address _l1TxOrigin,
address _target, address _target,
uint8 _gasLimit, uint256 _gasLimit,
uint8 _gasLimit,
bytes _data, bytes _data,
uint _queueIndex, uint256 _queueIndex,
uint _timestamp uint256 _timestamp
); );
event QueueBatchAppended( event QueueBatchAppended(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment