mirror of
https://github.com/seigler/dips
synced 2025-07-26 17:26:13 +00:00
Fix rendering of code block and use fenced blocks (#50)
The fences aren't actually necessary, but make it easier (IMO) to delineate the code block and not worry about number of leading spaces.
This commit is contained in:
parent
26cf7c9f92
commit
aa804d2e23
1 changed files with 6 additions and 3 deletions
|
@ -84,7 +84,9 @@ When a transaction is eligible for InstantSend, each masternode should try to
|
|||
initiate a signing request for each of the transaction’s inputs. The request
|
||||
id is:
|
||||
|
||||
hash("inlock", prevTxHash, prevTxOut)
|
||||
```
|
||||
hash("inlock", prevTxHash, prevTxOut)
|
||||
```
|
||||
|
||||
`"inlock"` is a static string, prepended with the length (6, as a compact int,
|
||||
which is a single byte) of the string. The message hash of the signing request
|
||||
|
@ -110,8 +112,9 @@ message.
|
|||
Finalization is simply another signing request, performed on a (potentially)
|
||||
different LLMQ than used before. The request id of the new signing request is:
|
||||
|
||||
hash("islock", inputCount, prevTxHash1, prevTxOut1, prevTxHash2,
|
||||
prevTxOut2, ...)
|
||||
```
|
||||
hash("islock", inputCount, prevTxHash1, prevTxOut1, prevTxHash2, prevTxOut2, ...)
|
||||
```
|
||||
|
||||
`"islock"` is a static string, prepended with the length (6, as a compact int,
|
||||
which is a single byte) of the string. `inputCount` is a compact int,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue