Merge 5055d07edf into merged_master (Bitcoin PR bitcoin-core/gui#685)

This commit is contained in:
Byron Hambly 2025-03-31 09:11:10 +02:00
commit 733bd6924e

View file

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