From 46c07a98d6ec28e4b07f5919a0a1bbab8dbdaa9a Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Thu, 30 Oct 2014 16:38:58 -0700 Subject: [PATCH] fix dumpKey call. --- lib/bitcoind.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bitcoind.js b/lib/bitcoind.js index 6179d87c..d8946650 100644 --- a/lib/bitcoind.js +++ b/lib/bitcoind.js @@ -783,7 +783,7 @@ Wallet.prototype.isLocked = function() { }; Wallet.prototype.dumpKey = function(options) { - return bitcoindjs.dumpKey(options || {}); + return bitcoindjs.walletDumpKey(options || {}); }; Wallet.prototype.importKey = function(options) {