mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-06-02 19:22:22 +02: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
@ -76,12 +76,12 @@ public:
|
|||||||
static const int RecommendedNumConfirmations = 6;
|
static const int RecommendedNumConfirmations = 6;
|
||||||
|
|
||||||
TransactionRecord():
|
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):
|
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)
|
credit(0), idx(0)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user