diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-03-08 18:47:41 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-03-08 18:47:41 +0200 |
commit | e9f41e405f1f75533ef6e9d5adc76ba41dd29e8c (patch) | |
tree | 33326d648cb18d70299e6d20a1028d53f10d8bdc /src/simplewallet | |
parent | Merge pull request #3370 (diff) | |
parent | Bump min ring size from 5 to 7 from v7 (diff) | |
download | monero-e9f41e405f1f75533ef6e9d5adc76ba41dd29e8c.tar.xz |
Merge pull request #3368
38657fd0 Bump min ring size from 5 to 7 from v7 (moneromooo-monero)
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" |