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
<!--e57a25ab6845829454e8d69fc972939a-->
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers.
<!--174a7506f384e20aa4161008e828411d-->
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.
Rebased
Don't think this is worth it.
Since I seem to be alone in considering:
fRequireStandard = !gArgs.GetBoolArg("-acceptnonstdtxn", chainparams.DefaultAcceptNonstd());
much more readable than
fRequireStandard = !gArgs.GetBoolArg("-acceptnonstdtxn", !chainparams.RequireStandard());
just by having one less negation...closing
I like it, but yeah shrug