From 184b1a43a472fe2b4e9daee4013dd785da4d8df1 Mon Sep 17 00:00:00 2001 From: thephez Date: Tue, 30 Oct 2018 14:29:18 -0400 Subject: [PATCH] Update 0.12.4 references to 0.13.0 --- .../rpcs/rpcs/decoderawtransaction.md | 2 +- .../devdoc/dash-core/rpcs/rpcs/dumpwallet.md | 6 ++-- .../devdoc/dash-core/rpcs/rpcs/getbalance.md | 2 +- .../dash-core/rpcs/rpcs/getgovernanceinfo.md | 2 +- .../dash-core/rpcs/rpcs/getrawtransaction.md | 2 +- .../rpcs/rpcs/getreceivedbyaddress.md | 2 +- .../dash-core/rpcs/rpcs/listaccounts.md | 2 +- .../rpcs/rpcs/listreceivedbyaccount.md | 2 +- .../rpcs/rpcs/listreceivedbyaddress.md | 2 +- .../devdoc/dash-core/rpcs/rpcs/masternode.md | 8 ++--- .../rpcs/rpcs/setprivatesendamount.md | 2 +- .../rpcs/rpcs/setprivatesendrounds.md | 2 +- _includes/devdoc/ref_p2p_networking.md | 2 +- _includes/helpers/vars.md | 6 ++-- _includes/layout/base/rpc-table.html | 32 +++++++++---------- scripts/create_empty_rpc_md.sh | 2 +- 16 files changed, 38 insertions(+), 38 deletions(-) diff --git a/_includes/devdoc/dash-core/rpcs/rpcs/decoderawtransaction.md b/_includes/devdoc/dash-core/rpcs/rpcs/decoderawtransaction.md index 3a387c8f..d93094cb 100644 --- a/_includes/devdoc/dash-core/rpcs/rpcs/decoderawtransaction.md +++ b/_includes/devdoc/dash-core/rpcs/rpcs/decoderawtransaction.md @@ -34,7 +34,7 @@ The `decoderawtransaction` RPC {{summary_decodeRawTransaction}} {{INCLUDE_DECODE_RAW_TRANSACTION}} {% enditemplate %} -*Example from Dash Core 0.12.4* +*Example from Dash Core 0.13.0* Decode a signed one-input, two-output transaction: diff --git a/_includes/devdoc/dash-core/rpcs/rpcs/dumpwallet.md b/_includes/devdoc/dash-core/rpcs/rpcs/dumpwallet.md index fe2a3be7..8e4161c2 100644 --- a/_includes/devdoc/dash-core/rpcs/rpcs/dumpwallet.md +++ b/_includes/devdoc/dash-core/rpcs/rpcs/dumpwallet.md @@ -72,7 +72,7 @@ The `dumpwallet` RPC {{summary_dumpWallet}} d: "Warning to not share the file due to it containing the private keys" {% 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. @@ -85,7 +85,7 @@ Results: {% highlight json %} { - "dashcoreversion": "v0.12.4.0", + "dashcoreversion": "v0.13.0.0", "lastblockheight": 250186, "lastblockhash": "0000000000a82fb1890de5da4740d0671910a436fe6fc4503a3e553adef073b4", "lastblocktime": "2018-10-23T12:50:44Z", @@ -98,7 +98,7 @@ Results: Results (the first 10 lines of the file): {% 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 # * Best block at time of backup was 250186 (0000000000a82fb1890de5da4740d0671910a436fe6fc4503a3e553adef073b4), # mined on 2018-10-23T12:50:44Z diff --git a/_includes/devdoc/dash-core/rpcs/rpcs/getbalance.md b/_includes/devdoc/dash-core/rpcs/rpcs/getbalance.md index 45d19f56..501ae130 100644 --- a/_includes/devdoc/dash-core/rpcs/rpcs/getbalance.md +++ b/_includes/devdoc/dash-core/rpcs/rpcs/getbalance.md @@ -55,7 +55,7 @@ The `getbalance` RPC {{summary_getBalance}} {% 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 at least five confirmations and those spent to watch-only addresses in diff --git a/_includes/devdoc/dash-core/rpcs/rpcs/getgovernanceinfo.md b/_includes/devdoc/dash-core/rpcs/rpcs/getgovernanceinfo.md index 7cd5ddc2..fb92d8d9 100644 --- a/_includes/devdoc/dash-core/rpcs/rpcs/getgovernanceinfo.md +++ b/_includes/devdoc/dash-core/rpcs/rpcs/getgovernanceinfo.md @@ -62,7 +62,7 @@ The `getgovernanceinfo` RPC {{summary_getGovernanceInfo}} {% enditemplate %} -*Example from Dash Core 0.12.4.0* +*Example from Dash Core 0.13.0.0* {% highlight bash %} dash-cli -testnet getgovernanceinfo diff --git a/_includes/devdoc/dash-core/rpcs/rpcs/getrawtransaction.md b/_includes/devdoc/dash-core/rpcs/rpcs/getrawtransaction.md index 2e6df596..dcae467d 100644 --- a/_includes/devdoc/dash-core/rpcs/rpcs/getrawtransaction.md +++ b/_includes/devdoc/dash-core/rpcs/rpcs/getrawtransaction.md @@ -102,7 +102,7 @@ deprecated. {% enditemplate %} -*Examples from Dash Core 0.12.4* +*Examples from Dash Core 0.13.0* A transaction in serialized transaction format: diff --git a/_includes/devdoc/dash-core/rpcs/rpcs/getreceivedbyaddress.md b/_includes/devdoc/dash-core/rpcs/rpcs/getreceivedbyaddress.md index e15e9c76..502c2267 100644 --- a/_includes/devdoc/dash-core/rpcs/rpcs/getreceivedbyaddress.md +++ b/_includes/devdoc/dash-core/rpcs/rpcs/getreceivedbyaddress.md @@ -51,7 +51,7 @@ The `getreceivedbyaddress` RPC {{summary_getReceivedByAddress}} {% 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 transactions with six or more confirmations (ignore InstantSend locked transactions): diff --git a/_includes/devdoc/dash-core/rpcs/rpcs/listaccounts.md b/_includes/devdoc/dash-core/rpcs/rpcs/listaccounts.md index 8c292c07..4cc6ffce 100644 --- a/_includes/devdoc/dash-core/rpcs/rpcs/listaccounts.md +++ b/_includes/devdoc/dash-core/rpcs/rpcs/listaccounts.md @@ -53,7 +53,7 @@ Core. Use the RPCs listed in the See Also subsection below instead. {% 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 included. Add the balance of InstantSend locked transactions also. diff --git a/_includes/devdoc/dash-core/rpcs/rpcs/listreceivedbyaccount.md b/_includes/devdoc/dash-core/rpcs/rpcs/listreceivedbyaccount.md index 360cc0d4..3b0edb90 100644 --- a/_includes/devdoc/dash-core/rpcs/rpcs/listreceivedbyaccount.md +++ b/_includes/devdoc/dash-core/rpcs/rpcs/listreceivedbyaccount.md @@ -88,7 +88,7 @@ Core. Use the RPCs listed in the See Also subsection below instead. {% 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 which have been confirmed at least six times and InstantSend locked transactions: diff --git a/_includes/devdoc/dash-core/rpcs/rpcs/listreceivedbyaddress.md b/_includes/devdoc/dash-core/rpcs/rpcs/listreceivedbyaddress.md index 79635549..fc67242e 100644 --- a/_includes/devdoc/dash-core/rpcs/rpcs/listreceivedbyaddress.md +++ b/_includes/devdoc/dash-core/rpcs/rpcs/listreceivedbyaddress.md @@ -100,7 +100,7 @@ The `listreceivedbyaddress` RPC {{summary_listReceivedByAddress}} {% 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 watch-only addresses. Also include the balance from InstantSend locked transactions: diff --git a/_includes/devdoc/dash-core/rpcs/rpcs/masternode.md b/_includes/devdoc/dash-core/rpcs/rpcs/masternode.md index ac0c5b0d..83cb1f06 100644 --- a/_includes/devdoc/dash-core/rpcs/rpcs/masternode.md +++ b/_includes/devdoc/dash-core/rpcs/rpcs/masternode.md @@ -56,7 +56,7 @@ The `masternode check` RPC forces a check of all masternodes and rem {% enditemplate %} -*Example from Dash Core 0.12.4* +*Example from Dash Core 0.13.0* {% highlight bash %} dash-cli -testnet masternode check @@ -307,7 +307,7 @@ The `masternode genkey` RPC generates a new masternodeprivkey. - n: "Compressed" t: "bool" p: "Optional
(0 or 1)" - d: "*Added in Dash Core 0.12.4*

If set to `true`, generates a compressed private key (default: false)" + d: "*Added in Dash Core 0.13.0*

If set to `true`, generates a compressed private key (default: false)" {% enditemplate %} @@ -321,7 +321,7 @@ The `masternode genkey` RPC generates a new masternodeprivkey. {% enditemplate %} -*Example from Dash Core 0.12.4* +*Example from Dash Core 0.13.0* {% highlight bash %} dash-cli -testnet masternode genkey @@ -332,7 +332,7 @@ Result: 92Mn5DQpnBHjFPbS3ZXcX3EdhuET18u3eXTTtVsdDzdcAMaXqtG {% endhighlight %} -*Example from Dash Core 0.12.4 (compressed key)* +*Example from Dash Core 0.13.0 (compressed key)* {% highlight bash %} dash-cli -testnet masternode genkey true diff --git a/_includes/devdoc/dash-core/rpcs/rpcs/setprivatesendamount.md b/_includes/devdoc/dash-core/rpcs/rpcs/setprivatesendamount.md index b5280eca..49c4e318 100644 --- a/_includes/devdoc/dash-core/rpcs/rpcs/setprivatesendamount.md +++ b/_includes/devdoc/dash-core/rpcs/rpcs/setprivatesendamount.md @@ -27,7 +27,7 @@ The `setprivatesendamount` RPC {{summary_setPrivateSendAmount}} *Result---`null` on success* -*Example from Dash Core 0.12.4* +*Example from Dash Core 0.13.0* {% highlight bash %} dash-cli -testnet setprivatesendamount 2000 diff --git a/_includes/devdoc/dash-core/rpcs/rpcs/setprivatesendrounds.md b/_includes/devdoc/dash-core/rpcs/rpcs/setprivatesendrounds.md index f40852ad..7e18bd8b 100644 --- a/_includes/devdoc/dash-core/rpcs/rpcs/setprivatesendrounds.md +++ b/_includes/devdoc/dash-core/rpcs/rpcs/setprivatesendrounds.md @@ -27,7 +27,7 @@ The `setprivatesendrounds` RPC {{summary_setPrivateSendRounds}} *Result---`null` on success* -*Example from Dash Core 0.12.4* +*Example from Dash Core 0.13.0* {% highlight bash %} dash-cli -testnet setprivatesendrounds 4 diff --git a/_includes/devdoc/ref_p2p_networking.md b/_includes/devdoc/ref_p2p_networking.md index 39f1e5bf..3ecb4cdf 100644 --- a/_includes/devdoc/ref_p2p_networking.md +++ b/_includes/devdoc/ref_p2p_networking.md @@ -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, 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 |---------|------------------------------------|-------------- diff --git a/_includes/helpers/vars.md b/_includes/helpers/vars.md index f36af4e5..60624cbf 100644 --- a/_includes/helpers/vars.md +++ b/_includes/helpers/vars.md @@ -160,7 +160,7 @@ NOT IN DASH - n: "{{DEPTH}} →
`type`" t: "number (int)" p: "Required
(exactly 1)" - d: "*Added in Dash Core 0.12.4.0*

The transaction format type" + d: "*Added in Dash Core 0.13.0.0*

The transaction format type" - n: "{{DEPTH}} →
`locktime`" t: "number (int)" @@ -303,12 +303,12 @@ NOT IN DASH - n: "{{DEPTH}} →
`extraPayloadSize`" t: "number (int)" p: "Optional
(0 or 1)" - d: "*Added in Dash Core 0.12.4.0*

Size of the DIP2 extra payload. Only present if it's a DIP2 special transaction" + d: "*Added in Dash Core 0.13.0.0*

Size of the DIP2 extra payload. Only present if it's a DIP2 special transaction" - n: "{{DEPTH}} →
`extraPayload`" t: "string (hex)" p: "Optional
(0 or 1)" - d: "*Added in Dash Core 0.12.4.0*

Hex encoded DIP2 extra payload data. Only present if it's a DIP2 special transaction" + d: "*Added in Dash Core 0.13.0.0*

Hex encoded DIP2 extra payload data. Only present if it's a DIP2 special transaction" {% 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" %} diff --git a/_includes/layout/base/rpc-table.html b/_includes/layout/base/rpc-table.html index 2c620973..04497fe7 100644 --- a/_includes/layout/base/rpc-table.html +++ b/_includes/layout/base/rpc-table.html @@ -227,7 +227,7 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header:: Dash GetGovernanceInfo Y - Updated in 0.12.4.0 + Updated in 0.13.0.0 Dash @@ -251,7 +251,7 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header:: Dash Masternode Y - Updated in 0.12.4.0 + Updated in 0.13.0.0 Dash @@ -323,7 +323,7 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header:: Mining GetBlockTemplate Y - Updated in 0.12.4.0 + Updated in 0.13.0.0 Mining @@ -431,7 +431,7 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header:: Rawtransactions DecodeRawTransaction Y - Updated in 0.12.4.0 + Updated in 0.13.0.0 Rawtransactions @@ -449,7 +449,7 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header:: Rawtransactions GetRawTransaction Y - Updated in 0.12.4.0 + Updated in 0.13.0.0 Rawtransactions @@ -575,7 +575,7 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header:: Wallet DumpWallet Y - Updated in 0.12.4.0 + Updated in 0.13.0.0 Wallet @@ -605,7 +605,7 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header:: Wallet GetBalance Y - Updated in 0.12.4.0 + Updated in 0.13.0.0 Wallet @@ -623,13 +623,13 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header:: Wallet GetReceivedByAccount Y - Updated in 0.12.4.0 + Updated in 0.13.0.0 Wallet GetReceivedByAddress Y - Updated in 0.12.4.0 + Updated in 0.13.0.0 Wallet @@ -713,7 +713,7 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header:: Wallet ListAccounts Y - Updated in 0.12.4.0 + Updated in 0.13.0.0 Wallet @@ -737,13 +737,13 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header:: Wallet ListReceivedByAccount Y - Updated in 0.12.4.0 + Updated in 0.13.0.0 Wallet ListReceivedByAddress Y - Updated in 0.12.4.0 + Updated in 0.13.0.0 Wallet @@ -785,13 +785,13 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header:: Wallet SendFrom Y - Updated in 0.12.4.0 + Updated in 0.13.0.0 Wallet SendMany Y - Updated in 0.12.4.0 + Updated in 0.13.0.0 Wallet @@ -809,13 +809,13 @@ th.tg-sort-header::-moz-selection { background:transparent; }th.tg-sort-header:: Wallet SetPrivateSendAmount Y - Added in 0.12.4.0 + Added in 0.13.0.0 Wallet SetPrivateSendRounds Y - Added in 0.12.4.0 + Added in 0.13.0.0 Wallet diff --git a/scripts/create_empty_rpc_md.sh b/scripts/create_empty_rpc_md.sh index 7cab519b..483596e1 100755 --- a/scripts/create_empty_rpc_md.sh +++ b/scripts/create_empty_rpc_md.sh @@ -34,7 +34,7 @@ if [ "$PARAMCOUNT" == 1 ]; then echo "*Result---RESULT DESCRIPTION*" >> $FILENAME echo "" >> $FILENAME - echo "*Example from Dash Core 0.12.3*" >> $FILENAME + echo "*Example from Dash Core 0.13.0*" >> $FILENAME echo "" >> $FILENAME # Example