aboutsummaryrefslogtreecommitdiff
path: root/src/simplewallet
diff options
context:
space:
mode:
authorSNeedlewoods <sneedlewoods_1@protonmail.com>2025-07-14 17:37:01 +0200
committerSNeedlewoods <sneedlewoods_1@protonmail.com>2025-07-14 18:41:25 +0200
commit2e0030cba80afa80feb5e2fb0782ac537158bbd3 (patch)
treea7fff638aa078fc1ff03b9d6d9ec0e192ec1ad26 /src/simplewallet
parent04f47716c09d702f77da223805a71c653b859ca2 (diff)
downloadmonzero-core-2e0030cba80afa80feb5e2fb0782ac537158bbd3.tar.gz
monzero-core-2e0030cba80afa80feb5e2fb0782ac537158bbd3.tar.xz
monzero-core-2e0030cba80afa80feb5e2fb0782ac537158bbd3.zip
set do_not_relay always false in submit_multisig_main
Diffstat (limited to 'src/simplewallet')
-rw-r--r--src/simplewallet/simplewallet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp
index 5292580d7..fd8a82b52 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -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)
{