set do_not_relay always false in submit_multisig_main

This commit is contained in:
SNeedlewoods 2025-07-14 17:37:01 +02:00
parent 861437c543
commit ffd228b114

View File

@ -1639,8 +1639,8 @@ bool simple_wallet::submit_multisig_main(const std::vector<std::string> &args, b
return false; return false;
} }
// actually commit or save the transactions // actually commit the transactions
commit_or_save(txs.m_ptx, m_do_not_relay); commit_or_save(txs.m_ptx, /* do_not_relay */ false);
} }
catch (const std::exception &e) catch (const std::exception &e)
{ {