Merge remote-tracking branch 'origin/master' into feat/post-schedule

This commit is contained in:
Łukasz Magiera
2019-09-20 14:22:22 +02:00
7 changed files with 141 additions and 20 deletions
+19
View File
@@ -3,6 +3,7 @@ package full
import (
"context"
cid "github.com/ipfs/go-cid"
"github.com/ipfs/go-hamt-ipld"
"github.com/libp2p/go-libp2p-core/peer"
"go.uber.org/fx"
@@ -86,6 +87,24 @@ func (a *StateAPI) StateCall(ctx context.Context, msg *types.Message, ts *types.
return a.StateManager.Call(ctx, msg, ts)
}
func (a *StateAPI) StateReplay(ctx context.Context, ts *types.TipSet, mc cid.Cid) (*api.ReplayResults, error) {
m, r, err := a.StateManager.Replay(ctx, ts, mc)
if err != nil {
return nil, err
}
var errstr string
if r.ActorErr != nil {
errstr = r.ActorErr.Error()
}
return &api.ReplayResults{
Msg: m,
Receipt: &r.MessageReceipt,
Error: errstr,
}, nil
}
func (a *StateAPI) stateForTs(ts *types.TipSet) (*state.StateTree, error) {
if ts == nil {
ts = a.Chain.GetHeaviestTipSet()