fix function call signatures
This commit is contained in:
parent
05b8158285
commit
a232d54216
@ -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 {
|
||||
|
@ -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
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user