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

Commit

Permalink
chore(Style): fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Thore3 committed Oct 3, 2017
1 parent 463c0f3 commit 77836b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/keychain.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var constants = require('./constants');

// keychain
function KeyChain (extendedKey, index, cache, bitcoinjs) {
this._Bitcoin = bitcoinjs || Bitcoin
this._Bitcoin = bitcoinjs || Bitcoin;
this._chainRoot = null;
this.init(extendedKey, index, cache);

Expand Down
2 changes: 1 addition & 1 deletion src/keyring.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var KeyChain = require('./keychain');
// keyring: A collection of keychains

function KeyRing (extendedKey, cache, bitcoinjs) {
this._bitcoinjs = bitcoinjs
this._bitcoinjs = bitcoinjs;
this._receiveChain = null;
this._changeChain = null;
this.init(extendedKey, cache);
Expand Down

0 comments on commit 77836b3

Please sign in to comment.