diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-04-12 13:46:18 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-04-12 13:46:18 +0200 |
commit | 8703f1d80e64266062a034bcb75b1bd5eeeb6c2f (patch) | |
tree | f89647b5c885505282380fcc16d0915c89a65c98 /src | |
parent | Merge pull request #3511 (diff) | |
parent | wallet: fix default mixin (4 -> 6) (diff) | |
download | monero-8703f1d80e64266062a034bcb75b1bd5eeeb6c2f.tar.xz |
Merge pull request #3516
1e0958c0 wallet: fix default mixin (4 -> 6) (sneurlax)
Diffstat (limited to 'src')
-rw-r--r-- | src/wallet/api/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp index b02884f67..b78a471b9 100644 --- a/src/wallet/api/wallet.cpp +++ b/src/wallet/api/wallet.cpp @@ -60,7 +60,7 @@ namespace Monero { namespace { // copy-pasted from simplewallet - static const size_t DEFAULT_MIXIN = 4; + static const size_t DEFAULT_MIXIN = 6; static const int DEFAULT_REFRESH_INTERVAL_MILLIS = 1000 * 10; // limit maximum refresh interval as one minute static const int MAX_REFRESH_INTERVAL_MILLIS = 1000 * 60 * 1; |