Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion crates/l2/contracts/src/l1/CommonBridge.sol
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ contract CommonBridge is
address public NATIVE_TOKEN_L1;

/// @dev Index pointing to the first unprocessed privileged transaction in the queue.
uint256 private pendingPrivilegedTxIndex = 0;
uint256 private pendingPrivilegedTxIndex;

modifier onlyOnChainProposer() {
require(
Expand Down Expand Up @@ -124,6 +124,7 @@ contract CommonBridge is

lastFetchedL1Block = block.number;
transactionId = 0;
pendingPrivilegedTxIndex = 0;

PRIVILEGED_TX_MAX_WAIT_BEFORE_INCLUSION = inclusionMaxWait;

Expand Down
Loading