Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pinosu committed Dec 20, 2024
1 parent 64b7b46 commit 5bd1483
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion x/wasm/keeper/query_plugins_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -736,14 +736,16 @@ func TestGRPCQuerier(t *testing.T) {
}
querier := keeper.AcceptListStargateQuerier(acceptedQueries, router, keepers.EncodingConfig.Codec)

addr := keeper.RandomBech32AccountAddress(t)

eg := errgroup.Group{}
errorsCount := atomic.Uint64{}
for range 50 {
for _, denom := range []string{denom1, denom2} {
denom := denom // copy
eg.Go(func() error {
queryReq := &banktypes.QueryBalanceRequest{
Address: keeper.RandomBech32AccountAddress(t),
Address: addr,
Denom: denom,
}
grpcData, err := cdc.Marshal(queryReq)
Expand Down

0 comments on commit 5bd1483

Please sign in to comment.