Skip to content

Commit 850ebf2

Browse files
committed
Fix compilation error in tests
1 parent bfe8f6f commit 850ebf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zebra-chain/src/transaction/arbitrary.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ pub fn transaction_to_fake_min_v5(
10231023
},
10241024
v5 @ V5 { .. } => v5.clone(),
10251025
#[cfg(feature = "tx-v6")]
1026-
V6 => panic!("V6 transactions are not supported in this test!"),
1026+
_v6 @ V6 { .. } => panic!("V6 transactions are not supported in this test!"),
10271027
}
10281028
}
10291029

0 commit comments

Comments
 (0)