Skip to content

Commit

Permalink
fix(precompile): inherit Prague precompiles from Cancun (bluealloy#1392)
Browse files Browse the repository at this point in the history
  • Loading branch information
shekhirin committed May 10, 2024
1 parent 1914696 commit a4b466a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/precompile/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ impl Precompiles {
pub fn prague() -> &'static Self {
static INSTANCE: OnceBox<Precompiles> = OnceBox::new();
INSTANCE.get_or_init(|| {
let precompiles = Self::berlin().clone();
let precompiles = Self::cancun().clone();

// Don't include BLS12-381 precompiles in no_std builds.
#[cfg(feature = "blst")]
Expand Down

0 comments on commit a4b466a

Please sign in to comment.