Skip to content

Commit

Permalink
fix wasm build
Browse files Browse the repository at this point in the history
  • Loading branch information
clabby committed Apr 5, 2024
1 parent 5eda6ad commit 416c41d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions crates/consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ serde_json.workspace = true

[features]
default = ["std"]
std = ["alloy-eips/std", "c-kzg/std", "sha2/std"]
std = ["alloy-eips/std", "sha2/std", "c-kzg?/std"]
k256 = ["alloy-primitives/k256"]
kzg = ["std", "dep:c-kzg", "dep:thiserror", "alloy-eips/kzg"]
kzg = ["dep:c-kzg", "dep:thiserror", "alloy-eips/kzg", "std"]
arbitrary = ["std", "dep:arbitrary", "alloy-eips/arbitrary"]
serde = ["dep:serde", "alloy-primitives/serde", "dep:alloy-serde", "alloy-eips/serde"]
1 change: 0 additions & 1 deletion crates/consensus/src/receipt/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ mod tests {
use alloy_eips::eip2718::Encodable2718;
use alloy_primitives::{address, b256, bytes, hex, Bytes, LogData};
use alloy_rlp::{Decodable, Encodable};
use std::vec;

// Test vector from: https://eips.ethereum.org/EIPS/eip-2481
#[test]
Expand Down

0 comments on commit 416c41d

Please sign in to comment.