From 6e92d6a6f08054fc722a11520c2c18672e7d9cb6 Mon Sep 17 00:00:00 2001 From: Aayush Rajasekaran Date: Sun, 12 Jul 2020 00:50:02 -0400 Subject: [PATCH] Increase gas limit --- states_sealing.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/states_sealing.go b/states_sealing.go index 113105162..90423c6f9 100644 --- a/states_sealing.go +++ b/states_sealing.go @@ -319,7 +319,7 @@ func (m *Sealing) handleCommitting(ctx statemachine.Context, sector SectorInfo) } // TODO: check seed / ticket are up to date - mcid, err := m.api.SendMsg(ctx.Context(), waddr, m.maddr, builtin.MethodsMiner.ProveCommitSector, collateral, big.NewInt(1), 1000000, enc.Bytes()) + mcid, err := m.api.SendMsg(ctx.Context(), waddr, m.maddr, builtin.MethodsMiner.ProveCommitSector, collateral, big.NewInt(1), 200000000, enc.Bytes()) if err != nil { return ctx.Send(SectorCommitFailed{xerrors.Errorf("pushing message to mpool: %w", err)}) }