mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-06 01:18:17 +02:00
walletrpc: allow conf_target=1 in FundPsbt
Modified 'fund_psbt' itest to test this scenario.
This commit is contained in:
@@ -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,
|
||||
},
|
||||
})
|
||||
|
||||
|
@@ -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(
|
||||
|
Reference in New Issue
Block a user