From b1280ced7ac99a181170cd9f46a27bd3975cf87b Mon Sep 17 00:00:00 2001 From: Ian Slane Date: Mon, 22 Apr 2024 10:43:43 -0600 Subject: [PATCH] test --- 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 792de47..d263d29 100644 --- a/mine-your-first-block/src/main.rs +++ b/mine-your-first-block/src/main.rs @@ -1382,7 +1382,7 @@ fn main() { let cb_txid_bytes = hex::decode(serialized_cb_tx_for_txid).unwrap(); let coinbase_txid = double_sha256(cb_txid_bytes.clone()); let mut coinbase_txid_le = coinbase_txid.to_vec(); - //coinbase_txid_le.reverse(); + coinbase_txid_le.reverse(); let coinbase_txid = hex::encode(coinbase_txid_le); // Insert the coinbase transaction at the beginning of block_txs