mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-16 13:00:37 +02:00
loop: add htlc conf target to set params
This commit is contained in:
parent
16799838f7
commit
5e24beb5a7
1 changed files with 10 additions and 0 deletions
|
|
@ -292,6 +292,11 @@ var setParamsCommand = cli.Command{
|
|||
Usage: "the maximum amount in satoshis that the " +
|
||||
"autoloop client will dispatch per-swap",
|
||||
},
|
||||
cli.IntFlag{
|
||||
Name: "htlc_conf",
|
||||
Usage: "the confirmation target for loop in on-chain " +
|
||||
"htlcs",
|
||||
},
|
||||
},
|
||||
Action: setParams,
|
||||
}
|
||||
|
|
@ -422,6 +427,11 @@ func setParams(ctx *cli.Context) error {
|
|||
flagSet = true
|
||||
}
|
||||
|
||||
if ctx.IsSet("htlc_conf") {
|
||||
params.HtlcConfTarget = int32(ctx.Int("htlc_conf"))
|
||||
flagSet = true
|
||||
}
|
||||
|
||||
if !flagSet {
|
||||
return fmt.Errorf("at least one flag required to set params")
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue