mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 09:46:12 +00:00
[Content] - RPC - Update getmempoolentry
- Add `instantsend` and `instantlock` to result - Closes #69
This commit is contained in:
parent
3415a4dbc7
commit
73fdafea75
1 changed files with 13 additions and 1 deletions
|
@ -110,6 +110,16 @@ The `getmempoolentry` RPC {{summary_getMemPoolEntry}}
|
|||
p: "Optional (0 or more)"
|
||||
d: "The TXIDs of any unconfirmed transactions this transaction depends upon, encoded as hex in RPC byte order"
|
||||
|
||||
- n: "→<br>`instantsend`"
|
||||
t: "bool"
|
||||
p: "Required<br>(exactly 1)"
|
||||
d: "True if this transaction was sent as an InstantSend one"
|
||||
|
||||
- n: "→<br>`instantlock`"
|
||||
t: "bool"
|
||||
p: "Required<br>(exactly 1)"
|
||||
d: "True if this transaction was locked via InstantSend"
|
||||
|
||||
{% enditemplate %}
|
||||
|
||||
*Examples from Dash Core 0.12.3*
|
||||
|
@ -137,7 +147,9 @@ Result:
|
|||
"ancestorsize": 226,
|
||||
"ancestorfees": 226,
|
||||
"depends": [
|
||||
]
|
||||
],
|
||||
"instantsend": false,
|
||||
"instantlock": false
|
||||
}
|
||||
{% endhighlight %}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue