Skip to content

Commit

Permalink
chore(lint): gofumpt the file
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxMustermann2 committed Apr 2, 2024
1 parent 6f4cd6b commit 6629d35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/operator/keeper/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ func isEqual(map1, map2 map[string]map[string]map[string]math.Int) bool {
if _, ok := map1[stakerID]; !ok {
return false // Extra StakerID in map2
}
for assetID, _ := range assetMap {
for assetID := range assetMap {
if _, ok := map1[stakerID][assetID]; !ok {
return false // Extra AssetID in map2
}
Expand Down

0 comments on commit 6629d35

Please sign in to comment.