From 620272b10d5a710558a5c5185241c7fa0f515141 Mon Sep 17 00:00:00 2001 From: Filippo Costa Date: Mon, 8 Jan 2024 12:49:43 +0100 Subject: [PATCH] Fix lint Signed-off-by: Filippo Costa --- full-node/sov-sequencer/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/full-node/sov-sequencer/src/lib.rs b/full-node/sov-sequencer/src/lib.rs index 1e2407ddb..bf8878d3f 100644 --- a/full-node/sov-sequencer/src/lib.rs +++ b/full-node/sov-sequencer/src/lib.rs @@ -120,7 +120,7 @@ where } async fn tx_status(&self, tx_hash: &TxHash) -> Option> { - 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)