aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main/oshelper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/oshelper.cpp b/src/main/oshelper.cpp
index f9e33d13..d44fc8c2 100644
--- a/src/main/oshelper.cpp
+++ b/src/main/oshelper.cpp
@@ -303,7 +303,7 @@ std::pair<quint8, QString> OSHelper::getNetworkTypeAndAddressFromFile(const QStr
address = _address;
if(address.startsWith("5") || address.startsWith("7")){
networkType = NetworkType::STAGENET;
- } else if(address.startsWith("9") || address.startsWith("B")){
+ } else if(address.startsWith("9") || address.startsWith("A")){
networkType = NetworkType::TESTNET;
}
}