Added DASH testnet in get_networks

This commit is contained in:
Joemar Taganna 2018-01-19 23:29:46 +08:00 committed by GitHub
parent 6387cb4628
commit 791cf2aaaf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,6 +80,8 @@ def get_network(network='btctest'):
return BitcoinGoldMainNet
elif network == "dash" or network == "dash":
return DashMainNet
elif network == "dash_testnet" or network == 'dashtest':
return DashTestNet
return BitcoinTestNet