From f5c78e67b0f4650ddcf286a2ef305845b9ced1d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Magiera?= Date: Tue, 11 Feb 2020 03:33:27 +0100 Subject: [PATCH] stmgr: Update stmgr utils --- checks.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/checks.go b/checks.go index d6884d988..6cfddee26 100644 --- a/checks.go +++ b/checks.go @@ -3,6 +3,7 @@ package sealing import ( "context" + "github.com/filecoin-project/specs-actors/actors/builtin" "github.com/multiformats/go-multihash" "golang.org/x/xerrors" @@ -88,7 +89,7 @@ func checkSeal(ctx context.Context, maddr address.Address, si SectorInfo, api se Value: types.NewInt(0), GasPrice: types.NewInt(0), GasLimit: types.NewInt(9999999999), - Method: actors.SMAMethods.ComputeDataCommitment, + Method: builtin.MethodsMarket.ComputeDataCommitment, Params: ccparams, } r, err := api.StateCall(ctx, ccmt, nil)