Skip to content

Commit 220c772

Browse files
committed
fix: lints and format
Signed-off-by: Gregory Edison <[email protected]>
1 parent f3f7027 commit 220c772

File tree

5 files changed

+92
-87
lines changed

5 files changed

+92
-87
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ revm-inspector = { git = "https://github.com/scroll-tech/revm", default-features
496496
revm-context = { git = "https://github.com/scroll-tech/revm", default-features = false, branch = "feat/v87" }
497497
revm-context-interface = { git = "https://github.com/scroll-tech/revm", default-features = false, branch = "feat/v87" }
498498
revm-database-interface = { git = "https://github.com/scroll-tech/revm", default-features = false, branch = "feat/v87" }
499-
op-revm = { git = "https://github.com/scroll-tech/revm", default-features = false , branch = "feat/v87"}
499+
op-revm = { git = "https://github.com/scroll-tech/revm", default-features = false, branch = "feat/v87" }
500500
revm-scroll = { git = "https://github.com/scroll-tech/scroll-revm", default-features = false, branch = "feat/v87" }
501501
revm-inspectors = "0.29.0"
502502

crates/net/network/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,7 @@ impl<N: NetworkPrimitives> NetworkConfigBuilder<N> {
635635
nat,
636636
handshake,
637637
required_block_hashes,
638-
header_transform
638+
header_transform,
639639
} = self;
640640

641641
let head = head.unwrap_or_else(|| Head {

crates/node/builder/src/launch/engine.rs

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,13 @@ impl EngineNodeLauncher {
7777
+ EngineValidatorAddOn<NodeAdapter<T, CB::Components>>,
7878
<AO as reth_node_api::NodeAddOns<
7979
NodeAdapter<T, <CB as NodeComponentsBuilder<T>>::Components>,
80-
>>::Handle: RpcHandleProvider<
81-
NodeAdapter<T, <CB as NodeComponentsBuilder<T>>::Components>,
82-
<AO as RethRpcAddOns<NodeAdapter<T, <CB as NodeComponentsBuilder<T>>::Components>>>::EthApi,
83-
>,
80+
>>::Handle:
81+
RpcHandleProvider<
82+
NodeAdapter<T, <CB as NodeComponentsBuilder<T>>::Components>,
83+
<AO as RethRpcAddOns<
84+
NodeAdapter<T, <CB as NodeComponentsBuilder<T>>::Components>,
85+
>>::EthApi,
86+
>,
8487
{
8588
let Self { ctx, engine_tree_config } = self;
8689
let NodeBuilderWithComponents {

0 commit comments

Comments
 (0)