Merge pull request #105 from filecoin-project/feat/multisig

Implement multisig
This commit is contained in:
Whyrusleeping
2019-08-05 12:08:32 -07:00
committed by GitHub
10 changed files with 805 additions and 78 deletions
+2 -1
View File
@@ -111,7 +111,8 @@ func (a *FullNodeAPI) ChainCall(ctx context.Context, msg *types.Message, ts *typ
}
// TODO: maybe just use the invoker directly?
return vmi.ApplyMessage(ctx, msg)
ret, err := vmi.ApplyMessage(ctx, msg)
return &ret.MessageReceipt, err
}
func (a *FullNodeAPI) MpoolPending(ctx context.Context, ts *types.TipSet) ([]*types.SignedMessage, error) {