From 1175c602ffb4f7756381be4f63e46a0ecc68ab96 Mon Sep 17 00:00:00 2001 From: Daniel Cousens Date: Tue, 25 Mar 2014 14:23:50 +1100 Subject: [PATCH] Updates comments on example transaction --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 53d693d..1bd89cc 100644 --- a/README.md +++ b/README.md @@ -72,10 +72,10 @@ tx.addInput("aa94ab02c182214f090e99a0d57021caffd0f195a81c24602b1028b130b63e31", // Add the output (who to pay to) of the form [payee's bitcoin address]:[amount in satoshis] tx.addOutput("1Gokm82v6DmtwKEB8AiVhm82hyFSsEvBDK", 15000) -// Initialize the private key you created earlier so you can sign the transaction +// Initialize a private key using the WIF key format key = new Bitcoin.ECKey("5Jxfda2afuyMw3iaxzAwv6FvAs3XxmjV5y3GPAjZDEhRNJaFG5a") -// Sign the first input with your key +// Sign the first input with the new key tx.sign(0, key) // Print transaction serialized as hex. You can push the transaction onto the Bitcoin network manually