clang-tidy: Fix readability-redundant-string-init in headers

See https://clang.llvm.org/extra/clang-tidy/checks/readability/redundant-string-init.html
This commit is contained in:
Hennadii Stepanov 2022-12-15 21:24:14 +00:00
parent ba47a4ba97
commit c39619eeb4
No known key found for this signature in database
GPG key ID: 410108112E7EA81F

View file

@ -76,12 +76,12 @@ public:
static const int RecommendedNumConfirmations = 6;
TransactionRecord():
hash(), time(0), type(Other), address(""), debit(0), credit(0), idx(0)
hash(), time(0), type(Other), debit(0), credit(0), idx(0)
{
}
TransactionRecord(uint256 _hash, qint64 _time):
hash(_hash), time(_time), type(Other), address(""), debit(0),
hash(_hash), time(_time), type(Other), debit(0),
credit(0), idx(0)
{
}