From 04382e0dbdd167d5373e4e820473852aa0182293 Mon Sep 17 00:00:00 2001 From: yurigeorgiev4 Date: Wed, 25 Jan 2017 20:12:02 +0200 Subject: [PATCH] Fix BTC to Satoshi calc second try In my initial read I fixed the wrong part of the calc sorry about that, it should be 0.015 instead of 0.15 to be inline with the rest of the example so the change is - 0.015 bitcoin is 1,5000,000 satoshis --- ch06.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch06.asciidoc b/ch06.asciidoc index 6ca5558c..8be0084e 100644 --- a/ch06.asciidoc +++ b/ch06.asciidoc @@ -156,7 +156,7 @@ See if you can manually decode Alice's transaction from the serialized hexadecim Here are some hints: * There are two outputs in the highlighted section, each serialized as shown in the table <> -* 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,5000,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+ * The +scriptPubKey+ length is 25 bytes, which is +19+ in hexadecimal