Alternative to #16527
Just a rename, shouldn’t change functionality. Can be considered bik-shedding, but I believe the resulting code is more clear, less negations.
Rename related to #16770
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers.
Reviewers, this pull request conflicts with the following ones:
If you consider this pull request important, please also help to review the conflicting pull requests. Ideally, start with the one that should be merged first.
Since I seem to be alone in considering:
0 fRequireStandard = !gArgs.GetBoolArg("-acceptnonstdtxn", chainparams.DefaultAcceptNonstd());
much more readable than
0 fRequireStandard = !gArgs.GetBoolArg("-acceptnonstdtxn", !chainparams.RequireStandard());
just by having one less negation…closing
jtimon
DrahtBot
luke-jr
MarcoFalke
Labels
Refactoring