banman: Add, use CBanEntry ctor that takes ban reason

This commit is contained in:
Carl Dong
2019-01-03 21:26:10 +08:00
parent 1ffa4ce27d
commit c2e04d37f3
2 changed files with 6 additions and 2 deletions

View File

@@ -43,6 +43,11 @@ public:
nCreateTime = nCreateTimeIn;
}
explicit CBanEntry(int64_t n_create_time_in, BanReason ban_reason_in) : CBanEntry(n_create_time_in)
{
banReason = ban_reason_in;
}
ADD_SERIALIZE_METHODS;
template <typename Stream, typename Operation>