Skip to content

Commit ffa5238

Browse files
Merge branch 'develop' into merge_v1.0.0
2 parents 9df5c00 + 246d7d0 commit ffa5238

File tree

5 files changed

+10
-2
lines changed

5 files changed

+10
-2
lines changed

bin/reth/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ bsc = [
169169
"dep:reth-node-bsc",
170170
"reth-node-core/bsc",
171171
"reth-stages/bsc",
172-
"reth-node-builder/bsc"
172+
"reth-node-builder/bsc",
173173
]
174174

175175
# no-op feature flag for switching between the `optimism` and default functionality in CI matrices

crates/bsc/consensus/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,7 @@ reth-provider = { workspace = true, features = ["test-utils"] }
5959
rand = "0.8.5"
6060

6161
[features]
62-
bsc = ["reth-primitives/bsc"]
62+
bsc = [
63+
"reth-primitives/bsc",
64+
"reth-consensus-common/bsc"
65+
]

crates/bsc/node/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,5 @@ bsc = [
4949
"reth-evm-bsc/bsc",
5050
"reth-primitives/bsc",
5151
"reth-config/bsc",
52+
"reth-bsc-consensus/bsc",
5253
]

crates/consensus/common/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,6 @@ reth-consensus.workspace = true
2020
reth-storage-api.workspace = true
2121
rand.workspace = true
2222
mockall = "0.12"
23+
24+
[features]
25+
bsc = ["reth-chainspec/bsc"]

crates/primitives/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ opbnb = [
118118
"revm/opbnb",
119119
]
120120
bsc = [
121+
"reth-primitives-traits/bsc",
121122
"reth-chainspec/bsc",
122123
"reth-ethereum-forks/bsc",
123124
"revm/bsc",

0 commit comments

Comments
 (0)