mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 10:43:19 -03:00
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:
parent
ba47a4ba97
commit
c39619eeb4
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue