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
2 changes: 1 addition & 1 deletion crates/node-tests/src/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ impl SignetTestContext {
// after RPC booted, we can create the alloy provider
let alloy_provider = ProviderBuilder::new_with_network()
.disable_recommended_fillers()
.filler(BlobGasFiller)
.filler(BlobGasFiller::default())
.with_gas_estimation()
.with_nonce_management(SimpleNonceManager::default())
.with_chain_id(constants.ru_chain_id())
Expand Down
2 changes: 1 addition & 1 deletion crates/node/src/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use reth_node_api::{FullNodeComponents, NodeTypes};
use signet_block_processor::AliasOracleFactory;
use signet_node_types::NodeTypesDbTrait;
use signet_rpc::{RpcCtx, RpcServerGuard, ServeConfig};
use signet_tx_cache::TxCache;
use signet_tx_cache::client::TxCache;
use tracing::info;

impl<Host, Db, AliasOracle> SignetNode<Host, Db, AliasOracle>
Expand Down
2 changes: 1 addition & 1 deletion crates/rpc/src/ctx/full.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use reth_node_api::FullNodeComponents;
use signet_db::RuRevmState;
use signet_evm::EvmNeedsTx;
use signet_node_types::Pnt;
use signet_tx_cache::TxCache;
use signet_tx_cache::client::TxCache;
use signet_types::constants::SignetSystemConstants;
use std::sync::Arc;
use tokio::sync::{AcquireError, OwnedSemaphorePermit, Semaphore};
Expand Down
2 changes: 1 addition & 1 deletion crates/rpc/src/ctx/signet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ use reth_node_api::BlockBody;
use reth_rpc_eth_api::{RpcBlock, RpcConvert, RpcReceipt, RpcTransaction};
use signet_db::RuRevmState;
use signet_node_types::Pnt;
use signet_tx_cache::TxCache;
use signet_tx_cache::client::TxCache;
use signet_types::{MagicSig, constants::SignetSystemConstants};
use std::{marker::PhantomData, sync::Arc};
use tracing::{Level, instrument, trace};
Expand Down
Loading