Skip to content

Commit

Permalink
[FIX] Inject sjcl into base58.
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Zeiler committed Jul 9, 2014
1 parent cb5acfb commit aff9c09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/master_key.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = function(options) {
var sjcl = options.sjcl;
var base58 = require(__dirname+'/base58.js');
var base58 = require(__dirname+'/base58.js')({ sjcl: sjcl });

function MasterKey(key){
this.value = key;
Expand Down

0 comments on commit aff9c09

Please sign in to comment.