Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
slanesuke committed Apr 22, 2024
1 parent a884bb1 commit 0c862e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mine-your-first-block/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1371,8 +1371,8 @@ fn main() {
let coinbase_txid = double_sha256(cd_tx_bytes.clone());
let mut coinbase_txid_le = coinbase_txid.to_vec();
coinbase_txid_le.reverse();
let coinbase_txid = hex::encode(coinbase_txid_le);
println!("Coinbase txid: {}", coinbase_txid);
//let coinbase_txid = hex::encode(coinbase_txid_le);
//println!("Coinbase txid: {}", coinbase_txid);
let coinbase_txid = "13e1519bbd47573a90363619048217150613c1ced8e0637cc80b85c065f20919".to_string();

// Insert the coinbase transaction at the beginning of block_txs
Expand Down

0 comments on commit 0c862e0

Please sign in to comment.