Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: Filippo Costa <[email protected]>
  • Loading branch information
neysofu committed Jan 8, 2024
1 parent 16b36d1 commit 620272b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion full-node/sov-sequencer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ where
}

async fn tx_status(&self, tx_hash: &TxHash) -> Option<TxStatus<Da::TransactionId>> {
let is_in_mempool = self.batch_builder.lock().await.contains(&tx_hash);
let is_in_mempool = self.batch_builder.lock().await.contains(tx_hash);

if is_in_mempool {
Some(TxStatus::Submitted)
Expand Down

0 comments on commit 620272b

Please sign in to comment.