fixup tests

This commit is contained in:
whyrusleeping
2020-08-19 13:32:53 -07:00
parent 4f25c1c60e
commit 621d675938
4 changed files with 9 additions and 33 deletions
-8
View File
@@ -2,8 +2,6 @@ package full
import (
"context"
"encoding/json"
"fmt"
"github.com/filecoin-project/specs-actors/actors/abi/big"
@@ -124,12 +122,6 @@ func (a *MsigAPI) MsigPropose(ctx context.Context, msig address.Address, to addr
Params: enc,
}
b, err := json.Marshal(msg)
if err != nil {
panic(err)
}
fmt.Println("prpopose message: ", string(b))
smsg, err := a.MpoolAPI.MpoolPushMessage(ctx, msg, nil)
if err != nil {
return cid.Undef, xerrors.Errorf("failed to push message: %w", err)