Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mmsqe committed Sep 12, 2023
1 parent 0b22edf commit 10370f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/cronos/events/decoders.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func ConvertPacketData(attributeValue string, indexed bool) ([]any, error) {
return nil, err
}
var tokenPacketData transfertypes.FungibleTokenPacketData
err := json.Unmarshal(bz, &tokenPacketData)
err = json.Unmarshal(bz, &tokenPacketData)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 10370f1

Please sign in to comment.