1
0
mirror of https://github.com/bitcoinbook/bitcoinbook synced 2024-11-26 09:58:22 +00:00

Merge pull request #232 from yurigeorgiev4/patch-2

Fix BTC to Satoshi calc second try
This commit is contained in:
Will Binns 2017-02-05 11:02:31 -06:00 committed by GitHub
commit ff70a0dfb1

View File

@ -156,7 +156,7 @@ See if you can manually decode Alice's transaction from the serialized hexadecim
Here are some hints: Here are some hints:
* There are two outputs in the highlighted section, each serialized as shown in the table <<tx_out_structure>> * There are two outputs in the highlighted section, each serialized as shown in the table <<tx_out_structure>>
* The value of 0.15 bitcoin is 15,000,000 satoshis. That's +16 e3 60+ in hexadecimal. * The value of 0.015 bitcoin is 1,500,000 satoshis. That's +16 e3 60+ in hexadecimal.
* In the serialized transaction, the value +16 e3 60+ is encoded in little-endian (least-significant-byte-first) byte order, so it looks like +60 e3 16+ * In the serialized transaction, the value +16 e3 60+ is encoded in little-endian (least-significant-byte-first) byte order, so it looks like +60 e3 16+
* The +scriptPubKey+ length is 25 bytes, which is +19+ in hexadecimal * The +scriptPubKey+ length is 25 bytes, which is +19+ in hexadecimal