-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Introduce getprivatesendinfo and deprecate getpoolinfo #3140
Conversation
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.
See inline comments
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 (the safety belt thing is just a nit for me)
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.
re-utACK
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.
Concept ACK, will try to review / test tonight... But that might not happen
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
" \"multisession\": true|false, (bool) Whether PrivateSend Multisession option is enabled\n" | ||
" \"max_sessions\": xxx, (numeric) How many parallel mixing sessions can there be at once\n" | ||
" \"max_rounds\": xxx, (numeric) How many rounds to mix\n" | ||
" \"max_amount\": xxx, (numeric) How many " + CURRENCY_UNIT + " to keep anonimized\n" |
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.
@UdjinM6 Just found this one.
s/anonimized/anonymized/
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.
🙈
smth to fix together with other trivial fixes I guess :)
* Introduce getprivatesendinfo and deprecate getpoolinfo * s/ToJson/GetJsonInfo/ * s/queues/queue_size/ * Add TODO to explain `denomination` string convertion * s/entries/entries_count/ * Use `CURRENCY_UNIT` * Who needs safety belts after all
…rnode winner` and `getpoolinfo` 7c81d53 chore: drop deprecated CoinJoin RPC `getpoolinfo` (Kittywhiskers Van Gogh) 7cdd4f3 chore: drop deprecated `masternode` RPC verbs `winner` and `current` (Kittywhiskers Van Gogh) Pull request description: ## Additional Information * `masternode current`, `masternode winner` were deprecated in [dash#4060](#4060), which was included in Dash Core v0.17 * `getpoolinfo` was deprecated in [dash#3140](#3140), which was included in Dash Core v0.15. ## Breaking Changes Deprecated RPCs will no longer be available. ## Checklist - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas **(note: N/A)** - [x] I have added or updated relevant unit/integration/functional/e2e tests **(note: N/A)** - [x] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ ACKs for top commit: UdjinM6: utACK 7c81d53 knst: utACK 7c81d53 Tree-SHA512: 3ee21be2114ebeb139694f77fe6dfc30ee6f9404db6b0aa328a8179a9091b189bf6494e5c54b637aa1ab4f06fa7c3edc6bba26eab2a97b5f987fcd66952040b6
getpoolinfo
is not very useful atm (way too simplistic and wasn't updated to show correct info when mixing in parallel sessions), and also, the name is confusing. Introducinggetprivatesendinfo
to fix these issues.