Skip to content

Commit

Permalink
Merge pull request #14 from anonymousbitcoin/fix/testnet_port
Browse files Browse the repository at this point in the history
Adjust default testnet rpc port
  • Loading branch information
thomasluis authored Jan 22, 2019
2 parents 2d43930 + 72b36d5 commit 2b0c816
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/anon_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def get_rpc_creds(self, data, network='mainnet'):
creds = {key: value for (key, value) in match}

# standard Anon defaults...
default_port = 3130 if (network == 'mainnet') else 33129
default_port = 3130 if (network == 'mainnet') else 3127

# use default port for network if not specified in anon.conf
if not ('port' in creds):
Expand Down

0 comments on commit 2b0c816

Please sign in to comment.