walletrpc: allow conf_target=1 in FundPsbt

Modified 'fund_psbt' itest to test this scenario.
This commit is contained in:
Boris Nagaev
2025-08-01 17:12:15 -03:00
parent cd6e648a7f
commit c22768283c
2 changed files with 4 additions and 4 deletions

View File

@@ -1253,8 +1253,8 @@ func fundPsbtCoinSelect(t testing.TB, node *node.HarnessNode,
Template: &walletrpc.FundPsbtRequest_CoinSelect{
CoinSelect: cs,
},
Fees: &walletrpc.FundPsbtRequest_SatPerVbyte{
SatPerVbyte: 50,
Fees: &walletrpc.FundPsbtRequest_TargetConf{
TargetConf: 1,
},
})

View File

@@ -1555,9 +1555,9 @@ func (w *WalletKit) FundPsbt(_ context.Context,
// Estimate the fee by the target number of blocks to confirmation.
case req.GetTargetConf() != 0:
targetConf := req.GetTargetConf()
if targetConf < 2 {
if targetConf < 1 {
return nil, fmt.Errorf("confirmation target must be " +
"greater than 1")
"greater than 0")
}
feeSatPerKW, err = w.cfg.FeeEstimator.EstimateFeePerKW(