aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces
diff options
context:
space:
mode:
authorGregory Sanders <gsanders87@gmail.com>2019-09-16 12:26:58 -0400
committerGregory Sanders <gsanders87@gmail.com>2019-09-26 16:23:32 -0400
commitb34f0180e39fc95d88596a987724b994707e2552 (patch)
treee9ddc512f6ed457aaa4d643c563bafae4a709e57 /src/interfaces
parentf50785ab56c0c094960c7049cfe9209b101e2823 (diff)
downloadbitcoin-b34f0180e39fc95d88596a987724b994707e2552.tar.xz
Revert "gui: Generate bech32 addresses by default (take 2, fixup)"
This reverts commit fa5a4cd813c2f0225dcbc05cd16ae2d1c0d13234.
Diffstat (limited to 'src/interfaces')
-rw-r--r--src/interfaces/node.cpp1
-rw-r--r--src/interfaces/node.h3
2 files changed, 0 insertions, 4 deletions
diff --git a/src/interfaces/node.cpp b/src/interfaces/node.cpp
index c80a8789fc..3d89e17163 100644
--- a/src/interfaces/node.cpp
+++ b/src/interfaces/node.cpp
@@ -201,7 +201,6 @@ public:
return GuessVerificationProgress(Params().TxData(), tip);
}
bool isInitialBlockDownload() override { return ::ChainstateActive().IsInitialBlockDownload(); }
- bool isAddressTypeSet() override { return !::gArgs.GetArg("-addresstype", "").empty(); }
bool getReindex() override { return ::fReindex; }
bool getImporting() override { return ::fImporting; }
void setNetworkActive(bool active) override
diff --git a/src/interfaces/node.h b/src/interfaces/node.h
index 2f4f396e72..688ff434ba 100644
--- a/src/interfaces/node.h
+++ b/src/interfaces/node.h
@@ -155,9 +155,6 @@ public:
//! Is initial block download.
virtual bool isInitialBlockDownload() = 0;
- //! Is -addresstype set.
- virtual bool isAddressTypeSet() = 0;
-
//! Get reindex.
virtual bool getReindex() = 0;