Skip to content

Commit

Permalink
cmd/commands: fix linter error in bumpForceCloseFee
Browse files Browse the repository at this point in the history
  • Loading branch information
Roasbeef committed Nov 14, 2024
1 parent 565e5d4 commit 910a4a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/commands/walletrpc_active.go
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ func bumpForceCloseFee(ctx *cli.Context) error {

for _, sweep := range sweeps.PendingSweeps {
// Only bump anchor sweeps.
if sweep.WitnessType != walletrpc.WitnessType_COMMITMENT_ANCHOR {
if sweep.WitnessType != walletrpc.WitnessType_COMMITMENT_ANCHOR { //nolint:lll
continue
}

Expand Down

0 comments on commit 910a4a6

Please sign in to comment.