From 37c85de38dd1c3c18dccf1d9951482630bbefc31 Mon Sep 17 00:00:00 2001 From: Sergio Chouhy Date: Tue, 27 Jan 2026 16:06:51 -0300 Subject: [PATCH] clippy --- nssa/src/state.rs | 2 +- sequencer_core/src/block_settlement_client.rs | 2 +- sequencer_core/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nssa/src/state.rs b/nssa/src/state.rs index 9888f583..4e5c3f2f 100644 --- a/nssa/src/state.rs +++ b/nssa/src/state.rs @@ -69,7 +69,7 @@ impl NullifierSet { } fn extend(&mut self, new_nullifiers: Vec) { - self.0.extend(new_nullifiers.into_iter()); + self.0.extend(new_nullifiers); } fn contains(&self, nullifier: &Nullifier) -> bool { diff --git a/sequencer_core/src/block_settlement_client.rs b/sequencer_core/src/block_settlement_client.rs index 150acf39..5b323ca5 100644 --- a/sequencer_core/src/block_settlement_client.rs +++ b/sequencer_core/src/block_settlement_client.rs @@ -2,7 +2,7 @@ use std::{fs, path::Path}; use anyhow::{Context, Result, anyhow}; use bedrock_client::BedrockClient; -use common::block::{BedrockStatus, Block, HashableBlockData}; +use common::block::Block; use logos_blockchain_core::mantle::{ MantleTx, Op, OpProof, SignedMantleTx, Transaction, TxHash, ledger, ops::channel::{ChannelId, MsgId, inscribe::InscriptionOp}, diff --git a/sequencer_core/src/lib.rs b/sequencer_core/src/lib.rs index 5288f80a..02a05231 100644 --- a/sequencer_core/src/lib.rs +++ b/sequencer_core/src/lib.rs @@ -5,7 +5,7 @@ use anyhow::Result; use common::PINATA_BASE58; use common::{ HashType, - block::{BedrockStatus, Block, BlockHash, HashableBlockData}, + block::{BedrockStatus, Block, HashableBlockData}, transaction::{EncodedTransaction, NSSATransaction}, }; use config::SequencerConfig;