mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-03-26 12:13:08 +00:00
clippy
This commit is contained in:
parent
bc2350b349
commit
37c85de38d
@ -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 {
|
||||||
|
|||||||
@ -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},
|
||||||
|
|||||||
@ -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;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user