Enhancement of the Partial Merkle Tree (#163)

feat: implement additional functionality for the PartialMerkleTree
This commit is contained in:
Andrey Khmuro
2023-07-06 00:19:03 +03:00
committed by GitHub
parent 813fe24b88
commit 08aec4443c
5 changed files with 342 additions and 35 deletions

View File

@@ -2,10 +2,10 @@ use super::{utils::string::String, Word};
use core::fmt::{self, Write};
#[cfg(not(feature = "std"))]
pub use alloc::format;
pub use alloc::{format, vec};
#[cfg(feature = "std")]
pub use std::format;
pub use std::{format, vec};
mod kv_map;