From 9b4db25f86844d9bf54c43b8ceba0e0dfddc10bd Mon Sep 17 00:00:00 2001 From: Joemar Taganna Date: Sat, 20 Jan 2018 00:02:11 +0800 Subject: [PATCH] Update bip32.py --- pywallet/utils/bip32.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pywallet/utils/bip32.py b/pywallet/utils/bip32.py index b560315..51f07fc 100644 --- a/pywallet/utils/bip32.py +++ b/pywallet/utils/bip32.py @@ -657,6 +657,8 @@ class Wallet(object): response = BitcoinGoldMainNet elif network == "dash" or network == "DASH": response = DashMainNet + elif network == 'dash_testnet' or network == 'DASHTEST': + response = DashTestNet else: response = network return response