Merge pull request #7510 from guggero/fund-psbt-unconfirmed

lncli: allow specifying `--min_confs` in `wallet psbt fund` to select unconfirmed inputs
This commit is contained in:
Oliver Gugger 2023-03-14 13:45:05 +01:00 committed by GitHub
commit 098bb36114
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 1 deletions

View File

@ -660,6 +660,13 @@ var fundPsbtCommand = cli.Command{
"always use the coin selection key scope to " +
"generate the change address",
},
cli.Uint64Flag{
Name: "min_confs",
Usage: "(optional) the minimum number of " +
"confirmations each input used for the PSBT " +
"transaction must satisfy",
Value: defaultUtxoMinConf,
},
},
Action: actionDecorator(fundPsbt),
}
@ -673,8 +680,11 @@ func fundPsbt(ctx *cli.Context) error {
return cli.ShowCommandHelp(ctx, "fund")
}
minConfs := int32(ctx.Uint64("min_confs"))
req := &walletrpc.FundPsbtRequest{
Account: ctx.String("account"),
Account: ctx.String("account"),
MinConfs: minConfs,
SpendUnconfirmed: minConfs == 0,
}
// Parse template flags.

View File

@ -0,0 +1,7 @@
# Release Notes
## `lncli`
- The `lncli wallet psbt fund` command now allows users to specify the
[`--min_confs` flag](https://github.com/lightningnetwork/lnd/pull/7510).