File tree 1 file changed +11
-2
lines changed
1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -54,13 +54,22 @@ const formatOutput = (response: CreateNodeResponse.AsObject) => {
54
54
}
55
55
console . log ( '-----------------------END XUD SEED----------------------\n' ) ;
56
56
57
+ let walletInitializedMessage = 'The following wallets were initialized: ' ;
58
+
57
59
if ( response . initializedLndsList . length ) {
58
- console . log ( `The following lnd wallets were initialized: ${ response . initializedLndsList . join ( ', ' ) } ` ) ;
60
+ walletInitializedMessage += response . initializedLndsList . join ( ', ' ) ;
59
61
}
62
+
60
63
if ( response . initializedRaiden ) {
61
- console . log ( 'The keystore for raiden was initialized.' ) ;
64
+ if ( ! walletInitializedMessage . endsWith ( ' ' ) ) {
65
+ walletInitializedMessage += ', ' ;
66
+ }
67
+
68
+ walletInitializedMessage += 'ERC20(ETH)' ;
62
69
}
63
70
71
+ console . log ( walletInitializedMessage ) ;
72
+
64
73
console . log ( `
65
74
Please write down your 24 word mnemonic. It will allow you to recover your xud
66
75
node key and on-chain funds for the initialized wallets listed above should you
You can’t perform that action at this time.
0 commit comments