mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
49fe1c8ed7
Changelog-Added: JSON-RPC: `makesecret` can take a string argument instead of hex. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
17 lines
370 B
JSON
17 lines
370 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [],
|
|
"properties": {
|
|
"hex": {
|
|
"type": "hex",
|
|
"description": "This will be used for deriving the secret"
|
|
},
|
|
"string": {
|
|
"type": "string",
|
|
"description": "This will be used for deriving the secret"
|
|
}
|
|
}
|
|
}
|