From 997d01ffa4fe81ba8f7ece52654c5317ae9652ff Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Thu, 30 Oct 2014 15:09:58 -0700 Subject: [PATCH] method rename. --- lib/bitcoind.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/bitcoind.js b/lib/bitcoind.js index 5e5c8654..6179d87c 100644 --- a/lib/bitcoind.js +++ b/lib/bitcoind.js @@ -734,7 +734,8 @@ Wallet.prototype.getTransactions = function(options) { return bitcoindjs.walletListTransactions(options || {}); }; -Wallet.prototype.receivedByAddress = function(options) { +Wallet.prototype.listReceivedByAddress = +Wallet.prototype.getReceivedByAddress = function(options) { return bitcoindjs.walletReceivedByAddress(options || {}); };