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

Commit 7af6cdf

Browse files
committed
mirr fix
1 parent 1932e4a commit 7af6cdf

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

utils/binary-merkle-tree/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,7 @@ sp-runtime = { version = "7.0.0", path = "../../primitives/runtime" }
2222
[features]
2323
debug = ["array-bytes", "log"]
2424
default = ["debug", "std"]
25-
std = []
25+
std = [
26+
"log/std",
27+
"hash-db/std"
28+
]

utils/binary-merkle-tree/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ fn merkelize_row<H, V, I>(
294294
) -> Result<H::Out, Vec<H::Out>>
295295
where
296296
H: Hasher,
297-
H::Out: AsRef<[u8]> + PartialOrd + PartialOrd,
297+
H::Out: AsRef<[u8]> + PartialOrd,
298298
V: Visitor<H::Out>,
299299
I: Iterator<Item = H::Out>,
300300
{

0 commit comments

Comments
 (0)