diff options
author | Alexander Blair <snipa@jagtech.io> | 2020-03-27 12:23:58 -0700 |
---|---|---|
committer | Alexander Blair <snipa@jagtech.io> | 2020-03-27 12:23:59 -0700 |
commit | 5ba6eef272e705f2ecaee3149ecc3d8fa6eaeadf (patch) | |
tree | 13d15cc979b9beeea543529fccc3b1a1455f4272 /src/simplewallet | |
parent | Merge pull request #6285 (diff) | |
parent | ringdb: use a different iv for key and data in rings table (diff) | |
download | monero-5ba6eef272e705f2ecaee3149ecc3d8fa6eaeadf.tar.xz |
Merge pull request #6288
0349347e ringdb: use a different iv for key and data in rings table (moneromooo-monero)
7b882087 simplewallet: reword mixin in user message in terms of ring size (moneromooo-monero)
f507a43a wallet2: do not remove known rings when a tx fails (moneromooo-monero)
Diffstat (limited to 'src/simplewallet')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 19e3656c2..d981a48b8 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -1691,7 +1691,7 @@ bool simple_wallet::print_ring(const std::vector<std::string> &args) rings.push_back({key_image, ring}); else if (!m_wallet->get_rings(txid, rings)) { - fail_msg_writer() << tr("Key image either not spent, or spent with mixin 0"); + fail_msg_writer() << tr("Key image either not spent, or spent with ring size 1"); return true; } |