mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
c34a0a22ad
And fix schema: it wasn't tested as there was no test-by-parameter-name. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
15 lines
271 B
JSON
15 lines
271 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"hex"
|
|
],
|
|
"properties": {
|
|
"hex": {
|
|
"type": "hex",
|
|
"description": "This will be used for deriving the secret"
|
|
}
|
|
}
|
|
}
|