Merge remote-tracking branch 'origin/ben/enable-rpc-params-in-env' into ben/python3-and-packaging

This commit is contained in:
Ben Wilson 2019-10-15 09:40:59 -04:00
commit 7085129b84
1 changed files with 23 additions and 15 deletions

View File

@ -4,7 +4,11 @@ import os, re
testnet = "http://localhost:18232" #testnet
mainnet = "http://localhost:8232"
regtest = "http://localhost:18444"
if 'ZCASH_NETWORK' in os.environ:
ZCASH_NETWORK = os.getenv('ZCASH_NETWORK')
NETWORK = ZCASH_NETWORK
# Default is testnet
else:
NETWORK = testnet
#Timeout needs to be high for any pour operations
@ -12,8 +16,12 @@ TIMEOUT = 600
#Default fee to use on network for txs.
DEFAULT_FEE = 0.01
# Try to get RPC parameters from environment
if 'RPCUSER' in os.environ and 'RPCPASSWORD' in os.environ:
RPCUSER = os.getenv('RPCUSER')
RPCPASSWORD = os.getenv('RPCPASSWORD')
else:
zcashconf = os.path.expanduser('~/.zcash/zcash.conf')
def read_config(filename):
f = open(filename)
for line in f: