From 88872734deaba1e03ebbbc189d922bc30a6ff412 Mon Sep 17 00:00:00 2001 From: Braydon Fuller Date: Fri, 8 Apr 2016 10:44:34 -0400 Subject: [PATCH] bitcoind: add missing api methods to export --- lib/services/bitcoind.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/services/bitcoind.js b/lib/services/bitcoind.js index 8319b57d..e989a8fc 100644 --- a/lib/services/bitcoind.js +++ b/lib/services/bitcoind.js @@ -83,6 +83,10 @@ Bitcoin.prototype.getAPIMethods = function() { ['getBlock', this, this.getBlock, 1], ['getBlockHeader', this, this.getBlockHeader, 1], ['getBlockHashesByTimestamp', this, this.getBlockHashesByTimestamp, 2], + ['getBestBlockHash', this, this.getBestBlockHash, 0], + ['getInfo', this, this.getInfo, 0], + ['syncPercentage', this, this.syncPercentage, 0], + ['isSynced', this, this.isSynced, 0], ['getTransaction', this, this.getTransaction, 2], ['getTransactionWithBlockInfo', this, this.getTransactionWithBlockInfo, 2], ['sendTransaction', this, this.sendTransaction, 1],