From 9748a048b41a83be9703bf76d69ca46f73330d31 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 8cd3c3afd74577..cea629fead7fff 100644 --- a/src/interfaces/wallet.h +++ b/src/interfaces/wallet.h @@ -411,7 +411,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; };