aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2018-04-12 13:06:56 +0200
committerRiccardo Spagni <ric@spagni.net>2018-04-12 13:06:56 +0200
commit51a4cc0fade26f7b32377bb9e6d561c9b73cb7b0 (patch)
treea0f0315f1ef02cdfdfe7e8de240fbeb98c2c4a3b /src
parentMerge pull request #3591 (diff)
parentwallet: fix default mixin (4 -> 6) (diff)
downloadmonero-51a4cc0fade26f7b32377bb9e6d561c9b73cb7b0.tar.xz
Merge pull request #3515
89250054 wallet: fix default mixin (4 -> 6) (sneurlax)
Diffstat (limited to 'src')
-rw-r--r--src/wallet/api/wallet.cpp2
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;