From 93c33985039c4b23dc86622ac9becdbf8b0957ee Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Wed, 15 Nov 2017 15:01:59 +0000 Subject: [PATCH] simplewallet: translate ring size 0 to mixin 0 (default values) Avoids turning it to a huge number --- src/simplewallet/simplewallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 37db00bc1..4c6503854 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -632,7 +632,7 @@ bool simple_wallet::set_default_ring_size(const std::vector &args/* const auto pwd_container = get_and_verify_password(); if (pwd_container) { - m_wallet->default_mixin(ring_size - 1); + m_wallet->default_mixin(ring_size > 0 ? ring_size - 1 : 0); m_wallet->rewrite(m_wallet_file, pwd_container->password()); } return true;