Skip to content

Commit

Permalink
clarify need for bitcoind in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
maraoz committed Feb 27, 2014
1 parent 3c34c03 commit e25e54c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down Expand Up @@ -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();
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit e25e54c

Please sign in to comment.