mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-21 22:31:48 +01:00
Don't assume removal is +6 months, but have a start deprecation/end support range. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
21 lines
441 B
JSON
21 lines
441 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [],
|
|
"added": "v23.05",
|
|
"deprecated": [
|
|
"v23.08",
|
|
"v24.08"
|
|
],
|
|
"properties": {
|
|
"start": {
|
|
"type": "u64",
|
|
"description": "first rune unique id to blacklist"
|
|
},
|
|
"end": {
|
|
"type": "u64",
|
|
"description": "final rune unique id to blacklist (defaults to start)"
|
|
}
|
|
}
|
|
}
|