Fixes #32698
Problem Inconsistent initialization of class,function, method identifiers and structs. Spread throughout the codebase is screaming / acronym caps.
Solution
- Add a rule in the developer notes to use consistent camelcase naming convention.
- A class names like
JSONRPCRequest
should beJsonRpcRequest
.
all existing tests pass.