@@ -66,6 +66,11 @@ tool to clean up patches automatically before submission.
6666    on the same line as the ` if ` , without braces. In every other case,
6767    braces are required, and the ` then `  and ` else `  clauses must appear
6868    correctly indented on a new line.
69+   -  There's no hard limit on line width, but prefer to keep lines to <100
70+     characters if doing so does not decrease readability. Break up long
71+     function declarations over multiple lines using the Clang Format
72+     [ AlignAfterOpenBracket] ( https://clang.llvm.org/docs/ClangFormatStyleOptions.html ) 
73+     style option.
6974
7075-  ** Symbol naming conventions** . These are preferred in new code, but are not
7176required when doing so would need changes to significant pieces of existing
@@ -903,13 +908,6 @@ A few guidelines for introducing and reviewing new RPC interfaces:
903908
904909  -  * Rationale* : If not, the call can not be used with name-based arguments.
905910
906- -  Set okSafeMode in the RPC command table to a sensible value: safe mode is when the
907-   blockchain is regarded to be in a confused state, and the client deems it unsafe to
908-   do anything irreversible such as send. Anything that just queries should be permitted.
909- 
910-   -  * Rationale* : Troubleshooting a node in safe mode is difficult if half the
911-     RPCs don't work.
912- 
913911-  Add every non-string RPC argument ` (method, idx, name) `  to the table ` vRPCConvertParams `  in ` rpc/client.cpp ` .
914912
915913  -  * Rationale* : ` dash-cli `  and the GUI debug console use this table to determine how to
0 commit comments