diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-07 10:37:31 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-07 13:19:04 +0000 |
commit | 38657fd0e9bfe67e30aa011d8ec0585e27a3af2d (patch) | |
tree | 20d9041d28e49646d115d8176bbc486c34ac06bd /src/simplewallet | |
parent | Merge pull request #3253 (diff) | |
download | monero-38657fd0e9bfe67e30aa011d8ec0585e27a3af2d.tar.xz |
Bump min ring size from 5 to 7 from v7
Diffstat (limited to 'src/simplewallet')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index c618869f2..cbb174e1a 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -86,9 +86,9 @@ typedef cryptonote::simple_wallet sw; #define EXTENDED_LOGS_FILE "wallet_details.log" -#define DEFAULT_MIX 4 +#define DEFAULT_MIX 6 -#define MIN_RING_SIZE 5 // Used to inform user about min ring size -- does not track actual protocol +#define MIN_RING_SIZE 7 // Used to inform user about min ring size -- does not track actual protocol #define OUTPUT_EXPORT_FILE_MAGIC "Monero output export\003" |