Skip to content

Commit

Permalink
fix crypto import in commands
Browse files Browse the repository at this point in the history
  • Loading branch information
icedevml committed Aug 11, 2023
1 parent 51d915a commit 05a640b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion halo/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const {sha256} = require("js-sha256");
const EC = require("elliptic").ec;
const CMD = require('./cmdcodes').CMD_CODES;
const pbkdf2 = require('pbkdf2');
const crypto = require('node:crypto');
const crypto = require('crypto-browserify');

const ec = new EC('secp256k1');

Expand Down

0 comments on commit 05a640b

Please sign in to comment.