Fixed typo on getAddressesOrdered

This commit is contained in:
Matias Pando 2015-01-07 16:47:22 -03:00
commit e415604870
5 changed files with 38 additions and 17 deletions

View file

@ -2062,13 +2062,13 @@ Wallet.prototype.getAddresses = function() {
/**
* @desc gets the list of addresses, orderder for the caller:
* @desc gets the list of addresses, ordered for the caller:
* 1) himselfs first
* 2) receive address first
* 3) last created first
*/
Wallet.prototype.getAddressesOrderer = function() {
return this.publicKeyRing.getAddressesOrderer(this.publicKey);
Wallet.prototype.getAddressesOrdered = function() {
return this.publicKeyRing.getAddressesOrdered(this.publicKey);
};
/**