diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-09-07 01:31:39 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-09-07 01:31:52 +0200 |
| commit | 66a5b419eff57588f674ef7f409c389b71bebb22 (patch) | |
| tree | 5bb9ec205c60256210a732c5ed50a9bb9fee7bdb /doc | |
| parent | Merge #11259: Remove duplicate destination decoding (diff) | |
| parent | (finally) remove getinfo in favor of more module-specific infos (diff) | |
| download | discoin-66a5b419eff57588f674ef7f409c389b71bebb22.tar.xz discoin-66a5b419eff57588f674ef7f409c389b71bebb22.zip | |
Merge #10838: (finally) remove getinfo
aece8a463 (finally) remove getinfo in favor of more module-specific infos (Matt Corallo)
Pull request description:
I see no reason not to have done this in 0.13, let alone for 0.15.
Tree-SHA512: ed3e36f99e9cb90304089e5957ddfbf74141e3e77d850e498e9e45dd8bc1deb9fe36b3fec4c43243023268670a45808de3c23d660df76fa27db6688814c464a5
Diffstat (limited to 'doc')
| -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 |