Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
calvwang9 committed Jan 7, 2025
1 parent c19c95a commit 38d8632
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/web/resolver/tron_key.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ func NewTronKey(key tronkey.Key) *TronKeyResolver {
}

func NewTronKeys(keys []tronkey.Key) []*TronKeyResolver {
var resolvers []*TronKeyResolver
resolvers := make([]*TronKeyResolver, 0, len(keys))

for _, k := range keys {
resolvers = append(resolvers, NewTronKey(k))
Expand Down

0 comments on commit 38d8632

Please sign in to comment.