diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-10-15 18:32:41 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-10-15 18:32:41 +0200 |
commit | 1039b5e813ee2f4b13f15fb0d6b522c333477bd7 (patch) | |
tree | 1132c8b04dd4269c453226dfc64ea916adbc9fb8 /src | |
parent | Merge pull request #2568 (diff) | |
parent | simplewallet: fix setting default-ring-size to 0 (diff) | |
download | monero-1039b5e813ee2f4b13f15fb0d6b522c333477bd7.tar.xz |
Merge pull request #2569
b5b4abb8 simplewallet: fix setting default-ring-size to 0 (moneromooo-monero)
Diffstat (limited to 'src')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index bc503c73c..0f32ea091 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -548,8 +548,6 @@ bool simple_wallet::set_default_ring_size(const std::vector<std::string> &args/* fail_msg_writer() << tr("ring size must be an integer >= 3"); return true; } - if (ring_size == 0) - ring_size = DEFAULT_MIX + 1; const auto pwd_container = get_and_verify_password(); if (pwd_container) |