diff options
| author | MarcoFalke <[email protected]> | 2018-11-13 12:34:43 -0500 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-11-13 12:34:50 -0500 |
| commit | c651265c934c84c683aa054f2a456b12acc41590 (patch) | |
| tree | 9d82e4adebddea54656bc53116d191a91c3882f2 /src/wallet/rpcdump.cpp | |
| parent | Merge #14705: travis: Avoid timeout on verify-commits check (diff) | |
| parent | rpc: Add RPCHelpMan for machine-generated help (diff) | |
| download | discoin-c651265c934c84c683aa054f2a456b12acc41590.tar.xz discoin-c651265c934c84c683aa054f2a456b12acc41590.zip | |
Merge #14530: Use RPCHelpMan to generate RPC doc strings
fa483e13b3 rpc: Add RPCHelpMan for machine-generated help (MarcoFalke)
fa0d36f712 rpc: Include rpc/util.h where needed for RPCHelpMan (MarcoFalke)
Pull request description:
This introduces a manager for the RPC help generation and demonstrates its use of it in some RPCs.
It is the first non-exhaustive step toward #14378 and I will create pull requests for the next steps after this one is merged.
Tree-SHA512: 86f68322443ff01cd964aaf0ebe186be63fbebe4c47676cf7a622cc2b5305fd176bd57badfd1bbf788a036812253eb0dead74ecc3b30664c3e0d9392b2248054
Diffstat (limited to 'src/wallet/rpcdump.cpp')
| -rw-r--r-- | src/wallet/rpcdump.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/wallet/rpcdump.cpp b/src/wallet/rpcdump.cpp index 7dbe0c846..a2b7adc5e 100644 --- a/src/wallet/rpcdump.cpp +++ b/src/wallet/rpcdump.cpp @@ -3,18 +3,19 @@ // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <chain.h> +#include <core_io.h> #include <interfaces/chain.h> #include <key_io.h> +#include <merkleblock.h> #include <rpc/server.h> -#include <validation.h> +#include <rpc/util.h> #include <script/script.h> #include <script/standard.h> #include <sync.h> #include <util/system.h> #include <util/time.h> +#include <validation.h> #include <wallet/wallet.h> -#include <merkleblock.h> -#include <core_io.h> #include <wallet/rpcwallet.h> |