mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-12-26 14:34:00 +00:00
Remove need for lndgrpc
This commit is contained in:
parent
c3224856eb
commit
b4436162bc
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/local/bin/python3
|
#!/usr/local/bin/python3
|
||||||
from lnd_grpc import lnd_grpc
|
import base64, codecs, json, requests
|
||||||
import os
|
import os
|
||||||
|
|
||||||
def format_seed_numbered(seed):
|
def format_seed_numbered(seed):
|
||||||
|
@ -19,16 +19,11 @@ def format_seed_raw(seed):
|
||||||
|
|
||||||
# This is the main entry point for the program
|
# This is the main entry point for the program
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
REST_GEN_SEED_URL="https://localhost:10080/v1/genseed"
|
||||||
network="mainnet"
|
REST_CERT_PATH="/home/bitcoin/.lnd/tls.cert"
|
||||||
if os.path.isfile("/mnt/hdd/mynode/settings/.testnet_enabled"):
|
|
||||||
network="testnet"
|
|
||||||
|
|
||||||
# Generate the seed
|
# Generate the seed
|
||||||
rpc = lnd_grpc.Client(lnd_dir="/home/bitcoin/.lnd/",
|
r = requests.get(REST_GEN_SEED_URL, verify=REST_CERT_PATH)
|
||||||
macaroon_path="/home/bitcoin/.lnd/data/chain/bitcoin/{}/admin.macaroon".format(network))
|
data = r.json()
|
||||||
|
formatted_seed = format_seed_raw( data['cipher_seed_mnemonic'] )
|
||||||
# Get seed and print
|
|
||||||
data = rpc.gen_seed()
|
|
||||||
formatted_seed = format_seed_raw(data.cipher_seed_mnemonic)
|
|
||||||
print(formatted_seed)
|
print(formatted_seed)
|
|
@ -195,7 +195,7 @@ if ! skip_base_upgrades ; then
|
||||||
|
|
||||||
# Install any pip3 software
|
# Install any pip3 software
|
||||||
pip3 install --upgrade pip setuptools wheel
|
pip3 install --upgrade pip setuptools wheel
|
||||||
pip3 install lnd-grpc gnureadline docker-compose pipenv bcrypt pysocks redis --no-cache-dir
|
pip3 install gnureadline docker-compose pipenv bcrypt pysocks redis systemd --no-cache-dir
|
||||||
pip3 install flask pam python-bitcoinrpc prometheus_client psutil transmissionrpc --no-cache-dir
|
pip3 install flask pam python-bitcoinrpc prometheus_client psutil transmissionrpc --no-cache-dir
|
||||||
pip3 install qrcode image pyudev --no-cache-dir
|
pip3 install qrcode image pyudev --no-cache-dir
|
||||||
|
|
||||||
|
|
|
@ -276,7 +276,7 @@ fi
|
||||||
|
|
||||||
# Install Python3 specific tools (run multiple times to make sure success)
|
# Install Python3 specific tools (run multiple times to make sure success)
|
||||||
pip3 install --upgrade pip wheel setuptools
|
pip3 install --upgrade pip wheel setuptools
|
||||||
pip3 install lnd-grpc gnureadline docker-compose pipenv bcrypt pysocks redis --no-cache-dir
|
pip3 install gnureadline docker-compose pipenv bcrypt pysocks redis systemd --no-cache-dir
|
||||||
pip3 install flask pam python-bitcoinrpc prometheus_client psutil transmissionrpc --no-cache-dir
|
pip3 install flask pam python-bitcoinrpc prometheus_client psutil transmissionrpc --no-cache-dir
|
||||||
pip3 install qrcode image pyudev --no-cache-dir
|
pip3 install qrcode image pyudev --no-cache-dir
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user