mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 09:46:12 +00:00
Several small fixes
This commit is contained in:
parent
b89414d378
commit
5d3cff53ee
5 changed files with 9 additions and 12 deletions
|
@ -11,7 +11,7 @@ http://opensource.org/licenses/MIT.
|
|||
|
||||
{% autocrossref %}
|
||||
|
||||
The `GET tx` operation {{summary_restTx}}
|
||||
The `GET tx` operation {{summary_restGetTx}}
|
||||
|
||||
{{reindexNote}}
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ The `addnode` RPC {{summary_addNode}}
|
|||
- n: "Command"
|
||||
t: "string"
|
||||
p: "Required<br>(exactly 1)"
|
||||
d: "What to do with the IP address above. Options are:<br>• `add` to add a node to the addnode list. This will not connect immediately if the outgoing connection slots are full<br>• `remove` to remove a node from the list. If currently connected, this will disconnect immediately<br>• `onetry` to immediately attempt connection to the node even if the outgoing connection slots are full; this will only attempt the connection once"
|
||||
d: "What to do with the IP address above. Options are:<br>• `add` to add a node to the addnode list. Up to 8 nodes can be added additional to the default 8 nodes. Not limited by `-maxconnections`<br>• `remove` to remove a node from the list. If currently connected, this will disconnect immediately<br>• `onetry` to immediately attempt connection to the node even if the outgoing connection slots are full; this will only attempt the connection once"
|
||||
|
||||
{% enditemplate %}
|
||||
|
||||
|
|
|
@ -11,8 +11,6 @@ http://opensource.org/licenses/MIT.
|
|||
|
||||
{% autocrossref %}
|
||||
|
||||
*Added in Bitcoin Core 0.10.0.*
|
||||
|
||||
The `estimatefee` RPC {{summary_estimateFee}}
|
||||
|
||||
*Parameter #1---how many blocks the transaction may wait before being included*
|
||||
|
@ -21,7 +19,7 @@ The `estimatefee` RPC {{summary_estimateFee}}
|
|||
- n: "Blocks"
|
||||
t: "number (int)"
|
||||
p: "Required<br>(exactly 1)"
|
||||
d: "The maximum number of blocks a transaction should have to wait before it is predicted to be included in a block"
|
||||
d: "The maximum number of blocks a transaction should have to wait before it is predicted to be included in a block. Has to be between 2 and 25 blocks"
|
||||
|
||||
{% enditemplate %}
|
||||
|
||||
|
@ -35,7 +33,7 @@ The `estimatefee` RPC {{summary_estimateFee}}
|
|||
|
||||
{% enditemplate %}
|
||||
|
||||
*Examples from Bitcoin Core 0.10.0*
|
||||
*Examples from Bitcoin Core 0.14.1*
|
||||
|
||||
{% highlight bash %}
|
||||
bitcoin-cli estimatefee 6
|
||||
|
@ -44,10 +42,10 @@ bitcoin-cli estimatefee 6
|
|||
Result:
|
||||
|
||||
{% highlight json %}
|
||||
0.00026809
|
||||
0.00162556
|
||||
{% endhighlight %}
|
||||
|
||||
Requesting data the node can't calculate yet:
|
||||
Requesting data the node can't calculate (out of range):
|
||||
|
||||
{% highlight bash %}
|
||||
bitcoin-cli estimatefee 100
|
||||
|
@ -56,12 +54,11 @@ bitcoin-cli estimatefee 100
|
|||
Result:
|
||||
|
||||
{% highlight json %}
|
||||
-1.00000000
|
||||
-1
|
||||
{% endhighlight %}
|
||||
|
||||
*See also*
|
||||
|
||||
* [EstimatePriority][rpc estimatepriority]: {{summary_estimatePriority}}
|
||||
* [SetTxFee][rpc settxfee]: {{summary_setTxFee}}
|
||||
|
||||
{% endautocrossref %}
|
||||
|
|
|
@ -23,7 +23,7 @@ The `getblock` RPC {{summary_getBlock}}
|
|||
|
||||
{% enditemplate %}
|
||||
|
||||
*Parameter #2---JSON or hex output*
|
||||
*Parameter #2---weather to getJSON or hex output*
|
||||
|
||||
{% itemplate ntpd1 %}
|
||||
- n: "Format"
|
||||
|
|
|
@ -105,7 +105,7 @@ The `listtransactions` RPC {{summary_listTransactions}}
|
|||
- n: "→ →<br>`trusted`"
|
||||
t: "bool"
|
||||
p: "Optional<br>(0 or 1)"
|
||||
d: "Indicates wether we consider the outputs of this unconfirmed transaction safe to spend. Only returned for unconfirmed transactions"
|
||||
d: "Indicates whether we consider the outputs of this unconfirmed transaction safe to spend. Only returned for unconfirmed transactions"
|
||||
|
||||
- n: "→ →<br>`generated`"
|
||||
t: "bool"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue