Skip to content

Commit

Permalink
Merge pull request #1481 from CosmWasm/system_notrace
Browse files Browse the repository at this point in the history
Remove trace param in system tests
  • Loading branch information
alpe authored Jul 4, 2023
2 parents f171a67 + 5c6b2fb commit c158b77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/system/system.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ func (s *SystemUnderTest) StartChain(t *testing.T, xargs ...string) {
t.Helper()
s.Log("Start chain\n")
s.ChainStarted = true
s.forEachNodesExecAsync(t, append([]string{"start", "--trace", "--log_level=info"}, xargs...)...)
s.forEachNodesExecAsync(t, append([]string{"start", "--log_level=info"}, xargs...)...)

s.AwaitNodeUp(t, s.rpcAddr)

Expand Down Expand Up @@ -572,7 +572,7 @@ func (s *SystemUnderTest) AddFullnode(t *testing.T, beforeStart ...func(nodeNumb
fmt.Sprintf("--grpc.address=localhost:%d", 9090+nodeNumber),
fmt.Sprintf("--grpc-web.address=localhost:%d", 8090+nodeNumber),
"--moniker=" + moniker,
"--trace", "--log_level=info",
"--log_level=info",
"--home", nodePath,
}
s.Logf("Execute `wasmd %s`\n", strings.Join(args, " "))
Expand Down

0 comments on commit c158b77

Please sign in to comment.