mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
main: fix feepercetn from intflags to float
Previously, the feepercent flag on autoloop was set to an IntFlag and later converted to Float, leading to the issue where users couldn't specify decimal rates even though we allowed it.
This commit is contained in:
parent
40882b74e4
commit
0b414cb45e
1 changed files with 1 additions and 1 deletions
|
|
@ -232,7 +232,7 @@ var setParamsCommand = cli.Command{
|
|||
Usage: "the limit placed on our estimated sweep fee " +
|
||||
"in sat/vByte.",
|
||||
},
|
||||
cli.IntFlag{
|
||||
cli.Float64Flag{
|
||||
Name: "feepercent",
|
||||
Usage: "the maximum percentage of swap amount to be " +
|
||||
"used across all fee categories",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue