diff --git a/_autocrossref.yaml b/_autocrossref.yaml index 9d2745ef..7fc85495 100644 --- a/_autocrossref.yaml +++ b/_autocrossref.yaml @@ -471,6 +471,8 @@ CVE-2012-2459: '`signmessagewithprivkey` RPC': rpc signmessagewithprivkey '`signrawtransaction`': rpc signrawtransaction '`signrawtransaction` RPC': rpc signrawtransaction +'`sentinelping`': rpc sentinelping +'`sentinelping` RPC': rpc sentinelping '`spork`': rpc spork '`spork` RPC': rpc spork '`stop`': rpc stop diff --git a/_config.yml b/_config.yml index 705bf263..a602ca78 100644 --- a/_config.yml +++ b/_config.yml @@ -370,6 +370,7 @@ devsearches: - 'SignMessage': "/en/developer-reference#signmessage" - 'SignMessageWithPrivKey': "/en/developer-reference#signmessagewithprivkey" - 'SignRawTransaction': "/en/developer-reference#signrawtransaction" + - 'SentinelPing': "/en/developer-reference#sentinelping" - 'Spork': "/en/developer-reference#spork-rpc" - 'Stop': "/en/developer-reference#stop" - 'SubmitBlock': "/en/developer-reference#submitblock" @@ -640,4 +641,4 @@ defaults: sass: style: compressed -theme: jekyll-theme-slate \ No newline at end of file +theme: jekyll-theme-slate diff --git a/_includes/devdoc/dash-core/rpcs/quick-reference.md b/_includes/devdoc/dash-core/rpcs/quick-reference.md index 0bbe9515..e58c1f45 100644 --- a/_includes/devdoc/dash-core/rpcs/quick-reference.md +++ b/_includes/devdoc/dash-core/rpcs/quick-reference.md @@ -6,7 +6,7 @@ http://opensource.org/licenses/MIT. #### Quick Reference {#rpc-quick-reference} {% include helpers/subhead-links.md %} - + {% comment %} Styling notes: use highly-visible style for upcoming changes (not yet released) and changes made in the last 6 months. Use less-visible @@ -140,6 +140,7 @@ These RPCs are all Dash-specific and not found in Bitcoin Core * [MasternodeList][rpc masternodelist]: {{summary_masternodeList}} * [MnSync][rpc mnsync]: {{summary_mnSync}} * [PrivateSend][rpc privatesend]: {{summary_privateSend}} +* [SentinelPing][rpc sentinelping]: {{summary_sentinelPing}} * [Spork][rpc spork]: {{summary_spork-rpc}} * [VoteRaw][rpc voteraw]: {{summary_voteRaw}} diff --git a/_includes/helpers/summaries.md b/_includes/helpers/summaries.md index c5f202c5..27fa6de5 100644 --- a/_includes/helpers/summaries.md +++ b/_includes/helpers/summaries.md @@ -117,6 +117,7 @@ This file is licensed under the terms of its source texts{%endcomment%} {% assign summary_sendMany="creates and broadcasts a transaction which sends outputs to multiple addresses." %} {% assign summary_sendRawTransaction="validates a transaction and broadcasts it to the peer-to-peer network." %} {% assign summary_sendToAddress="spends an amount to a given address." %} +{% assign summary_sentinelPing="sends a Sentinel Ping to the network." %} {% assign summary_setAccount="puts the specified address in the given account." %} {% assign summary_setBan="attempts add or remove a IP/Subnet from the banned list." %} {% assign summary_setGenerate="enables or disables hashing to attempt to find the next block." %} diff --git a/_includes/references.md b/_includes/references.md index e87c6dea..0b01bfe9 100644 --- a/_includes/references.md +++ b/_includes/references.md @@ -199,6 +199,7 @@ http://opensource.org/licenses/MIT. [rpc signmessage]: /en/developer-reference#signmessage [rpc signmessagewithprivkey]: /en/developer-reference#signmessagewithprivkey [rpc signrawtransaction]: /en/developer-reference#signrawtransaction +[rpc sentinelping]: /en/developer-reference#sentinelping [rpc spork]: /en/developer-reference#spork-rpc [rpc stop]: /en/developer-reference#stop [rpc submitblock]: /en/developer-reference#submitblock diff --git a/en/developer-reference.md b/en/developer-reference.md index 5790b57c..25ce305e 100644 --- a/en/developer-reference.md +++ b/en/developer-reference.md @@ -300,6 +300,8 @@ untrusted source. {% include devdoc/dash-core/rpcs/rpcs/signrawtransaction.md %} +{% include devdoc/dash-core/rpcs/rpcs/sentinelping.md %} + {% include devdoc/dash-core/rpcs/rpcs/spork.md %} {% include devdoc/dash-core/rpcs/rpcs/stop.md %} diff --git a/scripts/create_empty_rpc_md.sh b/scripts/create_empty_rpc_md.sh old mode 100644 new mode 100755 index ebff0739..1e7a78b2 --- a/scripts/create_empty_rpc_md.sh +++ b/scripts/create_empty_rpc_md.sh @@ -59,6 +59,7 @@ if [ "$PARAMCOUNT" == 1 ]; then echo " " echo "Next copy the created file ('$FILENAME') to ../_includes/devdoc/dash-core/rpcs/rpcs" + echo "Then update _autocrossref.yaml, _config.yaml, _includes/references.md, en/developer-reference.md, and rpcs/quick-reference.md" else echo "Incorrect number of parameters (Should be exactly 1)" echo "Usage: create_empty_rpc_md RPCNAME"