mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-10 17:19:15 +01:00
19 lines
488 B
JSON
19 lines
488 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"type": "object",
|
||
|
"additionalProperties": false,
|
||
|
"required": [
|
||
|
"blockheight"
|
||
|
],
|
||
|
"properties": {
|
||
|
"blockheight": {
|
||
|
"type": "u32",
|
||
|
"description": "The current block height (>= blockheight parameter)"
|
||
|
},
|
||
|
"timeout": {
|
||
|
"type": "u32",
|
||
|
"description": "If timeout seconds is reached without the specified blockheight being reached, this command will fail with a code of 2000."
|
||
|
}
|
||
|
}
|
||
|
}
|