Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions bin/consensus/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
//!
//! [reth-build-script]: https://github.com/paradigmxyz/reth/blob/805fb1012cd1601c3b4fe9e8ca2d97c96f61355b/crates/node/core/build.rs

#![allow(missing_docs)]

use std::{env, error::Error};

use vergen::{BuildBuilder, CargoBuilder, Emitter};
Expand Down
1 change: 1 addition & 0 deletions crates/client/flashblocks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ test-utils = [
"reth-primitives/test-utils",
"reth-provider/test-utils",
"reth-revm/test-utils",
"base-client-node?/test-utils"
]

[dependencies]
Expand Down
1 change: 0 additions & 1 deletion crates/client/txpool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ workspace = true
base-client-node.workspace = true

# reth
reth-tracing.workspace = true
reth-transaction-pool.workspace = true
reth-node-api.workspace = true
reth-primitives-traits.workspace = true
Expand Down
1 change: 0 additions & 1 deletion crates/client/txpool/src/extension.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
use base_client_node::{BaseBuilder, BaseNodeExtension, FromExtensionConfig};
use reth_provider::CanonStateSubscriptions;
use tokio_stream::wrappers::BroadcastStream;
use tracing::info;

use crate::{TransactionStatusApiImpl, TransactionStatusApiServer, tracex_subscription};

Expand Down
3 changes: 3 additions & 0 deletions crates/client/txpool/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
#![cfg_attr(not(test), warn(unused_crate_dependencies))]

#[macro_use]
extern crate tracing;

mod events;
pub use events::{EventLog, Pool, TxEvent};

Expand Down
1 change: 0 additions & 1 deletion crates/client/txpool/src/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ use jsonrpsee::{
};
use reth_transaction_pool::TransactionPool;
use serde::{Deserialize, Serialize};
use tracing::{info, warn};

/// The status of a transaction.
#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
Expand Down
1 change: 0 additions & 1 deletion crates/client/txpool/src/subscription.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
use futures::StreamExt;
use reth_node_api::NodePrimitives;
use reth_provider::CanonStateNotification;
use reth_tracing::tracing::debug;
use reth_transaction_pool::TransactionPool;
use tokio_stream::wrappers::BroadcastStream;

Expand Down
1 change: 0 additions & 1 deletion crates/client/txpool/src/tracker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ use lru::LruCache;
use reth_node_api::{BlockBody, NodePrimitives};
use reth_primitives_traits::transaction::TxHashRef;
use reth_provider::{CanonStateNotification, Chain};
use reth_tracing::tracing::{debug, info};
use reth_transaction_pool::{FullTransactionEvent, PoolTransaction};

use crate::{EventLog, Metrics, Pool, TxEvent};
Expand Down
Loading