Fixup merge

This commit is contained in:
Aayush 2022-03-15 18:40:22 -04:00 committed by Jennifer Wang
parent 8a2a2d065d
commit 2170b4deb5
2 changed files with 3 additions and 3 deletions

View File

@ -104,7 +104,7 @@ func prepSyncTest(t testing.TB, h int) *syncTestUtil {
ctx: ctx,
cancel: cancel,
mn: mocknet.New(ctx),
mn: mocknet.New(),
g: g,
us: filcns.DefaultUpgradeSchedule(),
}
@ -158,7 +158,7 @@ func prepSyncTestWithV5Height(t testing.TB, h int, v5height abi.ChainEpoch) *syn
ctx: ctx,
cancel: cancel,
mn: mocknet.New(ctx),
mn: mocknet.New(),
g: g,
us: sched,
}

View File

@ -284,7 +284,7 @@ func (n *Ensemble) Start() *Ensemble {
// We haven't been bootstrapped yet, we need to generate genesis and
// create the networking backbone.
gtempl = n.generateGenesis()
n.mn = mocknet.New(ctx)
n.mn = mocknet.New()
}
// ---------------------