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 04f47716c0
commit 2e0030cba8

View file

@ -1651,8 +1651,8 @@ bool simple_wallet::submit_multisig_main(const std::vector<std::string> &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)
{