Remove trace param in system tests

This commit is contained in:
Alex Peters
2023-07-04 11:17:19 +02:00
parent 255ba092d0
commit 5c6b2fbbfd

View File

@@ -131,7 +131,7 @@ func (s *SystemUnderTest) StartChain(t *testing.T, xargs ...string) {
t.Helper() t.Helper()
s.Log("Start chain\n") s.Log("Start chain\n")
s.ChainStarted = true 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) s.AwaitNodeUp(t, s.rpcAddr)
@@ -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.address=localhost:%d", 9090+nodeNumber),
fmt.Sprintf("--grpc-web.address=localhost:%d", 8090+nodeNumber), fmt.Sprintf("--grpc-web.address=localhost:%d", 8090+nodeNumber),
"--moniker=" + moniker, "--moniker=" + moniker,
"--trace", "--log_level=info", "--log_level=info",
"--home", nodePath, "--home", nodePath,
} }
s.Logf("Execute `wasmd %s`\n", strings.Join(args, " ")) s.Logf("Execute `wasmd %s`\n", strings.Join(args, " "))