mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-12 08:29:16 +00:00
More removal / refactor
This commit is contained in:
parent
304c1fd88e
commit
7b295f9f1a
|
@ -1,13 +0,0 @@
|
|||
#!/usr/bin/env python3
|
||||
from bitcointx.wallet import *
|
||||
import hashlib
|
||||
import sys
|
||||
|
||||
if len(sys.argv) != 2:
|
||||
print("Usage: get_scripthash.py <addr>")
|
||||
exit(1)
|
||||
|
||||
addr = CBitcoinAddress( sys.argv[1] )
|
||||
script = addr.to_scriptPubKey()
|
||||
script_hash = hashlib.sha256(script).hexdigest()
|
||||
print(script_hash)
|
|
@ -98,7 +98,6 @@ fi
|
|||
|
||||
|
||||
# Install any pip3 software
|
||||
pip3 install python-bitcointx --no-cache-dir
|
||||
pip3 install gnureadline --no-cache-dir
|
||||
pip3 install lndmanage==0.10.0 --no-cache-dir # Install LND Manage (keep up to date with LND)
|
||||
pip3 install docker-compose --no-cache-dir
|
||||
|
|
|
@ -181,7 +181,6 @@ fi
|
|||
# Install Python3 specific tools (run multiple times to make sure success)
|
||||
pip3 install wheel setuptools
|
||||
pip3 install bitstring lnd-grpc pycoin aiohttp connectrum python-bitcoinlib
|
||||
pip3 install python-bitcointx
|
||||
pip3 install gnureadline
|
||||
pip3 install lndmanage==0.10.0 # Install LND Manage (keep up to date with LND)
|
||||
pip3 install docker-compose
|
||||
|
|
Loading…
Reference in New Issue
Block a user