Skip to content
This repository has been archived by the owner on Mar 7, 2023. It is now read-only.

Commit

Permalink
Merge pull request #129 from blockchain/multiaddr-active-only
Browse files Browse the repository at this point in the history
fix(Transactions): only call multiaddr with active addresses and xpubs
  • Loading branch information
mpfluger committed Feb 20, 2016
2 parents 91761aa + d7d79f9 commit ce1fb8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/blockchain-wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ Object.defineProperties(Wallet.prototype, {
"context": {
configurable: false,
get: function() {
var xpubs = this.hdwallet && this.hdwallet.xpubs;
return this.addresses.concat(xpubs || []);
var xpubs = this.hdwallet && this.hdwallet.activeXpubs;
return this.activeAddresses.concat(xpubs || []);
}
},
"isDoubleEncrypted": {
Expand Down

0 comments on commit ce1fb8d

Please sign in to comment.