aboutsummaryrefslogtreecommitdiff
path: root/src/qt/clientmodel.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2011-06-30 19:14:42 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2011-06-30 19:14:42 +0200
commitd56c6f312c7784e30794ff71eb0b0ec94cdf15ef (patch)
tree78d9d9b24f705e0497523ec32fa77b40c2136fcf /src/qt/clientmodel.cpp
parentef079e183bf1be9f5a61a05018ee4480db86bc45 (diff)
downloadbitcoin-d56c6f312c7784e30794ff71eb0b0ec94cdf15ef.tar.xz
Make it very clear when on testnet (green icon, add [testnet] to title)
Diffstat (limited to 'src/qt/clientmodel.cpp')
-rw-r--r--src/qt/clientmodel.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/qt/clientmodel.cpp b/src/qt/clientmodel.cpp
index 125cb91017..30b4fe7235 100644
--- a/src/qt/clientmodel.cpp
+++ b/src/qt/clientmodel.cpp
@@ -39,6 +39,11 @@ void ClientModel::update()
emit numBlocksChanged(getNumBlocks());
}
+bool ClientModel::isTestNet() const
+{
+ return fTestNet;
+}
+
bool ClientModel::inInitialBlockDownload() const
{
return IsInitialBlockDownload();