Skip to content

Commit 348a029

Browse files
committed
fix: lints and format
Signed-off-by: Gregory Edison <gregory.edison1993@gmail.com>
1 parent f3f7027 commit 348a029

File tree

8 files changed

+93
-90
lines changed

8 files changed

+93
-90
lines changed

Cargo.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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 {

crates/scroll/alloy/consensus/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ alloy-primitives = { workspace = true, features = ["rand", "arbitrary"] }
4444
reth-codecs = { workspace = true, features = ["test-utils"] }
4545
proptest-arbitrary-interop.workspace = true
4646
proptest.workspace = true
47-
test-fuzz.workspace = true
4847

4948
[features]
5049
default = ["std"]

0 commit comments

Comments
 (0)