From a847daa42121634645d4b2e588177cad3cf05ff8 Mon Sep 17 00:00:00 2001 From: 223880 Date: Fri, 26 Apr 2024 06:44:36 -0300 Subject: [PATCH] Fix keys random --- app/bitcoin/keys.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/bitcoin/keys.js b/app/bitcoin/keys.js index e7344c5..4c26a9b 100644 --- a/app/bitcoin/keys.js +++ b/app/bitcoin/keys.js @@ -1,4 +1,4 @@ -const {PrivateKey, Random, PublicKey} = require('bitcoinjs-lib'); +import {PrivateKey, Random, PublicKey} = require('bitcoinjs-lib'); // Generate three key pairs const key1 = bitcoin.ECPair.makeRandom();