Transfer: min ring size is now 7, from 5

This commit is contained in:
moneromooo-monero 2018-03-12 10:16:41 +00:00
parent ce8913b5bf
commit c0ffe5b96a

View file

@ -48,7 +48,7 @@ Rectangle {
property bool showAdvanced: false
function scaleValueToMixinCount(scaleValue) {
var scaleToMixinCount = [4,5,6,7,8,9,10,11,12,14,16,18,21,25];
var scaleToMixinCount = [6,7,8,9,10,11,12,13,14,16,18,20,22,25];
if (scaleValue < scaleToMixinCount.length) {
return scaleToMixinCount[scaleValue];
} else {