-
Notifications
You must be signed in to change notification settings - Fork 1.2k
privatesend: Increase max participants to 20 #3610
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
privatesend: Increase max participants to 20 #3610
Conversation
Signed-off-by: pasta <[email protected]>
Signed-off-by: pasta <[email protected]>
Signed-off-by: pasta <[email protected]>
Signed-off-by: pasta <[email protected]>
|
Is there any reason to not increase it even more if you say the theoretical maximum should be around 60? |
|
The more participants you have I assume the more problems you might have. That'll require more connection slots etc. It might be fine to do so, but imo would require more research and I don't expect that this will be getting maxed out on mainnet at this point so no trouble capping it at 20 |
|
utACK, At this point i can't attest that this doesn't break anything in the PS process but the min/max increase itself with the spork looks good to me. |
UdjinM6
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
utACK
* Add spork to change max mixing participants to 20 Signed-off-by: pasta <[email protected]> * Also change min participants on devnet/testnet Signed-off-by: pasta <[email protected]> * adjust formatting Signed-off-by: pasta <[email protected]> * add nPoolNewMinParticipants under regtest Signed-off-by: pasta <[email protected]>
|
backported in #3670 |
* Add spork to change max mixing participants to 20 Signed-off-by: pasta <[email protected]> * Also change min participants on devnet/testnet Signed-off-by: pasta <[email protected]> * adjust formatting Signed-off-by: pasta <[email protected]> * add nPoolNewMinParticipants under regtest Signed-off-by: pasta <[email protected]>
This adds a new spork which will change the maximum number of participants from 5 to 20 (the theoretical limit based on tx size limit should be around 60). This should increase the general privacy of privatesend when there is sufficient liquidity on the network. In the case that there is insufficient liquidity, privacy is the same as it is today, with a minimum number of participants of 3 (actually 2 on devnet/testnet once this spork is activated to make it easier to test mixing).
If there's a better way to do this, let me know