Skip to content

Commit

Permalink
fix: linter (#1679)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtsitrin authored Dec 28, 2024
1 parent 0b04296 commit 109d4d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/eibc/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func InitGenesis(ctx sdk.Context, k keeper.Keeper, genState types.GenesisState)
if demandOrderCopy.TrackingPacketKey != "" {
decodedKey, err := base64.StdEncoding.DecodeString(demandOrderCopy.TrackingPacketKey)
if err != nil {
panic(fmt.Errorf("failed to decode tracking_packet_key: %v", err))
panic(fmt.Errorf("failed to decode tracking_packet_key: %w", err))
}
demandOrderCopy.TrackingPacketKey = string(decodedKey)
}
Expand Down

0 comments on commit 109d4d3

Please sign in to comment.