Skip to content

Commit

Permalink
Cleanup: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dwasse committed Jan 10, 2024
1 parent 6a297fb commit 5dbd12e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/rfq/relayer/pricer/fee_pricer.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func (f *feePricer) GetOriginFee(ctx context.Context, origin, destination uint32
return f.getFee(ctx, origin, destination, f.config.GetFeePricer().OriginGasEstimate, denomToken, useMultiplier)
}

func (f *feePricer) GetDestinationFee(ctx context.Context, origin, destination uint32, denomToken string, useMultiplier bool) (*big.Int, error) {
func (f *feePricer) GetDestinationFee(ctx context.Context, _, destination uint32, denomToken string, useMultiplier bool) (*big.Int, error) {
return f.getFee(ctx, destination, destination, f.config.GetFeePricer().DestinationGasEstimate, denomToken, useMultiplier)
}

Expand Down

0 comments on commit 5dbd12e

Please sign in to comment.