Skip to content

Commit

Permalink
standard tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
jprichardson committed Mar 23, 2016
1 parent 040cd09 commit bdd4323
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/hdkey.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ function HDKey (versions) {
}

Object.defineProperty(HDKey.prototype, 'fingerprint', { get: function () { return this._fingerprint } })
Object.defineProperty(HDKey.prototype, 'identifier', {get: function () { return this._identifier } })
Object.defineProperty(HDKey.prototype, 'pubKeyHash', {get: function () { return this.identifier }})
Object.defineProperty(HDKey.prototype, 'identifier', { get: function () { return this._identifier } })
Object.defineProperty(HDKey.prototype, 'pubKeyHash', { get: function () { return this.identifier } })

Object.defineProperty(HDKey.prototype, 'privateKey', {
get: function () {
Expand Down
1 change: 0 additions & 1 deletion test/hdkey.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ describe('hdkey', function () {

var expected = 'xpub6JdKdVJtdx6sC3nh87pDvnGhotXuU5Kz6Qy7Piy84vUAwWSYShsUGULE8u6gCivTHgz7cCKJHiXaaMeieB4YnoFVAsNgHHKXJ2mN6jCMbH1'
assert.equal(derivedHDKey.publicExtendedKey, expected)

})
})

Expand Down

0 comments on commit bdd4323

Please sign in to comment.