fix function call signatures

This commit is contained in:
whyrusleeping
2019-07-20 16:37:38 -07:00
parent 05b8158285
commit a232d54216
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ func (c *Struct) MpoolPending(ctx context.Context, ts *chain.TipSet) ([]*chain.S
}
func (c *Struct) MpoolPush(ctx context.Context, smsg *chain.SignedMessage) error {
return c.MpoolPush(ctx, smsg)
return c.Internal.MpoolPush(ctx, smsg)
}
func (c *Struct) MinerStart(ctx context.Context, addr address.Address) error {
+1 -1
View File
@@ -112,7 +112,7 @@ var createMinerCmd = &cli.Command{
}
fmt.Printf("miner created in block %s\n", mwait.InBlock)
fmt.Println("new miner address: %s\n", maddr)
fmt.Printf("new miner address: %s\n", maddr)
return nil
},