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:
Boris Nagaev
2025-02-17 13:05:40 -03:00
parent 01819f0d42
commit 0916f3e9b3
3 changed files with 3 additions and 3 deletions

View File

@@ -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

View File

@@ -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;

View File

@@ -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",