Skip to content

Commit c39619e

Browse files
committed
clang-tidy: Fix readability-redundant-string-init in headers
See https://clang.llvm.org/extra/clang-tidy/checks/readability/redundant-string-init.html
1 parent ba47a4b commit c39619e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/qt/transactionrecord.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ class TransactionRecord
7676
static const int RecommendedNumConfirmations = 6;
7777

7878
TransactionRecord():
79-
hash(), time(0), type(Other), address(""), debit(0), credit(0), idx(0)
79+
hash(), time(0), type(Other), debit(0), credit(0), idx(0)
8080
{
8181
}
8282

8383
TransactionRecord(uint256 _hash, qint64 _time):
84-
hash(_hash), time(_time), type(Other), address(""), debit(0),
84+
hash(_hash), time(_time), type(Other), debit(0),
8585
credit(0), idx(0)
8686
{
8787
}

0 commit comments

Comments
 (0)