Skip to content

Commit

Permalink
Append global clients instead of in place insertion
Browse files Browse the repository at this point in the history
  • Loading branch information
user committed Dec 4, 2023
1 parent 073c51f commit 468296f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/microservice-ethereum-worker-server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ func main() {
if s == "" {
continue
}
globalUtilityRewards[i] = appTypes.UtilityName(s)
globalUtilityRewards = append(globalUtilityRewards, appTypes.UtilityName(s))
}

for _, details := range strings.Split(tokenDetails_, ",") {
Expand Down

0 comments on commit 468296f

Please sign in to comment.