Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
mirr fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DaviRain-Su committed Jan 28, 2023
1 parent 1932e4a commit 7af6cdf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion utils/binary-merkle-tree/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,7 @@ sp-runtime = { version = "7.0.0", path = "../../primitives/runtime" }
[features]
debug = ["array-bytes", "log"]
default = ["debug", "std"]
std = []
std = [
"log/std",
"hash-db/std"
]
2 changes: 1 addition & 1 deletion utils/binary-merkle-tree/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ fn merkelize_row<H, V, I>(
) -> Result<H::Out, Vec<H::Out>>
where
H: Hasher,
H::Out: AsRef<[u8]> + PartialOrd + PartialOrd,
H::Out: AsRef<[u8]> + PartialOrd,
V: Visitor<H::Out>,
I: Iterator<Item = H::Out>,
{
Expand Down

0 comments on commit 7af6cdf

Please sign in to comment.