Skip to content

Commit

Permalink
chore: fix code conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
j75689 committed Jun 3, 2024
1 parent 5e6116e commit 66b51f9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 11 deletions.
8 changes: 0 additions & 8 deletions crates/precompile/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -110,14 +110,6 @@ negate-opbnb-default-handler = [
]
# Enables the BLS12-381 precompiles.
blst = ["dep:blst"]
opbnb = ["revm-primitives/opbnb"]
opbnb-default-handler = [
"opbnb",
"revm-primitives/opbnb-default-handler",
]
negate-opbnb-default-handler = [
"revm-primitives/negate-opbnb-default-handler",
]

[[bench]]
name = "bench"
Expand Down
3 changes: 2 additions & 1 deletion crates/precompile/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@
extern crate alloc as std;

pub mod blake2;
mod bls;
#[cfg(feature = "blst")]
pub mod bls12_381;
#[cfg(feature = "opbnb")]
pub mod bls;
#[cfg(feature = "opbnb")]
pub mod cometbft;
pub mod bn128;
pub mod hash;
Expand Down
2 changes: 0 additions & 2 deletions crates/primitives/src/specification.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,6 @@ spec!(REGOLITH, RegolithSpec);
spec!(CANYON, CanyonSpec);
#[cfg(feature = "optimism")]
spec!(ECOTONE, EcotoneSpec);
#[cfg(feature = "opbnb")]
spec!(FERMAT, FermatSpec);
#[cfg(feature = "optimism")]
spec!(FJORD, FjordSpec);
#[cfg(feature = "opbnb")]
Expand Down

0 comments on commit 66b51f9

Please sign in to comment.