This commit is contained in:
Sergio Chouhy 2026-01-27 16:06:51 -03:00
parent bc2350b349
commit 37c85de38d
3 changed files with 3 additions and 3 deletions

View File

@ -69,7 +69,7 @@ impl NullifierSet {
} }
fn extend(&mut self, new_nullifiers: Vec<Nullifier>) { fn extend(&mut self, new_nullifiers: Vec<Nullifier>) {
self.0.extend(new_nullifiers.into_iter()); self.0.extend(new_nullifiers);
} }
fn contains(&self, nullifier: &Nullifier) -> bool { fn contains(&self, nullifier: &Nullifier) -> bool {

View File

@ -2,7 +2,7 @@ use std::{fs, path::Path};
use anyhow::{Context, Result, anyhow}; use anyhow::{Context, Result, anyhow};
use bedrock_client::BedrockClient; use bedrock_client::BedrockClient;
use common::block::{BedrockStatus, Block, HashableBlockData}; use common::block::Block;
use logos_blockchain_core::mantle::{ use logos_blockchain_core::mantle::{
MantleTx, Op, OpProof, SignedMantleTx, Transaction, TxHash, ledger, MantleTx, Op, OpProof, SignedMantleTx, Transaction, TxHash, ledger,
ops::channel::{ChannelId, MsgId, inscribe::InscriptionOp}, ops::channel::{ChannelId, MsgId, inscribe::InscriptionOp},

View File

@ -5,7 +5,7 @@ use anyhow::Result;
use common::PINATA_BASE58; use common::PINATA_BASE58;
use common::{ use common::{
HashType, HashType,
block::{BedrockStatus, Block, BlockHash, HashableBlockData}, block::{BedrockStatus, Block, HashableBlockData},
transaction::{EncodedTransaction, NSSATransaction}, transaction::{EncodedTransaction, NSSATransaction},
}; };
use config::SequencerConfig; use config::SequencerConfig;