diff options
author | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2021-06-10 01:56:09 +0200 |
---|---|---|
committer | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2021-06-10 02:02:29 +0200 |
commit | 6780a095d8526a46c3c2b20a14831687e9fc2462 (patch) | |
tree | 95fe3852364552bb7998b7dbf76a08d3c7669916 /doc/developer-notes.md | |
parent | 46424e943c0b2e9d006ade6bfe3dc02f19c1d5c0 (diff) |
doc: remove obsolete `okSafeMode` RPC guideline from developer notes
Since the flag has been removed from the RPC command table in commit
ec6902d0ea2bbe75179684fc71849d5e34647a14 (PR #11179), this guideline
is not relevant anymore and can be removed.
Diffstat (limited to 'doc/developer-notes.md')
-rw-r--r-- | doc/developer-notes.md | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/doc/developer-notes.md b/doc/developer-notes.md index 2130332eec..c3a63b3523 100644 --- a/doc/developer-notes.md +++ b/doc/developer-notes.md @@ -1160,13 +1160,6 @@ A few guidelines for introducing and reviewing new RPC interfaces: - *Rationale*: If not, the call can not be used with name-based arguments. -- Set okSafeMode in the RPC command table to a sensible value: safe mode is when the - blockchain is regarded to be in a confused state, and the client deems it unsafe to - do anything irreversible such as send. Anything that just queries should be permitted. - - - *Rationale*: Troubleshooting a node in safe mode is difficult if half the - RPCs don't work. - - Add every non-string RPC argument `(method, idx, name)` to the table `vRPCConvertParams` in `rpc/client.cpp`. - *Rationale*: `bitcoin-cli` and the GUI debug console use this table to determine how to |