Docs: Update docs for bitcoind bindings with txleave event

This commit is contained in:
Braydon Fuller 2015-11-02 17:31:41 -05:00
parent a1bae366b3
commit 826114b575
1 changed files with 6 additions and 2 deletions

View File

@ -101,7 +101,11 @@ node.services.bitcoind.on('tip', function(blockHash) {
}); });
node.services.bitcoind.on('tx', function(txInfo) { node.services.bitcoind.on('tx', function(txInfo) {
// a new transaction has been broadcast in the network // a new transaction has entered the mempool
});
node.services.bitcoind.on('txleave', function(txInfo) {
// a new transaction has left the mempool
}); });
``` ```
@ -110,7 +114,7 @@ The `txInfo` object will have the format:
```js ```js
{ {
buffer: <Buffer...>, buffer: <Buffer...>,
mempool: true, mempool: true, // will currently always be true
hash: '7426c707d0e9705bdd8158e60983e37d0f5d63529086d6672b07d9238d5aa623' hash: '7426c707d0e9705bdd8158e60983e37d0f5d63529086d6672b07d9238d5aa623'
} }
``` ```