Skip to content

Commit

Permalink
fix extra arg
Browse files Browse the repository at this point in the history
  • Loading branch information
exeokan committed Jan 31, 2025
1 parent ced8abf commit 440df85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/citrea/tests/bitcoin_e2e/tx_chain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ impl TestSequencerTransactionChaining {
assert_eq!(mempool.len(), 0);

// Assert that sequencer has properly rebuilt the TX chain on restart
sequencer.restart(None).await?;
sequencer.restart(None, None).await?;

let last_monitored_tx = sequencer
.client
Expand Down Expand Up @@ -374,7 +374,7 @@ impl TestSequencerTransactionChaining {
assert_eq!(mempool.len(), 3);

// Assert that sequencer has properly rebuilt the TX chain on restart
sequencer.restart(None).await?;
sequencer.restart(None, None).await?;

let monitored_txs = sequencer
.client
Expand Down

0 comments on commit 440df85

Please sign in to comment.