loop: add htlc conf target to set params

pull/419/head
carla 2 years ago
parent 16799838f7
commit 5e24beb5a7
No known key found for this signature in database
GPG Key ID: 4CA7FE54A6213C91

@ -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…
Cancel
Save