Skip to content

Commit

Permalink
Merge pull request #641 from oasisprotocol/mitjat/openapi-named-types
Browse files Browse the repository at this point in the history
openapi: Use named types everywhere
  • Loading branch information
mitjat authored Feb 16, 2024
2 parents 30ae67c + 8687d3f commit fb45f22
Show file tree
Hide file tree
Showing 3 changed files with 132 additions and 136 deletions.
2 changes: 1 addition & 1 deletion analyzer/uncategorized/addresses.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func ExtractAddresses(accounts map[apiTypes.Address]bool) []string {
addrs := make([]string, len(accounts))
i := 0
for a := range accounts {
addrs[i] = string(a)
addrs[i] = a
i++
}
return addrs
Expand Down
Loading

0 comments on commit fb45f22

Please sign in to comment.