mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 09:46:12 +00:00
V0.14.0 LLMQ InstantSend (#124)
* InstantSend - Add partial LLMQ-IS details * InstantSend - Add clarification and data flow * Minor formatting change * InstantSend - Add LLMQ-IS info to ChainLock section * RPC - Add instantllock_internal field to RPCs * Formatting update * Formatting fix * Content - Clarify instantlock* descriptions
This commit is contained in:
parent
ad582d2b58
commit
9d69c14b0b
7 changed files with 119 additions and 31 deletions
|
@ -169,6 +169,7 @@ Result:
|
|||
"merkleRootQuorums": "a320b95dab4963ca2547434d63ac8203835dfd0ce245924fa83dc6bab6ac57c7"
|
||||
},
|
||||
"instantlock": false,
|
||||
"instantlock_internal": false,
|
||||
"chainlock": false
|
||||
}
|
||||
{% endhighlight %}
|
||||
|
|
|
@ -98,7 +98,12 @@ deprecated.
|
|||
- n: "<br>`instantlock`"
|
||||
t: "bool"
|
||||
p: "Required<br>(exactly 1)"
|
||||
d: "If set to `true`, this transaction is locked"
|
||||
d: "If set to `true`, this transaction is locked (by InstantSend or a ChainLock)"
|
||||
|
||||
- n: "→<br>`instantlock_internal`"
|
||||
t: "bool"
|
||||
p: "Required<br>(exactly 1)"
|
||||
d: "If set to `true`, this transaction has an InstantSend lock"
|
||||
|
||||
- n: "<br>`chainlock`"
|
||||
t: "bool"
|
||||
|
@ -192,7 +197,8 @@ Result:
|
|||
"confirmations": 1,
|
||||
"time": 1546278750,
|
||||
"blocktime": 1546278750,
|
||||
"instantlock": true
|
||||
"instantlock": true,
|
||||
"instantlock_internal": true,
|
||||
"chainlock": false
|
||||
}
|
||||
{% endhighlight %}
|
||||
|
|
|
@ -130,6 +130,7 @@ Result:
|
|||
"fee": -0.00030000,
|
||||
"confirmations": 3064,
|
||||
"instantlock": false,
|
||||
"instantlock_internal": false,
|
||||
"chainlock": false,
|
||||
"blockhash": "00000a01007be2912c3123085534b58d341cb5e5980b967e8dcc021089487a1e",
|
||||
"blockindex": 1,
|
||||
|
|
|
@ -97,6 +97,7 @@ Result (edited to show only two payments):
|
|||
"fee": -0.00000226,
|
||||
"confirmations": 0,
|
||||
"instantlock": true,
|
||||
"instantlock_internal": true,
|
||||
"chainlock": false,
|
||||
"trusted": true,
|
||||
"txid": "cc2e6c49faae395d79cfc91d188881e479f544c220e4dfee016889cd53b32645",
|
||||
|
@ -115,6 +116,7 @@ Result (edited to show only two payments):
|
|||
"vout": 0,
|
||||
"confirmations": 0,
|
||||
"instantlock": true,
|
||||
"instantlock_internal": true,
|
||||
"chainlock": false,
|
||||
"trusted": true,
|
||||
"txid": "cc2e6c49faae395d79cfc91d188881e479f544c220e4dfee016889cd53b32645",
|
||||
|
|
|
@ -107,7 +107,12 @@ The `listtransactions` RPC {{summary_listTransactions}}
|
|||
- n: "→<br>`instantlock`"
|
||||
t: "bool"
|
||||
p: "Required<br>(exactly 1)"
|
||||
d: "Current transaction lock state"
|
||||
d: "Current transaction lock state (InstantSend and/or ChainLock)"
|
||||
|
||||
- n: "→<br>`instantlock_internal`"
|
||||
t: "bool"
|
||||
p: "Required<br>(exactly 1)"
|
||||
d: "Current InstantSend transaction lock state"
|
||||
|
||||
- n: "<br>`chainlock`"
|
||||
t: "bool"
|
||||
|
@ -208,6 +213,7 @@ Result:
|
|||
"fee": -0.00040000,
|
||||
"confirmations": 3,
|
||||
"instantlock": true,
|
||||
"instantlock_internal": true,
|
||||
"chainlock": false,
|
||||
"blockhash": "000000000327ff7785d799dde99949457ac231ef1d956a2287c2f7bb84d9738c",
|
||||
"blockindex": 2,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue