From 5c6b2fbbfd6c2fd8a442691b57b52315c81395f8 Mon Sep 17 00:00:00 2001 From: Alex Peters Date: Tue, 4 Jul 2023 11:17:19 +0200 Subject: [PATCH] Remove trace param in system tests --- tests/system/system.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/system/system.go b/tests/system/system.go index c160611c..6df5bd36 100644 --- a/tests/system/system.go +++ b/tests/system/system.go @@ -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) @@ -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, " "))