From 93271080a2405f4c7b156f04ed9683d69738250d Mon Sep 17 00:00:00 2001 From: Ian Slane Date: Sun, 21 Apr 2024 23:11:34 -0600 Subject: [PATCH] changed wtxid serialization --- mine-your-first-block/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mine-your-first-block/src/main.rs b/mine-your-first-block/src/main.rs index 5857fd7..ad8b8d2 100644 --- a/mine-your-first-block/src/main.rs +++ b/mine-your-first-block/src/main.rs @@ -146,7 +146,7 @@ fn create_coinbase_tx(total_tx_fee: u64, mut witness_root_vec: Vec) -> T let witness_root_hash = get_merkle_root(witness_root_vec); let mut witness_root_hash_bytes = hex::decode(witness_root_hash).unwrap(); - //witness_root_hash_bytes.reverse(); // Reverse to match endianness maybe dont need this?? + witness_root_hash_bytes.reverse(); // Reverse to match endianness maybe dont need this?? let reserved_value = vec![0; 32]; // 32 bytes of zeros let mut commitment_payload = Vec::new();