mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-01 18:27:43 +02:00
walletrpc: fix description of bumpfee.immediate
It waits for the next block and sends CPFP even if there are no other inputs to form a batch.
This commit is contained in:
@@ -3116,7 +3116,7 @@ type BumpFeeRequest struct {
|
||||
// the estimated fee rate using the `target_conf` as the starting fee rate.
|
||||
SatPerVbyte uint64 `protobuf:"varint,5,opt,name=sat_per_vbyte,json=satPerVbyte,proto3" json:"sat_per_vbyte,omitempty"`
|
||||
// Optional. Whether this input will be swept immediately. When set to true,
|
||||
// the sweeper will sweep this input without waiting for the next batch.
|
||||
// the sweeper will sweep this input without waiting for the next block.
|
||||
Immediate bool `protobuf:"varint,6,opt,name=immediate,proto3" json:"immediate,omitempty"`
|
||||
// Optional. The max amount in sats that can be used as the fees. Setting this
|
||||
// value greater than the input's value may result in CPFP - one or more wallet
|
||||
|
@@ -1216,7 +1216,7 @@ message BumpFeeRequest {
|
||||
|
||||
/*
|
||||
Optional. Whether this input will be swept immediately. When set to true,
|
||||
the sweeper will sweep this input without waiting for the next batch.
|
||||
the sweeper will sweep this input without waiting for the next block.
|
||||
*/
|
||||
bool immediate = 6;
|
||||
|
||||
|
@@ -1440,7 +1440,7 @@
|
||||
},
|
||||
"immediate": {
|
||||
"type": "boolean",
|
||||
"description": "Optional. Whether this input will be swept immediately. When set to true,\nthe sweeper will sweep this input without waiting for the next batch."
|
||||
"description": "Optional. Whether this input will be swept immediately. When set to true,\nthe sweeper will sweep this input without waiting for the next block."
|
||||
},
|
||||
"budget": {
|
||||
"type": "string",
|
||||
|
Reference in New Issue
Block a user