File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ const bitcoin = require('bitcoinjs-lib').networks.signet;
10
10
const mpc = require ( 'mprc-crypto-lib' ) ;
11
11
const { setupMPCCeremony } = require ( './mpc_ceremony.jsx' ) ;
12
12
const { rescanOnchainSwaps} = require ( '@breeztech/react-native-breez-sdk-liquid' ) ;
13
+ const { LiquidNetwork } = require ( '@breeztech/react-native-breez-sdk-liquid' )
13
14
14
15
let converter = new BitcoinConverter ( ) ;
15
16
@@ -27,6 +28,7 @@ class Coinjoin {
27
28
this . address = address ;
28
29
this . proof = null ;
29
30
this . payments = null ;
31
+ this . LiquidNetwork = LiquidNetwork ;
30
32
this . rescanOnchainSwaps = rescanOnchainSwaps ;
31
33
this . isEntering = isEntering ; // Boolean flag to indicate whether the user is entering or exiting
32
34
}
@@ -38,6 +40,9 @@ class CoinjoinTransaction {
38
40
this . vout = vout ;
39
41
this . amount = amount ;
40
42
this . address = address ;
43
+ this . proof = null ;
44
+ this . rescanOnchainSwaps = rescanOnchainSwaps ;
45
+ this . LiquidNetwork = LiquidNetwork ;
41
46
}
42
47
}
43
48
You can’t perform that action at this time.
0 commit comments