From e25e54ca936655ded868acf0f9a558e6e39efadd Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Thu, 27 Feb 2014 12:10:15 -0300 Subject: [PATCH] clarify need for bitcoind in examples --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 6de5440..351da25 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,7 @@ addrStrings.forEach(function(addr) { ``` ## Monitoring Blocks and Transactions +For this example you need a running bitcoind instance with RPC enabled. ```js var util = require('util'); var networks = require('bitcore/networks'); @@ -105,6 +106,7 @@ PeerManager will emit the following events: 'version', 'verack', 'addr', 'getadd ## Creating and sending a Transaction through P2P +For this example you need a running bitcoind instance with RPC enabled. ```js var networks = require('bitcore/networks'); var Peer = require('bitcore/Peer').class(); @@ -180,6 +182,7 @@ peerman.start(); ``` ## Consuming bitcoind RPC +For this example you need a running bitcoind instance with RPC enabled. ```js var util = require('util'); var RpcClient = require('bitcore/RpcClient').class();