diff --git a/mmgen/main_tool.py b/mmgen/main_tool.py index 5b451865..a76070c8 100755 --- a/mmgen/main_tool.py +++ b/mmgen/main_tool.py @@ -48,6 +48,9 @@ opts_data = { -- -t, --type=t Specify address type (valid choices: 'legacy', + 'compressed', 'segwit', 'bech32', 'zcash_z') -- -v, --verbose Produce more verbose output + -- -x, --proxy=P Proxy HTTP connections via SOCKS5h proxy ‘P’ (host:port). + + Use special value ‘env’ to honor *_PROXY environment + + vars instead. e- -X, --cached-balances Use cached balances -- -y, --yes Answer 'yes' to prompts, suppress non-essential output """, diff --git a/mmgen/main_txbump.py b/mmgen/main_txbump.py index 85377cc6..c3dc4e82 100755 --- a/mmgen/main_txbump.py +++ b/mmgen/main_txbump.py @@ -85,7 +85,9 @@ opts_data = { e- -w, --wait Wait for transaction confirmation -- -W, --allow-non-wallet-swap Allow signing of swap transactions that send funds + to non-wallet addresses - -- -x, --proxy=P Fetch the swap quote via SOCKS5 proxy ‘P’ (host:port) + -- -x, --proxy=P Fetch the swap quote via SOCKS5h proxy ‘P’ (host:port). + + Use special value ‘env’ to honor *_PROXY environment + + vars instead. -- -y, --yes Answer 'yes' to prompts, suppress non-essential output -- -z, --show-hash-presets Show information on available hash presets """, diff --git a/mmgen/proto/rune/params.py b/mmgen/proto/rune/params.py index 609e60de..e3379188 100755 --- a/mmgen/proto/rune/params.py +++ b/mmgen/proto/rune/params.py @@ -56,8 +56,8 @@ class mainnet(CoinProtocol.Secp256k1): hrp = self.bech32_hrp, data = bech32.convertbits(list(pubhash), 8, 5))) -class stagenet(mainnet): +class testnet(mainnet): # testnet is stagenet bech32_hrp = 'sthor' -class testnet(stagenet): # testnet is deprecated +class regtest(testnet): # regtest is deprecated testnet bech32_hrp = 'tthor'