fix: Resolve a type ambiguity in a proptest

For some reason, implementing
`PartialOrd<BlockHeaderHash> for ExpandedDifficulty` (or its converse)
makes this unrelated code ambiguous.
This commit is contained in:
teor 2020-08-03 17:16:29 +10:00
parent c8b502a5da
commit efb9313460
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ proptest! {
#[test]
fn blockheaderhash_roundtrip(hash in any::<BlockHeaderHash>()) {
let bytes = hash.zcash_serialize_to_vec()?;
let other_hash = bytes.zcash_deserialize_into()?;
let other_hash: BlockHeaderHash = bytes.zcash_deserialize_into()?;
prop_assert_eq![hash, other_hash];
}