diff --git a/lib/wallet/account.js b/lib/wallet/account.js index 675acefa..688b12b5 100644 --- a/lib/wallet/account.js +++ b/lib/wallet/account.js @@ -250,7 +250,7 @@ Account.prototype.open = function open() { this.change = this.deriveChange(this.changeDepth - 1); if (this.witness) - this.nested = this.deriveReceive(this.nestedDepth - 1); + this.nested = this.deriveNested(this.nestedDepth - 1); return Promise.resolve(null); };