aboutsummaryrefslogtreecommitdiff
path: root/src/simplewallet/simplewallet.cpp
diff options
context:
space:
mode:
authortobtoht <tob@featherwallet.org>2025-08-01 11:52:22 +0000
committertobtoht <tob@featherwallet.org>2025-08-01 11:52:22 +0000
commit35efc7e340cf3d672c66e48112e275b03ff69cd6 (patch)
tree8700c9d7d9eb3bcf3f365f6d5963c30c4b222e4d /src/simplewallet/simplewallet.cpp
parentec870e50706a29768a65f597155ed5c7ad7e6326 (diff)
parent8f98dac4f02e1c7f431c3917f95cb9a235e668b9 (diff)
downloadmonzero-core-35efc7e340cf3d672c66e48112e275b03ff69cd6.tar.gz
monzero-core-35efc7e340cf3d672c66e48112e275b03ff69cd6.tar.xz
monzero-core-35efc7e340cf3d672c66e48112e275b03ff69cd6.zip
Merge pull request #10015
8f98dac wallet: deprecate wallet2::find_and_save_rings() (jeffro256)
Diffstat (limited to 'src/simplewallet/simplewallet.cpp')
-rw-r--r--src/simplewallet/simplewallet.cpp10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp
index fd8a82b52..33f5f64d7 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -2231,15 +2231,7 @@ bool simple_wallet::blackballed(const std::vector<std::string> &args)
bool simple_wallet::save_known_rings(const std::vector<std::string> &args)
{
- try
- {
- LOCK_IDLE_SCOPE();
- m_wallet->find_and_save_rings();
- }
- catch (const std::exception &e)
- {
- fail_msg_writer() << tr("Failed to save known rings: ") << e.what();
- }
+ fail_msg_writer() << tr("save_known_rings is deprecated");
return true;
}