Skip to content
This repository has been archived by the owner on Apr 3, 2019. It is now read-only.

Commit

Permalink
Have browserify ignore secp256k1
Browse files Browse the repository at this point in the history
  • Loading branch information
Braydon Fuller committed Sep 13, 2016
1 parent 79c89d5 commit 884945c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/crypto/ecdsa.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var $ = require('../util/preconditions');

var secp256k1 = null;
try {
secp256k1 = require('secp256k1');
secp256k1 = require('secp' + '256k1');
} catch (er) {
console.warn('Unable to load native secp256k1 bindings');
}
Expand Down

0 comments on commit 884945c

Please sign in to comment.