From 2e0030cba80afa80feb5e2fb0782ac537158bbd3 Mon Sep 17 00:00:00 2001 From: SNeedlewoods Date: Mon, 14 Jul 2025 17:37:01 +0200 Subject: [PATCH] set do_not_relay always false in submit_multisig_main --- src/simplewallet/simplewallet.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 5292580d79..fd8a82b521 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -1651,8 +1651,8 @@ bool simple_wallet::submit_multisig_main(const std::vector &args, b return false; } - // actually commit or save the transactions - commit_or_save(txs.m_ptx, m_do_not_relay); + // actually commit the transactions + commit_or_save(txs.m_ptx, /* do_not_relay */ false); } catch (const std::exception &e) {