diff options
| author | Matt Corallo <[email protected]> | 2017-07-16 19:29:08 -0400 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2017-09-06 16:10:04 -0700 |
| commit | aece8a4637f0d097e4be497bc82d59b37244d245 (patch) | |
| tree | 11567fae24b604ce4eb35f0704d51c7081e231ff /doc/developer-notes.md | |
| parent | Merge #11117: Prepare for non-Base58 addresses (diff) | |
| download | discoin-aece8a4637f0d097e4be497bc82d59b37244d245.tar.xz discoin-aece8a4637f0d097e4be497bc82d59b37244d245.zip | |
(finally) remove getinfo in favor of more module-specific infos
Diffstat (limited to 'doc/developer-notes.md')
| -rw-r--r-- | doc/developer-notes.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/developer-notes.md b/doc/developer-notes.md index 4694175a9..8fdae2534 100644 --- a/doc/developer-notes.md +++ b/doc/developer-notes.md @@ -613,8 +613,8 @@ A few guidelines for introducing and reviewing new RPC interfaces: from there. - A RPC method must either be a wallet method or a non-wallet method. Do not - introduce new methods such as `getinfo` and `signrawtransaction` that differ - in behavior based on presence of a wallet. + introduce new methods such as `signrawtransaction` that differ in behavior + based on presence of a wallet. - *Rationale*: as well as complicating the implementation and interfering with the introduction of multi-wallet, wallet and non-wallet code should be |