From 5d5f9b8c837a71521014bff455f7ad48184d8a62 Mon Sep 17 00:00:00 2001 From: Toufeeq Pasha Date: Thu, 11 Jan 2024 18:45:45 +0530 Subject: [PATCH] Made DataProofV2 available on std --- core/Cargo.toml | 2 +- core/src/lib.rs | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index 07079dd..0788867 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -46,7 +46,7 @@ std = [ "binary-merkle-tree?/std", "codec/std", "derive_more/display", - "frame-support?/std", + "frame-support/std", "hash256-std-hasher/std", "hex", "log/std", diff --git a/core/src/lib.rs b/core/src/lib.rs index 476b820..83b1fb7 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -40,9 +40,7 @@ pub use keccak256::Keccak256; pub mod data_proof; pub use data_proof::DataProof; -#[cfg(feature = "runtime")] pub mod data_proof_v2; -#[cfg(feature = "runtime")] pub use data_proof_v2::DataProofV2; pub mod data_lookup;