Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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/builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ reth-payload-builder.workspace = true
reth-primitives-traits.workspace = true
reth-provider.workspace = true
reth-prune.workspace = true
reth-rpc.workspace = true
reth-rpc = { workspace = true, features = ["js-tracer"] }
reth-rpc-api.workspace = true
reth-rpc-builder.workspace = true
reth-rpc-engine-api.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions crates/scroll/bin/scroll-reth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ clap = { workspace = true, features = ["derive", "env"] }
tracing.workspace = true

[features]
default = []
dev = ["reth-scroll-cli/dev"]
js-tracer = ["reth-scroll-node/js-tracer"]

[[bin]]
name = "scroll-reth"
Expand Down
5 changes: 2 additions & 3 deletions crates/scroll/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,7 @@ alloy-consensus.workspace = true

[features]
default = ["reth-codec", "scroll-alloy-traits"]
reth-codec = [
"reth-scroll-primitives/reth-codec",
]
reth-codec = ["reth-scroll-primitives/reth-codec"]
test-utils = [
"dep:alloy-genesis",
"dep:reth-e2e-test-utils",
Expand Down Expand Up @@ -116,3 +114,4 @@ scroll-alloy-traits = [
"reth-scroll-node/scroll-alloy-traits",
"reth-engine-local/scroll-alloy-traits",
]
js-tracer = ["reth-scroll-rpc/js-tracer"]
3 changes: 3 additions & 0 deletions crates/scroll/rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,6 @@ jsonrpsee-types.workspace = true
# misc
eyre.workspace = true
thiserror.workspace = true

[features]
js-tracer = ["reth-rpc/js-tracer"]
Loading