mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-21 14:24:09 +01:00
Some rpc commands did not have their corresponding *.request.json files to generate the consolidated json
30 lines
1.2 KiB
JSON
30 lines
1.2 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"csv_format"
|
|
],
|
|
"properties": {
|
|
"csv_format": {
|
|
"type": "string",
|
|
"description": "CSV format to use. See RETURN VALUE for options"
|
|
},
|
|
"csv_file": {
|
|
"type": "string",
|
|
"description": "on-disk destination of the generated CSV file"
|
|
},
|
|
"consolidate_fees": {
|
|
"type": "boolean",
|
|
"description": "if true, we emit a single, consolidated event for any onchain-fees for a txid and account. Otherwise, events for every update to the onchain fee calculation for this account and txid will be printed. Defaults to true. Note that this means that the events emitted are non-stable, i.e. calling **dumpincomecsv** twice may result in different onchain fee events being emitted, depending on how much information we've logged for that transaction"
|
|
},
|
|
"start_time": {
|
|
"type": "u64",
|
|
"description": "UNIX timestamp (in seconds) that filters events after the provided timestamp. Defaults to zero"
|
|
},
|
|
"end_time": {
|
|
"type": "u64",
|
|
"description": "UNIX timestamp (in seconds) that filters events up to and at the provided timestamp. Defaults to max-int"
|
|
}
|
|
}
|
|
}
|