From 00f137ba3e5d07ddb14d0e955fec44879c283272 Mon Sep 17 00:00:00 2001 From: vyzo Date: Fri, 26 Jun 2020 12:04:20 +0300 Subject: [PATCH] add pubsub-tracer role to baseline --- lotus-soup/baseline.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lotus-soup/baseline.go b/lotus-soup/baseline.go index 6f5cf9678..df0e195b2 100644 --- a/lotus-soup/baseline.go +++ b/lotus-soup/baseline.go @@ -43,10 +43,11 @@ import ( // The we create a genesis block that allocates some funds to each node and collects // the presealed sectors. var baselineRoles = map[string]func(*TestEnvironment) error{ - "bootstrapper": runBootstrapper, - "miner": runMiner, - "client": runBaselineClient, - "drand": runDrandNode, + "bootstrapper": runBootstrapper, + "miner": runMiner, + "client": runBaselineClient, + "drand": runDrandNode, + "pubsub-tracer": runPubsubTracer, } func runBaselineClient(t *TestEnvironment) error { @@ -237,4 +238,3 @@ func extractCarData(ctx context.Context, rdata []byte, rpath string) []byte { } return rdata } -