Skip to content

Commit 2945fc6

Browse files
committed
Fix log message
1 parent 570f849 commit 2945fc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/code/currency/validation.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ func validateCurrencyLaunchpadClientExchangeData(ctx context.Context, data code_
148148
expectedRate := potentialNativeAmount / otherMintUnits
149149
percentDiff := math.Abs(proto.ExchangeRate-expectedRate) / expectedRate
150150
if percentDiff > 0.0001 {
151-
log.WithField("potential_exchange_rate", expectedRate).Info("native amount is outside error threshold")
151+
log.WithField("potential_exchange_rate", expectedRate).Info("exchange rate is outside error threshold")
152152
continue
153153
}
154154

0 commit comments

Comments
 (0)