Skip to content

Commit

Permalink
[2137]: Use the correct formatting verb when logging the error about …
Browse files Browse the repository at this point in the history
…a metadata denom string not being valid.
  • Loading branch information
SpicyLemon committed Sep 30, 2024
1 parent 5cfa116 commit c8075c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/exchange/keeper/fulfillment.go
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ func (k Keeper) recordNAVs(ctx sdk.Context, marketID uint32, navs []exchange.Net
for _, denom := range metadataDenoms {
scopeID, err := metadatatypes.MetadataAddressFromDenom(denom)
if err != nil {
k.logErrorf(ctx, "error getting metadata address: %w", err)
k.logErrorf(ctx, "error getting metadata address: %v", err)
k.emitMetadataNAVEvents(ctx, denom, metadataNAVs[denom], source)
continue
}
Expand Down

0 comments on commit c8075c7

Please sign in to comment.