Skip to content

Commit

Permalink
node: fix goimports for governor.go
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsaigle committed Jul 2, 2024
1 parent a82d30d commit 0d3529e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/pkg/governor/governor.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ func (ce *chainEntry) addFlowCancelTransfer(transfer transfer) error {
}
// Big transfers should not flow cancel under any circumstances
if ce.isBigTransfer(transfer.dbTransfer.Value) {
return fmt.Errorf("refusing to add flow cancel transfer with value %d above the bigTransactionSize %d", transfer.dbTransfer.Value, ce.bigTransactionSize)
return fmt.Errorf("refusing to add flow cancel transfer with value %d above the bigTransactionSize %d", transfer.dbTransfer.Value, ce.bigTransactionSize)
}

ce.transfers = append(ce.transfers, transfer)
Expand Down

0 comments on commit 0d3529e

Please sign in to comment.