diff --git a/docs/node.md b/docs/node.md index 330ab64b..ddff201a 100644 --- a/docs/node.md +++ b/docs/node.md @@ -32,6 +32,10 @@ var configuration = { var node = new Node(configuration); +node.start(function() { + //start the node so the node.on('ready') is actually called. +}); + node.on('ready', function() { console.log('Bitcoin Node Ready'); });