diff options
author | sneurlax <sneurlax@gmail.com> | 2018-03-28 09:30:11 -0700 |
---|---|---|
committer | sneurlax <sneurlax@gmail.com> | 2018-03-28 09:30:11 -0700 |
commit | 1e0958c083cae30461f0cf15fdba6d1492d1a9d8 (patch) | |
tree | b8ce2687bfc5b30727e57e675dd930400198ff1d | |
parent | Merge pull request #3434 (diff) | |
download | monero-1e0958c083cae30461f0cf15fdba6d1492d1a9d8.tar.xz |
wallet: fix default mixin (4 -> 6)
-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; |