File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ 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
13
const { LiquidNetwork } = require ( '@breeztech/react-native-breez-sdk-liquid' )
14
+ const { LiquidAddress } = require ( '@breeztech/react-native-breez-sdk-liquid' )
14
15
15
16
let converter = new BitcoinConverter ( ) ;
16
17
@@ -29,6 +30,7 @@ class Coinjoin {
29
30
this . proof = null ;
30
31
this . payments = null ;
31
32
this . LiquidNetwork = LiquidNetwork ;
33
+ this . LiquidAddress = LiquidAddress ;
32
34
this . rescanOnchainSwaps = rescanOnchainSwaps ;
33
35
this . isEntering = isEntering ; // Boolean flag to indicate whether the user is entering or exiting
34
36
}
@@ -43,6 +45,7 @@ class CoinjoinTransaction {
43
45
this . proof = null ;
44
46
this . rescanOnchainSwaps = rescanOnchainSwaps ;
45
47
this . LiquidNetwork = LiquidNetwork ;
48
+ this . LiquidAddress = LiquidAddress ;
46
49
}
47
50
}
48
51
You can’t perform that action at this time.
0 commit comments