Skip to content

Commit e46fd40

Browse files
prestwichclaude
andcommitted
fix: remove with_chain_name calls and format imports after rebase
The updated base branch removed chain_name from the SignetNodeBuilder API. Remove the now-invalid calls in node-tests and apply nightly fmt. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent b409876 commit e46fd40

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

crates/host-reth/src/alias.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
use alloy::{consensus::constants::KECCAK_EMPTY, primitives::Address};
2-
use core::{fmt, future::{self, Future}};
2+
use core::{
3+
fmt,
4+
future::{self, Future},
5+
};
36
use eyre::OptionExt;
47
use reth::providers::{StateProviderBox, StateProviderFactory};
58
use signet_block_processor::{AliasOracle, AliasOracleFactory};

crates/node-tests/src/context.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ impl SignetTestContext {
176176
.with_notifier(decomposed.notifier)
177177
.with_storage(Arc::clone(&storage))
178178
.with_alias_oracle(Arc::clone(&alias_oracle))
179-
.with_chain_name(decomposed.chain_name)
180179
.with_blob_cacher(blob_cacher)
181180
.with_serve_config(serve_config)
182181
.with_rpc_config(decomposed.rpc_config)

crates/node-tests/tests/db.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ async fn test_genesis() {
4949
.with_notifier(decomposed.notifier)
5050
.with_storage(Arc::clone(&storage))
5151
.with_alias_oracle(Arc::clone(&alias_oracle))
52-
.with_chain_name(decomposed.chain_name)
5352
.with_blob_cacher(blob_cacher)
5453
.with_serve_config(decomposed.serve_config)
5554
.with_rpc_config(decomposed.rpc_config)

0 commit comments

Comments
 (0)