From d4166ffa5d9a159817e598aa51a6667213cc86e6 Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Wed, 12 Oct 2022 23:40:38 +0200 Subject: [PATCH] Fixed DUMBEST bug of this year!(absolute champion) --- src/wallet/wallet2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 6f60deb9..377ca986 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -5881,7 +5881,7 @@ construct_tx_param wallet2::get_default_construct_tx_param_inital() } const construct_tx_param& wallet2::get_default_construct_tx_param() { - static construct_tx_param ctp = get_default_construct_tx_param_inital(); + construct_tx_param ctp = get_default_construct_tx_param_inital(); return ctp; } //----------------------------------------------------------------------------------------------------