Add a simple test to check that our mainnet blockheader test vector deserializes without error
This commit is contained in:
parent
9257d838bd
commit
7ebb5ccd41
|
|
@ -97,6 +97,14 @@ fn blockheaderhash_from_blockheader() {
|
||||||
assert_eq!(blockheader, other_header);
|
assert_eq!(blockheader, other_header);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn deserialize_blockheader() {
|
||||||
|
// This deserializes without error but the result looks wrong.
|
||||||
|
// https://explorer.zcha.in/blocks/415000
|
||||||
|
let header = BlockHeader::zcash_deserialize(&test_vectors::HEADER_MAINNET_415000[..])
|
||||||
|
.expect("blockheader test vector should deserialize");
|
||||||
|
}
|
||||||
|
|
||||||
proptest! {
|
proptest! {
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue