Skip to content

Commit

Permalink
Make txid bytes public
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeykoren committed Jan 10, 2024
1 parent e8a94f1 commit 1caf6ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zcash_primitives/src/transaction/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const ZFUTURE_VERSION_GROUP_ID: u32 = 0xFFFFFFFF;
const ZFUTURE_TX_VERSION: u32 = 0x0000FFFF;

#[derive(Clone, Copy, PartialOrd, Ord, PartialEq, Eq, Hash)]
pub struct TxId([u8; 32]);
pub struct TxId(pub [u8; 32]);

memuse::impl_no_dynamic_usage!(TxId);

Expand Down

0 comments on commit 1caf6ab

Please sign in to comment.