Update 0.12.4 references to 0.13.0

This commit is contained in:
thephez 2018-10-30 14:29:18 -04:00
parent bf73fcfc64
commit 184b1a43a4
No known key found for this signature in database
GPG key ID: BBC8A06DBE236099
16 changed files with 38 additions and 38 deletions

View file

@ -34,7 +34,7 @@ The `decoderawtransaction` RPC {{summary_decodeRawTransaction}}
{{INCLUDE_DECODE_RAW_TRANSACTION}} {{INCLUDE_DECODE_RAW_TRANSACTION}}
{% enditemplate %} {% enditemplate %}
*Example from Dash Core 0.12.4* *Example from Dash Core 0.13.0*
Decode a signed one-input, two-output transaction: Decode a signed one-input, two-output transaction:

View file

@ -72,7 +72,7 @@ The `dumpwallet` RPC {{summary_dumpWallet}}
d: "Warning to not share the file due to it containing the private keys" d: "Warning to not share the file due to it containing the private keys"
{% enditemplate %} {% enditemplate %}
*Example from Dash Core 0.12.4* *Example from Dash Core 0.13.0*
Create a wallet dump and then print its first 10 lines. Create a wallet dump and then print its first 10 lines.
@ -85,7 +85,7 @@ Results:
{% highlight json %} {% highlight json %}
{ {
"dashcoreversion": "v0.12.4.0", "dashcoreversion": "v0.13.0.0",
"lastblockheight": 250186, "lastblockheight": 250186,
"lastblockhash": "0000000000a82fb1890de5da4740d0671910a436fe6fc4503a3e553adef073b4", "lastblockhash": "0000000000a82fb1890de5da4740d0671910a436fe6fc4503a3e553adef073b4",
"lastblocktime": "2018-10-23T12:50:44Z", "lastblocktime": "2018-10-23T12:50:44Z",
@ -98,7 +98,7 @@ Results:
Results (the first 10 lines of the file): Results (the first 10 lines of the file):
{% highlight bash %} {% highlight bash %}
# Wallet dump created by Dash Core v0.12.4.0 # Wallet dump created by Dash Core v0.13.0.0
# * Created on 2018-10-23T12:55:38Z # * Created on 2018-10-23T12:55:38Z
# * Best block at time of backup was 250186 (0000000000a82fb1890de5da4740d0671910a436fe6fc4503a3e553adef073b4), # * Best block at time of backup was 250186 (0000000000a82fb1890de5da4740d0671910a436fe6fc4503a3e553adef073b4),
# mined on 2018-10-23T12:50:44Z # mined on 2018-10-23T12:50:44Z

View file

@ -55,7 +55,7 @@ The `getbalance` RPC {{summary_getBalance}}
{% enditemplate %} {% enditemplate %}
*Examples from Dash Core 0.12.4* *Examples from Dash Core 0.13.0*
Get the balance for the main ("") account, including transactions with Get the balance for the main ("") account, including transactions with
at least five confirmations and those spent to watch-only addresses in at least five confirmations and those spent to watch-only addresses in

View file

@ -62,7 +62,7 @@ The `getgovernanceinfo` RPC {{summary_getGovernanceInfo}}
{% enditemplate %} {% enditemplate %}
*Example from Dash Core 0.12.4.0* *Example from Dash Core 0.13.0.0*
{% highlight bash %} {% highlight bash %}
dash-cli -testnet getgovernanceinfo dash-cli -testnet getgovernanceinfo

View file

@ -102,7 +102,7 @@ deprecated.
{% enditemplate %} {% enditemplate %}
*Examples from Dash Core 0.12.4* *Examples from Dash Core 0.13.0*
A transaction in serialized transaction format: A transaction in serialized transaction format:

View file

@ -51,7 +51,7 @@ The `getreceivedbyaddress` RPC {{summary_getReceivedByAddress}}
{% enditemplate %} {% enditemplate %}
*Example from Dash Core 0.12.4* *Example from Dash Core 0.13.0*
Get the dash received for a particular address, only counting Get the dash received for a particular address, only counting
transactions with six or more confirmations (ignore InstantSend locked transactions): transactions with six or more confirmations (ignore InstantSend locked transactions):

View file

@ -53,7 +53,7 @@ Core. Use the RPCs listed in the See Also subsection below instead.
{% enditemplate %} {% enditemplate %}
*Example from Dash Core 0.12.4* *Example from Dash Core 0.13.0*
Display account balances with one confirmation and watch-only addresses Display account balances with one confirmation and watch-only addresses
included. Add the balance of InstantSend locked transactions also. included. Add the balance of InstantSend locked transactions also.

View file

@ -88,7 +88,7 @@ Core. Use the RPCs listed in the See Also subsection below instead.
{% enditemplate %} {% enditemplate %}
*Example from Dash Core 0.12.4* *Example from Dash Core 0.13.0*
Get the balances for all non-empty accounts, including transactions Get the balances for all non-empty accounts, including transactions
which have been confirmed at least six times and InstantSend locked transactions: which have been confirmed at least six times and InstantSend locked transactions:

View file

@ -100,7 +100,7 @@ The `listreceivedbyaddress` RPC {{summary_listReceivedByAddress}}
{% enditemplate %} {% enditemplate %}
*Example from Dash Core 0.12.4* *Example from Dash Core 0.13.0*
List addresses with balances confirmed by at least six blocks, including List addresses with balances confirmed by at least six blocks, including
watch-only addresses. Also include the balance from InstantSend locked transactions: watch-only addresses. Also include the balance from InstantSend locked transactions:

View file

@ -56,7 +56,7 @@ The `masternode<!--noref--> check` RPC forces a check of all masternodes and rem
{% enditemplate %} {% enditemplate %}
*Example from Dash Core 0.12.4* *Example from Dash Core 0.13.0*
{% highlight bash %} {% highlight bash %}
dash-cli -testnet masternode check dash-cli -testnet masternode check
@ -307,7 +307,7 @@ The `masternode<!--noref--> genkey` RPC generates a new masternodeprivkey.
- n: "Compressed" - n: "Compressed"
t: "bool" t: "bool"
p: "Optional<br>(0 or 1)" p: "Optional<br>(0 or 1)"
d: "*Added in Dash Core 0.12.4*<br><br>If set to `true`, generates a compressed private key (default: false)" d: "*Added in Dash Core 0.13.0*<br><br>If set to `true`, generates a compressed private key (default: false)"
{% enditemplate %} {% enditemplate %}
@ -321,7 +321,7 @@ The `masternode<!--noref--> genkey` RPC generates a new masternodeprivkey.
{% enditemplate %} {% enditemplate %}
*Example from Dash Core 0.12.4* *Example from Dash Core 0.13.0*
{% highlight bash %} {% highlight bash %}
dash-cli -testnet masternode genkey dash-cli -testnet masternode genkey
@ -332,7 +332,7 @@ Result:
92Mn5DQpnBHjFPbS3ZXcX3EdhuET18u3eXTTtVsdDzdcAMaXqtG 92Mn5DQpnBHjFPbS3ZXcX3EdhuET18u3eXTTtVsdDzdcAMaXqtG
{% endhighlight %} {% endhighlight %}
*Example from Dash Core 0.12.4 (compressed key)* *Example from Dash Core 0.13.0 (compressed key)*
{% highlight bash %} {% highlight bash %}
dash-cli -testnet masternode genkey true dash-cli -testnet masternode genkey true

View file

@ -27,7 +27,7 @@ The `setprivatesendamount` RPC {{summary_setPrivateSendAmount}}
*Result---`null` on success* *Result---`null` on success*
*Example from Dash Core 0.12.4* *Example from Dash Core 0.13.0*
{% highlight bash %} {% highlight bash %}
dash-cli -testnet setprivatesendamount 2000 dash-cli -testnet setprivatesendamount 2000

View file

@ -27,7 +27,7 @@ The `setprivatesendrounds` RPC {{summary_setPrivateSendRounds}}
*Result---`null` on success* *Result---`null` on success*
*Example from Dash Core 0.12.4* *Example from Dash Core 0.13.0*
{% highlight bash %} {% highlight bash %}
dash-cli -testnet setprivatesendrounds 4 dash-cli -testnet setprivatesendrounds 4

View file

@ -66,7 +66,7 @@ with the most recent versions listed first. (If you know of a protocol
version that implemented a major change but which is not listed here, version that implemented a major change but which is not listed here,
please [open an issue][docs issue].) please [open an issue][docs issue].)
As of Dash Core 0.12.3.0, the most recent protocol version is 70210. As of Dash Core 0.13.0.0, the most recent protocol version is 70211.
| Version | Initial Release | Major Changes | Version | Initial Release | Major Changes
|---------|------------------------------------|-------------- |---------|------------------------------------|--------------

View file

@ -160,7 +160,7 @@ NOT IN DASH
- n: "{{DEPTH}} →<br>`type`" - n: "{{DEPTH}} →<br>`type`"
t: "number (int)" t: "number (int)"
p: "Required<br>(exactly 1)" p: "Required<br>(exactly 1)"
d: "*Added in Dash Core 0.12.4.0*<br><br>The transaction format type" d: "*Added in Dash Core 0.13.0.0*<br><br>The transaction format type"
- n: "{{DEPTH}} →<br>`locktime`" - n: "{{DEPTH}} →<br>`locktime`"
t: "number (int)" t: "number (int)"
@ -303,12 +303,12 @@ NOT IN DASH
- n: "{{DEPTH}} →<br>`extraPayloadSize`" - n: "{{DEPTH}} →<br>`extraPayloadSize`"
t: "number (int)" t: "number (int)"
p: "Optional<br>(0 or 1)" p: "Optional<br>(0 or 1)"
d: "*Added in Dash Core 0.12.4.0*<br><br>Size of the DIP2 extra payload. Only present if it's a DIP2 special transaction" d: "*Added in Dash Core 0.13.0.0*<br><br>Size of the DIP2 extra payload. Only present if it's a DIP2 special transaction"
- n: "{{DEPTH}} →<br>`extraPayload`" - n: "{{DEPTH}} →<br>`extraPayload`"
t: "string (hex)" t: "string (hex)"
p: "Optional<br>(0 or 1)" p: "Optional<br>(0 or 1)"
d: "*Added in Dash Core 0.12.4.0*<br><br>Hex encoded DIP2 extra payload data. Only present if it's a DIP2 special transaction" d: "*Added in Dash Core 0.13.0.0*<br><br>Hex encoded DIP2 extra payload data. Only present if it's a DIP2 special transaction"
{% endcapture %} {% endcapture %}
{% assign INCLUDE_WALLET_UNLOCKED="If the wallet has been encrypted either through the GUI or with the `encryptwallet` RPC, it must first be unlocked with the `walletpassphrase` RPC" %} {% assign INCLUDE_WALLET_UNLOCKED="If the wallet has been encrypted either through the GUI or with the `encryptwallet` RPC, it must first be unlocked with the `walletpassphrase` RPC" %}

View file

@ -227,7 +227,7 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header::
<td class="tg-b7b8">Dash</td> <td class="tg-b7b8">Dash</td>
<td class="tg-b7b8"><a href="#getgovernanceinfo">GetGovernanceInfo</a></td> <td class="tg-b7b8"><a href="#getgovernanceinfo">GetGovernanceInfo</a></td>
<td class="tg-dzk6">Y</td> <td class="tg-dzk6">Y</td>
<td class="tg-dzk6">Updated in 0.12.4.0</td> <td class="tg-dzk6">Updated in 0.13.0.0</td>
</tr> </tr>
<tr> <tr>
<td class="tg-yw4l">Dash</td> <td class="tg-yw4l">Dash</td>
@ -251,7 +251,7 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header::
<td class="tg-b7b8">Dash</td> <td class="tg-b7b8">Dash</td>
<td class="tg-b7b8"><a href="#masternode">Masternode</a></td> <td class="tg-b7b8"><a href="#masternode">Masternode</a></td>
<td class="tg-dzk6">Y</td> <td class="tg-dzk6">Y</td>
<td class="tg-dzk6">Updated in 0.12.4.0</td> <td class="tg-dzk6">Updated in 0.13.0.0</td>
</tr> </tr>
<tr> <tr>
<td class="tg-yw4l">Dash</td> <td class="tg-yw4l">Dash</td>
@ -323,7 +323,7 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header::
<td class="tg-b7b8">Mining</td> <td class="tg-b7b8">Mining</td>
<td class="tg-b7b8"><a href="#getblocktemplate">GetBlockTemplate</a></td> <td class="tg-b7b8"><a href="#getblocktemplate">GetBlockTemplate</a></td>
<td class="tg-dzk6">Y</td> <td class="tg-dzk6">Y</td>
<td class="tg-dzk6">Updated in 0.12.4.0</td> <td class="tg-dzk6">Updated in 0.13.0.0</td>
</tr> </tr>
<tr> <tr>
<td class="tg-yw4l">Mining</td> <td class="tg-yw4l">Mining</td>
@ -431,7 +431,7 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header::
<td class="tg-b7b8">Rawtransactions</td> <td class="tg-b7b8">Rawtransactions</td>
<td class="tg-b7b8"><a href="#decoderawtransaction">DecodeRawTransaction</a></td> <td class="tg-b7b8"><a href="#decoderawtransaction">DecodeRawTransaction</a></td>
<td class="tg-dzk6">Y</td> <td class="tg-dzk6">Y</td>
<td class="tg-dzk6">Updated in 0.12.4.0</td> <td class="tg-dzk6">Updated in 0.13.0.0</td>
</tr> </tr>
<tr> <tr>
<td class="tg-yw4l">Rawtransactions</td> <td class="tg-yw4l">Rawtransactions</td>
@ -449,7 +449,7 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header::
<td class="tg-yw4l">Rawtransactions</td> <td class="tg-yw4l">Rawtransactions</td>
<td class="tg-yw4l"><a href="#getrawtransaction">GetRawTransaction</a></td> <td class="tg-yw4l"><a href="#getrawtransaction">GetRawTransaction</a></td>
<td class="tg-baqh">Y</td> <td class="tg-baqh">Y</td>
<td class="tg-baqh">Updated in 0.12.4.0</td> <td class="tg-baqh">Updated in 0.13.0.0</td>
</tr> </tr>
<tr> <tr>
<td class="tg-b7b8">Rawtransactions</td> <td class="tg-b7b8">Rawtransactions</td>
@ -575,7 +575,7 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header::
<td class="tg-yw4l">Wallet</td> <td class="tg-yw4l">Wallet</td>
<td class="tg-yw4l"><a href="#dumpwallet">DumpWallet</a></td> <td class="tg-yw4l"><a href="#dumpwallet">DumpWallet</a></td>
<td class="tg-baqh">Y</td> <td class="tg-baqh">Y</td>
<td class="tg-baqh">Updated in 0.12.4.0</td> <td class="tg-baqh">Updated in 0.13.0.0</td>
</tr> </tr>
<tr> <tr>
<td class="tg-b7b8">Wallet</td> <td class="tg-b7b8">Wallet</td>
@ -605,7 +605,7 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header::
<td class="tg-b7b8">Wallet</td> <td class="tg-b7b8">Wallet</td>
<td class="tg-b7b8"><a href="#getbalance">GetBalance</a></td> <td class="tg-b7b8"><a href="#getbalance">GetBalance</a></td>
<td class="tg-dzk6">Y</td> <td class="tg-dzk6">Y</td>
<td class="tg-dzk6">Updated in 0.12.4.0</td> <td class="tg-dzk6">Updated in 0.13.0.0</td>
</tr> </tr>
<tr> <tr>
<td class="tg-yw4l">Wallet</td> <td class="tg-yw4l">Wallet</td>
@ -623,13 +623,13 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header::
<td class="tg-yw4l">Wallet</td> <td class="tg-yw4l">Wallet</td>
<td class="tg-yw4l"><a href="#getreceivedbyaccount">GetReceivedByAccount</a></td> <td class="tg-yw4l"><a href="#getreceivedbyaccount">GetReceivedByAccount</a></td>
<td class="tg-baqh">Y</td> <td class="tg-baqh">Y</td>
<td class="tg-baqh">Updated in 0.12.4.0</td> <td class="tg-baqh">Updated in 0.13.0.0</td>
</tr> </tr>
<tr> <tr>
<td class="tg-b7b8">Wallet</td> <td class="tg-b7b8">Wallet</td>
<td class="tg-b7b8"><a href="#getreceivedbyaddress">GetReceivedByAddress</a></td> <td class="tg-b7b8"><a href="#getreceivedbyaddress">GetReceivedByAddress</a></td>
<td class="tg-dzk6">Y</td> <td class="tg-dzk6">Y</td>
<td class="tg-dzk6">Updated in 0.12.4.0</td> <td class="tg-dzk6">Updated in 0.13.0.0</td>
</tr> </tr>
<tr> <tr>
<td class="tg-yw4l">Wallet</td> <td class="tg-yw4l">Wallet</td>
@ -713,7 +713,7 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header::
<td class="tg-b7b8">Wallet</td> <td class="tg-b7b8">Wallet</td>
<td class="tg-b7b8"><a href="#listaccounts">ListAccounts</a></td> <td class="tg-b7b8"><a href="#listaccounts">ListAccounts</a></td>
<td class="tg-dzk6">Y</td> <td class="tg-dzk6">Y</td>
<td class="tg-dzk6">Updated in 0.12.4.0</td> <td class="tg-dzk6">Updated in 0.13.0.0</td>
</tr> </tr>
<tr> <tr>
<td class="tg-yw4l">Wallet</td> <td class="tg-yw4l">Wallet</td>
@ -737,13 +737,13 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header::
<td class="tg-yw4l">Wallet</td> <td class="tg-yw4l">Wallet</td>
<td class="tg-yw4l"><a href="#listreceivedbyaccount">ListReceivedByAccount</a></td> <td class="tg-yw4l"><a href="#listreceivedbyaccount">ListReceivedByAccount</a></td>
<td class="tg-baqh">Y</td> <td class="tg-baqh">Y</td>
<td class="tg-baqh">Updated in 0.12.4.0</td> <td class="tg-baqh">Updated in 0.13.0.0</td>
</tr> </tr>
<tr> <tr>
<td class="tg-b7b8">Wallet</td> <td class="tg-b7b8">Wallet</td>
<td class="tg-b7b8"><a href="#listreceivedbyaddress">ListReceivedByAddress</a></td> <td class="tg-b7b8"><a href="#listreceivedbyaddress">ListReceivedByAddress</a></td>
<td class="tg-dzk6">Y</td> <td class="tg-dzk6">Y</td>
<td class="tg-dzk6">Updated in 0.12.4.0</td> <td class="tg-dzk6">Updated in 0.13.0.0</td>
</tr> </tr>
<tr> <tr>
<td class="tg-yw4l">Wallet</td> <td class="tg-yw4l">Wallet</td>
@ -785,13 +785,13 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header::
<td class="tg-yw4l">Wallet</td> <td class="tg-yw4l">Wallet</td>
<td class="tg-yw4l"><a href="#sendfrom">SendFrom</a></td> <td class="tg-yw4l"><a href="#sendfrom">SendFrom</a></td>
<td class="tg-baqh">Y</td> <td class="tg-baqh">Y</td>
<td class="tg-baqh">Updated in 0.12.4.0</td> <td class="tg-baqh">Updated in 0.13.0.0</td>
</tr> </tr>
<tr> <tr>
<td class="tg-b7b8">Wallet</td> <td class="tg-b7b8">Wallet</td>
<td class="tg-b7b8"><a href="#sendmany">SendMany</a></td> <td class="tg-b7b8"><a href="#sendmany">SendMany</a></td>
<td class="tg-dzk6">Y</td> <td class="tg-dzk6">Y</td>
<td class="tg-dzk6">Updated in 0.12.4.0</td> <td class="tg-dzk6">Updated in 0.13.0.0</td>
</tr> </tr>
<tr> <tr>
<td class="tg-yw4l">Wallet</td> <td class="tg-yw4l">Wallet</td>
@ -809,13 +809,13 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header::
<td class="tg-yw4l">Wallet</td> <td class="tg-yw4l">Wallet</td>
<td class="tg-yw4l"><a href="#setprivatesendamount">SetPrivateSendAmount</a></td> <td class="tg-yw4l"><a href="#setprivatesendamount">SetPrivateSendAmount</a></td>
<td class="tg-baqh">Y</td> <td class="tg-baqh">Y</td>
<td class="tg-baqh">Added in 0.12.4.0</td> <td class="tg-baqh">Added in 0.13.0.0</td>
</tr> </tr>
<tr> <tr>
<td class="tg-b7b8">Wallet</td> <td class="tg-b7b8">Wallet</td>
<td class="tg-b7b8"><a href="#setprivatesendrounds">SetPrivateSendRounds</a></td> <td class="tg-b7b8"><a href="#setprivatesendrounds">SetPrivateSendRounds</a></td>
<td class="tg-dzk6">Y</td> <td class="tg-dzk6">Y</td>
<td class="tg-dzk6">Added in 0.12.4.0</td> <td class="tg-dzk6">Added in 0.13.0.0</td>
</tr> </tr>
<tr> <tr>
<td class="tg-yw4l">Wallet</td> <td class="tg-yw4l">Wallet</td>

View file

@ -34,7 +34,7 @@ if [ "$PARAMCOUNT" == 1 ]; then
echo "*Result---RESULT DESCRIPTION*" >> $FILENAME echo "*Result---RESULT DESCRIPTION*" >> $FILENAME
echo "" >> $FILENAME echo "" >> $FILENAME
echo "*Example from Dash Core 0.12.3*" >> $FILENAME echo "*Example from Dash Core 0.13.0*" >> $FILENAME
echo "" >> $FILENAME echo "" >> $FILENAME
# Example # Example