mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-09-27 12:06:36 +02:00
correct output
This commit is contained in:
@@ -7,8 +7,10 @@
|
||||
# - systemd says its running
|
||||
# - TLS.cert was created
|
||||
|
||||
# CHECK 3: Does LND wallet already exists
|
||||
# - yes: Jump to next point or ask to delete
|
||||
|
||||
# UI: Ask if user wants NEW wallet or RECOVER a wallet
|
||||
|
||||
|
||||
source lnd/bin/activate
|
||||
python /home/admin/config.scripts/lnd.initwallet.py new ahdahdkash
|
||||
python /home/admin/config.scripts/lnd.initwallet.py new 12345678
|
@@ -62,9 +62,9 @@ if mode=="new":
|
||||
#)
|
||||
request = ln.GenSeedRequest()
|
||||
response = stub.GenSeed(request)
|
||||
print(response)
|
||||
seedwords = response.cipher_seed_mnemonic
|
||||
print(len(seedwords))
|
||||
seedwordsString=','.join(seedwords)
|
||||
print("seedwords='"+seedwordsString+"'")
|
||||
|
||||
# TODO: do first https://api.lightning.community/#genseed
|
||||
|
||||
@@ -77,7 +77,7 @@ if mode=="new":
|
||||
cipher_seed_mnemonic=seedwords
|
||||
)
|
||||
response = stub.InitWallet(request)
|
||||
print(response)
|
||||
#print(response)
|
||||
|
||||
elif mode=="seed":
|
||||
|
||||
|
Reference in New Issue
Block a user