rename methods.

This commit is contained in:
Christopher Jeffrey 2014-10-30 14:43:36 -07:00
parent 20301e4f4f
commit c69c3c258d
1 changed files with 4 additions and 2 deletions

View File

@ -729,7 +729,8 @@ Wallet.prototype.sendFrom = function(options) {
return bitcoindjs.walletSendFrom(options || {});
};
Wallet.prototype.listTransactions = function(options) {
Wallet.prototype.listTransactions =
Wallet.prototype.getTransactions = function(options) {
return bitcoindjs.walletListTransactions(options || {});
};
@ -737,7 +738,8 @@ Wallet.prototype.receivedByAddress = function(options) {
return bitcoindjs.walletReceivedByAddress(options || {});
};
Wallet.prototype.listAccounts = function(options) {
Wallet.prototype.listAccounts =
Wallet.prototype.getAccounts = function(options) {
return bitcoindjs.walletListAccounts(options || {});
};