From fa3bd9de99ee2bdfce2010e9367391a146e41878 Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Tue, 31 Aug 2021 18:31:03 +0200 Subject: Remove CBanEntry::SetNull --- src/addrdb.h | 25 ++++++------------------- 1 file changed, 6 insertions(+), 19 deletions(-) (limited to 'src') diff --git a/src/addrdb.h b/src/addrdb.h index 567b9973b7..26400ee0b6 100644 --- a/src/addrdb.h +++ b/src/addrdb.h @@ -19,21 +19,15 @@ class CDataStream; class CBanEntry { public: - static const int CURRENT_VERSION=1; - int nVersion; - int64_t nCreateTime; - int64_t nBanUntil; + static constexpr int CURRENT_VERSION{1}; + int nVersion{CBanEntry::CURRENT_VERSION}; + int64_t nCreateTime{0}; + int64_t nBanUntil{0}; - CBanEntry() - { - SetNull(); - } + CBanEntry() {} explicit CBanEntry(int64_t nCreateTimeIn) - { - SetNull(); - nCreateTime = nCreateTimeIn; - } + : nCreateTime{nCreateTimeIn} {} /** * Create a ban entry from JSON. @@ -42,13 +36,6 @@ public: */ explicit CBanEntry(const UniValue& json); - void SetNull() - { - nVersion = CBanEntry::CURRENT_VERSION; - nCreateTime = 0; - nBanUntil = 0; - } - /** * Generate a JSON representation of this ban entry. * @return JSON suitable for passing to the `CBanEntry(const UniValue&)` constructor. -- cgit v1.2.3