PrivateSend Enhancement: Up default round count to 4 and allow user to mix up to 16 rounds (#2128)

* Allows a user to mix up to 16 rounds

All codebase appears to accept up to 16 rounds, however this form was capped at 8; restricting users to 2-8 rounds. This commit allows a user to actually use up to 16 rounds in practice. This will greatly enhance the privacy of those very worried about their privacy, as well as possibly increasing liquidity and increasing the privacy of all users.

* Up the default for PS mixing to 4 rounds.
This commit is contained in:
PaulieD 2018-07-12 04:02:51 -05:00 committed by UdjinM6
parent 8ee9333bc2
commit 43091a3efd
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ static const int MIN_PRIVATESEND_LIQUIDITY = 0;
static const int MAX_PRIVATESEND_ROUNDS = 16;
static const int MAX_PRIVATESEND_AMOUNT = MAX_MONEY / COIN;
static const int MAX_PRIVATESEND_LIQUIDITY = 100;
static const int DEFAULT_PRIVATESEND_ROUNDS = 2;
static const int DEFAULT_PRIVATESEND_ROUNDS = 4;
static const int DEFAULT_PRIVATESEND_AMOUNT = 1000;
static const int DEFAULT_PRIVATESEND_LIQUIDITY = 0;

View File

@ -224,7 +224,7 @@
<number>2</number>
</property>
<property name="maximum">
<number>8</number>
<number>16</number>
</property>
<property name="value">
<number>4</number>