From 3cd2115b17e8750a1519a64a158e19d5331aaba8 Mon Sep 17 00:00:00 2001 From: Konstantin Akimov Date: Mon, 5 Aug 2024 17:23:35 +0700 Subject: [PATCH] fix: add default initialization of is_platform_transfer flag for WalletTx --- src/interfaces/wallet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interfaces/wallet.h b/src/interfaces/wallet.h index b42581ef825980..e2365c4c891613 100644 --- a/src/interfaces/wallet.h +++ b/src/interfaces/wallet.h @@ -408,7 +408,7 @@ struct WalletTx int64_t time; std::map value_map; bool is_coinbase; - bool is_platform_transfer; + bool is_platform_transfer{false}; bool is_denominate; };