From 980061a1d4915ce5f00dc1f470f1674628cb7c41 Mon Sep 17 00:00:00 2001 From: thephez Date: Mon, 4 Dec 2017 16:00:35 -0500 Subject: [PATCH] Dash RPCs - Add placeholders for masternode RPC sub-commands --- .../devdoc/dash-core/rpcs/rpcs/masternode.md | 70 ++++++++++++++++++- 1 file changed, 69 insertions(+), 1 deletion(-) diff --git a/_includes/devdoc/dash-core/rpcs/rpcs/masternode.md b/_includes/devdoc/dash-core/rpcs/rpcs/masternode.md index d5e5920d..d8611632 100644 --- a/_includes/devdoc/dash-core/rpcs/rpcs/masternode.md +++ b/_includes/devdoc/dash-core/rpcs/rpcs/masternode.md @@ -7,12 +7,80 @@ http://opensource.org/licenses/MIT. ##### Masternode {% include helpers/subhead-links.md %} -{% assign summary_masternode="" %} +{% assign summary_masternode="provides a set of commands for managing masternodes and displaying information about them." %} + + {% autocrossref %} The `masternode` RPC {{summary_masternode}} +###### Masternode Count + +The `masternode count` RPC prints the number of all known masternodes. + + +###### Masternode Current + +The `masternode current` RPC prints info on current masternode winner to be paid the next block (calculated locally). + + +###### Masternode Debug + +The `masternode debug` RPC prints masternode status. + + +###### Masternode Genkey + +The `masternode check` RPC generates a new masternodeprivkey. + + +###### Masternode Outputs + +The `masternode check` RPC prints masternode compatible outputs. + + +###### Masternode Start + +The `masternode check` RPC starts a local hot masternode configure in dash.conf. + + +###### Masternode Start-alias + +The `masternode check` starts a single remote masternode by assigned alias configured in masternode.conf. + + +###### Masternode Start-mode (all, missing, disabled) + +The `masternode check` RPC starts remote masternodes configured in masternode.conf (: 'all', 'missing', 'disabled'). + + +###### Masternode Status + +The `masternode check` RPC prints masternode status information. + + +###### Masternode List + +The `masternode check` prints a list of all known masternodes (see the `masternodelist` RPC for more info). + + +###### Masternode List-conf + +The `masternode check` RPC prints masternode.conf in JSON format. + + +###### Masternode Winner + +The `masternode check` RPC prints info on the next masternode winner to vote for. + + +###### Masternode Winners + +The `masternode check` RPC prints the list of masternode winners. + + + {% highlight bash %} dash-cli -testnet masternode {% endhighlight %}