From bb4954672823e593fe9bd353e1ea65499f9e837f Mon Sep 17 00:00:00 2001 From: "erchuan.ma" <450595468@qq.com> Date: Mon, 13 Jul 2020 22:35:51 +0800 Subject: [PATCH] api/api_full.go: fix method signature method signature not match --- api/api_full.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/api_full.go b/api/api_full.go index 9718eebb8..93f9d8fd4 100644 --- a/api/api_full.go +++ b/api/api_full.go @@ -52,7 +52,7 @@ type FullNode interface { // the specified block. ChainGetParentReceipts(ctx context.Context, blockCid cid.Cid) ([]*types.MessageReceipt, error) - // ChainGetParentReceipts returns messages stored in parent tipset of the + // ChainGetParentMessages returns messages stored in parent tipset of the // specified block. ChainGetParentMessages(ctx context.Context, blockCid cid.Cid) ([]Message, error) @@ -305,7 +305,7 @@ type FullNode interface { // MsigGetAvailableBalance returns the portion of a multisig's balance that can be withdrawn or spent MsigGetAvailableBalance(context.Context, address.Address, types.TipSetKey) (types.BigInt, error) - // MsigGetAvailableBalance creates a multisig wallet + // MsigCreate creates a multisig wallet // It takes the following params: , , //, , MsigCreate(context.Context, int64, []address.Address, abi.ChainEpoch, types.BigInt, address.Address, types.BigInt) (cid.Cid, error)