Skip to content

Commit

Permalink
fix: missing kzg_settings if kzg-rs feature enabled (bluealloy#1601)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtguibas authored and j75689 committed Aug 1, 2024
1 parent 19cb8a8 commit c5544b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/primitives/src/env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ impl Default for CfgEnv {
chain_id: 1,
perf_analyse_created_bytecodes: AnalysisKind::default(),
limit_contract_code_size: None,
#[cfg(feature = "c-kzg")]
#[cfg(any(feature = "c-kzg", feature = "kzg-rs"))]
kzg_settings: crate::kzg::EnvKzgSettings::Default,
#[cfg(feature = "memory_limit")]
memory_limit: (1 << 32) - 1,
Expand Down

0 comments on commit c5544b3

Please sign in to comment.