aboutsummaryrefslogtreecommitdiff
path: root/src/addrdb.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/addrdb.h')
-rw-r--r--src/addrdb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/addrdb.h b/src/addrdb.h
index 90eca44bdb..88da31a6fc 100644
--- a/src/addrdb.h
+++ b/src/addrdb.h
@@ -92,9 +92,9 @@ public:
class CBanDB
{
private:
- fs::path pathBanlist;
+ const fs::path m_ban_list_path;
public:
- CBanDB();
+ explicit CBanDB(fs::path ban_list_path);
bool Write(const banmap_t& banSet);
bool Read(banmap_t& banSet);
};