-
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
refactor: PrivateSend -> CoinJoin + Move the tab #4038
Conversation
Co-authored-by: thephez <thephez@users.noreply.github.com>
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.
LGTM, utACK
Pushed some more commits to rename the entire codebase. |
23513b5
to
5d6fdfb
Compare
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.
Pls see UdjinM6@bac67e9 and 2 suggestions below
5dfc2a1
to
9c1a3bd
Compare
Picked and addressed the suggestions! |
Hmmm, good point... and |
Also a good point 😄 See the last three commits, note that c92bf89 also drops legacy checks for |
c92bf89
to
41e0a7c
Compare
Right, my bad 🙈 👍
You mean in case it was set to a lower number? True, didn't think about. Ok, let's have this one too 👍 |
Pls see 30ec408. Also, the more I play with it (going back to develop, saving some settings, going back) the more it feels awkward that we have some options/settings covered and some not :/ Let's maybe migrate all of them (e9b44f6) since we have the P-word in our code again anyway now? Probably not a big issue since it's only 2 specific places and for a good reason. Thoughts? |
Good catch! :)
Well yeah, actually it just makes sense to migrate them all. IMO having the P-Word (lol for that) in there for migration shouldn't be any issue at all.. i mean, a class also has a P-Section and its still just to "remove the P-Word from older wallet databases/setting files" 😄 |
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.
LGTM now 👍
Slightly tested ACK
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
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
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
* qt|wallet|privatesend: Rename PrivateSend to CoinJoin in GUI strings * qt: Move CoinJoin next to Transactions * qt: Adjust status tip of privateSendCoinsMenuAction Co-authored-by: thephez <thephez@users.noreply.github.com> * rename: privateSend -> coinJoin * rename: privatesend -> coinjoin * rename: PrivateSend -> CoinJoin * rename: use_ps -> use_cj * rename: PRIVATESEND -> COINJOIN * rename: privatesend -> coinjoin for files and folders * refactor: Re-order coinjoin files in cmake/make files * refactor: Re-order coinjoin includes where it makes sense * test: Update lint-circular-dependencies.sh * Few cleanups * test: test/coinjoin_tests.cpp -> wallet/test/coinjoin_test.cpp * s/AdvancedPSUI/AdvancedCJUI/g * s/privateSentAmountChanged/coinJoinAmountChanged/g * wallet: Rename "ps_salt" backwards compatible * Minimal PrivateSend -> CoinJoin migration for settings and cmd-line * wallet: Fix privatesendrounds -> coinjoinrounds migration * qt: Migrate nPrivateSendAmount -> nCoinJoinAmount * `-coinjoindenoms` never existed * Migrate all PS options/settings * rpc: Formatting only * qt: Make Send/CoinJoin tabs a bit more distinguishable Co-authored-by: thephez <thephez@users.noreply.github.com> Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com>
As decided by DCG this PR renames
PrivateSend
toCoinJoin
in the entire codebase and moves its tab to the right next toTransactions
.