mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-03 20:44:54 +01:00
43ae30df21
Useful for parsing a passed in feerate before calling lightningd with it, e.g. when you need to know what the feerate is for a fundpsbt before calling fundpsbt Changelog-Added: JSON-RPC: new command `parsefeerate` which takes a feerate string and returns the calculated perkw/perkb
14 lines
294 B
JSON
14 lines
294 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [ ],
|
|
"properties": {
|
|
"perkw": {
|
|
"type": "u32",
|
|
"description": "Value of *feerate_str* in kilosipa",
|
|
"additionalProperties": false
|
|
}
|
|
}
|
|
}
|