-
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: remove redundant filename prefixes for Dash-specific logic #4475
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.
should re-apply this https://github.com/dashpay/dash/compare/d663b93d90ca6a10dccf2a90d2ffc4249d5af23d..c8bb383e53ada33982005dc58c9838b9bafe52ac#diff-b877bc8a3ab0aea3cfb3348d0a2cd3d4587aafaac8b7918f0671a03f4924031aR10 in governance/governance.h
(recent force-push broke it) + see UdjinM6@8f5f5b2
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.
I'm not really a fan of this change, I somewhat prefer more verbose naming, and I HATE that there is wallet/wallet.h and interfaces/wallet.h as I end up in the wrong file in my ide all the time due to it... But, I guess it's probably fine, so
utACK for squash merge
…ashpay#4475) * refactor: coinjoin/coinjoin-*[cpp/h] --> coinjoin/*.[cpp/h] * refactor: governance/governance-*[cpp/h] --> governance/*.[cpp/h] * refactor: masternode/masternode-*[cpp/h] --> masternode/*.[cpp/h] * fix linter Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com>
…ashpay#4475) * refactor: coinjoin/coinjoin-*[cpp/h] --> coinjoin/*.[cpp/h] * refactor: governance/governance-*[cpp/h] --> governance/*.[cpp/h] * refactor: masternode/masternode-*[cpp/h] --> masternode/*.[cpp/h] * fix linter Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com>
…ashpay#4475) * refactor: coinjoin/coinjoin-*[cpp/h] --> coinjoin/*.[cpp/h] * refactor: governance/governance-*[cpp/h] --> governance/*.[cpp/h] * refactor: masternode/masternode-*[cpp/h] --> masternode/*.[cpp/h] * fix linter Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com>
Following the pattern established by #4197 (refactoring
util*.[cpp/h]
) and #1502 (refactoringrpc*.[cpp/h]
), changes have been made in the format specified by the commit message formasternode
,coinjoin
andgovernance
Deviations
coinjoin-client-options.*
has been renamed tooptions.*
activemasternode.*
has been renamed tonode.*
Why now?
This pull request in one in a series of pull requests meant to do some move-only refactoring and revert some rebrandings in preparation for accommodating alternative build systems
Why not now?
The changes are move-only and don't involve any logic changes but could potentially cause inconvenience towards maintainers of parallel pull requests
Additional Notes
llmq/quorum*
has not been touched as it's unsure whether to organize them asllmq/quorum/*.[cpp/h]
orllmq/*.[cpp/h]