diff --git a/cmd/lotus-shed/nonce-fix.go b/cmd/lotus-shed/nonce-fix.go index 4824a7bce..3cd9726f4 100644 --- a/cmd/lotus-shed/nonce-fix.go +++ b/cmd/lotus-shed/nonce-fix.go @@ -91,12 +91,8 @@ var noncefix = &cli.Command{ Value: types.NewInt(1), Nonce: i, } - smsg, err := api.WalletSignMessage(ctx, addr, msg) - if err != nil { - return err - } - _, err = api.MpoolPush(ctx, smsg) + _, err = api.MpoolPushMessage(ctx, msg, nil) if err != nil { return err }