From 52968e0666e4dc0ad79d83575cc2b8573cb63976 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Sun, 3 Apr 2016 01:37:49 -0700 Subject: [PATCH] readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e0b4716d..703521aa 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ node.open(function(err) { // Wait for balance and send it to a new address. wallet.once('balance', function(balance) { var newReceiving = wallet.createAddress(); - console.log('Created new receiving address.'); + console.log('Created new receiving address: %s', newReceiving); // Create a transaction, fill // it with coins, and sign it. wallet.createTX({ @@ -103,11 +103,11 @@ node.open(function(err) { }); node.chain.on('block', function(block) { - utils.print(block); + console.log(block); }); node.mempool.on('tx', function(tx) { - utils.print(block); + console.log(block); }); node.chain.on('full', function() {