[Content] - RPC - Update getmempoolentry

- Add `instantsend` and `instantlock` to result
 - Closes #69
This commit is contained in:
thephez 2018-06-11 13:33:07 -04:00
parent 3415a4dbc7
commit 73fdafea75
No known key found for this signature in database
GPG key ID: BBC8A06DBE236099

View file

@ -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 %}