mirror of
https://github.com/monero-project/monero.git
synced 2025-08-15 23:50:26 -04:00
add do_not_relay option to submit_multisig_main command in simplewallet
This commit is contained in:
parent
3e218c2021
commit
bec90df7ec
1 changed files with 2 additions and 8 deletions
|
@ -1651,13 +1651,8 @@ bool simple_wallet::submit_multisig_main(const std::vector<std::string> &args, b
|
|||
return false;
|
||||
}
|
||||
|
||||
// actually commit the transactions
|
||||
for (auto &ptx: txs.m_ptx)
|
||||
{
|
||||
m_wallet->commit_tx(ptx);
|
||||
success_msg_writer(true) << tr("Transaction successfully submitted, transaction ") << get_transaction_hash(ptx.tx) << ENDL
|
||||
<< tr("You can check its status by using the `show_transfers` command.");
|
||||
}
|
||||
// actually commit or save the transactions
|
||||
commit_or_save(txs.m_ptx, m_do_not_relay);
|
||||
}
|
||||
catch (const std::exception &e)
|
||||
{
|
||||
|
@ -7750,7 +7745,6 @@ bool simple_wallet::sweep_single(const std::vector<std::string> &args_)
|
|||
}
|
||||
|
||||
commit_or_save(signed_tx.ptx, m_do_not_relay);
|
||||
success_msg_writer(true) << tr("Money successfully sent, transaction: ") << get_transaction_hash(ptx_vector[0].tx);
|
||||
}
|
||||
catch (const std::exception& e)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue