2019-07-19 09:24:11 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2019-08-16 21:50:00 +00:00
|
|
|
"context"
|
2019-10-03 00:02:06 +00:00
|
|
|
"crypto/rand"
|
2019-11-16 06:47:04 +00:00
|
|
|
"os"
|
2019-11-25 04:45:13 +00:00
|
|
|
"path/filepath"
|
2019-11-16 06:47:04 +00:00
|
|
|
|
|
|
|
"github.com/ipfs/go-datastore"
|
2019-11-27 01:39:07 +00:00
|
|
|
badger "github.com/ipfs/go-ds-badger"
|
2019-11-16 06:47:04 +00:00
|
|
|
"github.com/libp2p/go-libp2p-core/crypto"
|
|
|
|
"github.com/libp2p/go-libp2p-core/peer"
|
|
|
|
"github.com/mitchellh/go-homedir"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
"gopkg.in/urfave/cli.v2"
|
2019-07-19 09:24:11 +00:00
|
|
|
|
2019-10-18 04:47:41 +00:00
|
|
|
"github.com/filecoin-project/lotus/api"
|
|
|
|
"github.com/filecoin-project/lotus/build"
|
|
|
|
"github.com/filecoin-project/lotus/chain/actors"
|
|
|
|
"github.com/filecoin-project/lotus/chain/address"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
|
|
lcli "github.com/filecoin-project/lotus/cli"
|
2019-11-25 04:45:13 +00:00
|
|
|
"github.com/filecoin-project/lotus/lib/sectorbuilder"
|
|
|
|
"github.com/filecoin-project/lotus/miner"
|
|
|
|
"github.com/filecoin-project/lotus/node/modules"
|
2019-11-27 01:39:07 +00:00
|
|
|
"github.com/filecoin-project/lotus/node/modules/dtypes"
|
2019-10-18 04:47:41 +00:00
|
|
|
"github.com/filecoin-project/lotus/node/repo"
|
2019-11-25 04:45:13 +00:00
|
|
|
"github.com/filecoin-project/lotus/storage"
|
2019-07-19 09:24:11 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var initCmd = &cli.Command{
|
|
|
|
Name: "init",
|
|
|
|
Usage: "Initialize a lotus storage miner repo",
|
2019-08-16 21:50:00 +00:00
|
|
|
Flags: []cli.Flag{
|
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "actor",
|
|
|
|
Usage: "specify the address of an already created miner actor",
|
|
|
|
},
|
2019-08-20 18:17:59 +00:00
|
|
|
&cli.BoolFlag{
|
2019-09-26 20:57:20 +00:00
|
|
|
Name: "genesis-miner",
|
|
|
|
Usage: "enable genesis mining (DON'T USE ON BOOTSTRAPPED NETWORK)",
|
2019-09-26 12:19:21 +00:00
|
|
|
Hidden: true,
|
2019-08-20 18:17:59 +00:00
|
|
|
},
|
2019-09-26 00:47:53 +00:00
|
|
|
&cli.BoolFlag{
|
|
|
|
Name: "create-worker-key",
|
|
|
|
Usage: "create separate worker key",
|
|
|
|
},
|
2019-09-26 12:19:21 +00:00
|
|
|
&cli.StringFlag{
|
2019-09-26 20:57:20 +00:00
|
|
|
Name: "worker",
|
2019-09-26 12:19:21 +00:00
|
|
|
Aliases: []string{"w"},
|
2019-09-26 20:57:20 +00:00
|
|
|
Usage: "worker key to use (overrides --create-worker-key)",
|
2019-09-26 12:19:21 +00:00
|
|
|
},
|
|
|
|
&cli.StringFlag{
|
2019-09-26 20:57:20 +00:00
|
|
|
Name: "owner",
|
2019-09-26 12:19:21 +00:00
|
|
|
Aliases: []string{"o"},
|
2019-09-26 20:57:20 +00:00
|
|
|
Usage: "owner key to use",
|
2019-09-26 12:19:21 +00:00
|
|
|
},
|
2019-10-16 07:07:16 +00:00
|
|
|
&cli.Uint64Flag{
|
|
|
|
Name: "sector-size",
|
|
|
|
Usage: "specify sector size to use",
|
|
|
|
Value: build.SectorSizes[0],
|
|
|
|
},
|
2019-11-25 04:45:13 +00:00
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "pre-sealed-sectors",
|
|
|
|
Usage: "specify set of presealed sectors for starting as a genesis miner",
|
|
|
|
},
|
2019-08-16 21:50:00 +00:00
|
|
|
},
|
2019-07-19 09:24:11 +00:00
|
|
|
Action: func(cctx *cli.Context) error {
|
|
|
|
log.Info("Initializing lotus storage miner")
|
|
|
|
|
2019-10-02 17:20:30 +00:00
|
|
|
log.Info("Checking proof parameters")
|
2019-11-14 01:15:33 +00:00
|
|
|
if err := build.GetParams(true, false); err != nil {
|
2019-10-02 17:20:30 +00:00
|
|
|
return xerrors.Errorf("fetching proof parameters: %w", err)
|
|
|
|
}
|
|
|
|
|
2019-10-02 20:29:40 +00:00
|
|
|
log.Info("Checking if repo exists")
|
|
|
|
|
2019-10-18 05:13:36 +00:00
|
|
|
repoPath := cctx.String(FlagStorageRepo)
|
|
|
|
r, err := repo.NewFS(repoPath)
|
2019-07-19 09:24:11 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-07-23 21:54:54 +00:00
|
|
|
ok, err := r.Exists()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if ok {
|
2019-07-23 21:50:52 +00:00
|
|
|
return xerrors.Errorf("repo at '%s' is already initialized", cctx.String(FlagStorageRepo))
|
2019-07-19 09:24:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
log.Info("Trying to connect to full node RPC")
|
|
|
|
|
2019-10-03 18:12:30 +00:00
|
|
|
api, closer, err := lcli.GetFullNodeAPI(cctx) // TODO: consider storing full node address in config
|
2019-07-19 09:24:11 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-10-03 18:12:30 +00:00
|
|
|
defer closer()
|
2019-07-19 09:24:11 +00:00
|
|
|
ctx := lcli.ReqContext(cctx)
|
|
|
|
|
|
|
|
log.Info("Checking full node version")
|
|
|
|
|
2019-07-19 10:15:22 +00:00
|
|
|
v, err := api.Version(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-07-23 21:55:19 +00:00
|
|
|
if v.APIVersion&build.MinorMask != build.APIVersion&build.MinorMask {
|
2019-07-19 10:15:22 +00:00
|
|
|
return xerrors.Errorf("Remote API version didn't match (local %x, remote %x)", build.APIVersion, v.APIVersion)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Info("Initializing repo")
|
|
|
|
|
2019-11-12 17:59:38 +00:00
|
|
|
if err := r.Init(repo.StorageMiner); err != nil {
|
2019-07-19 09:24:11 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-11-25 04:45:13 +00:00
|
|
|
if pssb := cctx.String("pre-sealed-sectors"); pssb != "" {
|
|
|
|
log.Infof("moving pre-sealed-sectors from %s into newly created storage miner repo", pssb)
|
2019-11-27 01:39:07 +00:00
|
|
|
lr, err := r.Lock(repo.StorageMiner)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
mds, err := lr.Datastore("/metadata")
|
|
|
|
if err != nil {
|
2019-11-25 04:45:13 +00:00
|
|
|
return err
|
|
|
|
}
|
2019-11-27 01:39:07 +00:00
|
|
|
|
|
|
|
if err := migratePreSealedSectors(pssb, repoPath, mds); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := lr.Close(); err != nil {
|
|
|
|
return xerrors.Errorf("unlocking repo after preseal migration: %w", err)
|
|
|
|
}
|
2019-11-25 04:45:13 +00:00
|
|
|
}
|
|
|
|
|
2019-11-16 06:47:04 +00:00
|
|
|
if err := storageMinerInit(ctx, cctx, api, r); err != nil {
|
2019-11-16 06:16:18 +00:00
|
|
|
log.Errorf("Failed to initialize lotus-storage-miner: %+v", err)
|
2019-11-16 06:47:04 +00:00
|
|
|
path, err := homedir.Expand(repoPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2019-10-18 05:13:36 +00:00
|
|
|
}
|
2019-11-16 06:47:04 +00:00
|
|
|
log.Infof("Cleaning up %s after attempt...", path)
|
|
|
|
if err := os.RemoveAll(path); err != nil {
|
2019-11-15 11:54:12 +00:00
|
|
|
log.Errorf("Failed to clean up failed storage repo: %s", err)
|
|
|
|
}
|
|
|
|
return xerrors.Errorf("Storage-miner init failed")
|
2019-07-25 12:50:34 +00:00
|
|
|
}
|
|
|
|
|
2019-10-18 05:13:36 +00:00
|
|
|
// TODO: Point to setting storage price, maybe do it interactively or something
|
|
|
|
log.Info("Storage miner successfully created, you can now start it with 'lotus-storage-miner run'")
|
2019-07-25 12:50:34 +00:00
|
|
|
|
2019-10-18 05:13:36 +00:00
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
2019-07-25 12:50:34 +00:00
|
|
|
|
2019-11-25 04:45:13 +00:00
|
|
|
// TODO: this method should be a lot more robust for mainnet. For testnet, its
|
|
|
|
// fine if we mess things up a few times
|
2019-11-27 01:39:07 +00:00
|
|
|
// Also probably makes sense for this method to be in the sectorbuilder package
|
|
|
|
func migratePreSealedSectors(presealsb string, repoPath string, mds dtypes.MetadataDS) error {
|
2019-11-25 04:45:13 +00:00
|
|
|
pspath, err := homedir.Expand(presealsb)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-11-27 01:39:07 +00:00
|
|
|
srcds, err := badger.NewDatastore(filepath.Join(pspath, "badger"), nil)
|
|
|
|
if err != nil {
|
2019-11-27 11:57:52 +00:00
|
|
|
return xerrors.Errorf("openning presealed sectors datastore: %w", err)
|
2019-11-27 01:39:07 +00:00
|
|
|
}
|
|
|
|
|
2019-11-25 04:45:13 +00:00
|
|
|
expRepo, err := homedir.Expand(repoPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if stat, err := os.Stat(pspath); err != nil {
|
|
|
|
return xerrors.Errorf("failed to stat presealed sectors directory: %w", err)
|
|
|
|
} else if !stat.IsDir() {
|
|
|
|
return xerrors.Errorf("given presealed sectors path was not a directory: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, dir := range []string{"meta", "sealed", "staging", "cache"} {
|
|
|
|
from := filepath.Join(pspath, dir)
|
|
|
|
to := filepath.Join(expRepo, dir)
|
|
|
|
if err := os.Rename(from, to); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2019-11-27 01:39:07 +00:00
|
|
|
|
|
|
|
val, err := srcds.Get(sectorbuilder.LastSectorIdKey)
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("getting source last sector ID: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := mds.Put(sectorbuilder.LastSectorIdKey, val); err != nil {
|
|
|
|
return xerrors.Errorf("failed to write last sector ID key to target datastore: %w", err)
|
|
|
|
}
|
|
|
|
|
2019-11-25 04:45:13 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-11-16 06:47:04 +00:00
|
|
|
func storageMinerInit(ctx context.Context, cctx *cli.Context, api api.FullNode, r repo.Repo) error {
|
|
|
|
lr, err := r.Lock(repo.StorageMiner)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer lr.Close()
|
|
|
|
|
2019-10-18 05:13:36 +00:00
|
|
|
log.Info("Initializing libp2p identity")
|
2019-08-16 21:50:00 +00:00
|
|
|
|
2019-10-18 05:13:36 +00:00
|
|
|
p2pSk, err := makeHostKey(lr)
|
|
|
|
if err != nil {
|
2019-11-15 03:19:16 +00:00
|
|
|
return xerrors.Errorf("make host key: %w", err)
|
2019-10-18 05:13:36 +00:00
|
|
|
}
|
2019-08-16 21:50:00 +00:00
|
|
|
|
2019-10-18 05:13:36 +00:00
|
|
|
peerid, err := peer.IDFromPrivateKey(p2pSk)
|
|
|
|
if err != nil {
|
2019-11-15 03:19:16 +00:00
|
|
|
return xerrors.Errorf("peer ID from private key: %w", err)
|
2019-10-18 05:13:36 +00:00
|
|
|
}
|
2019-07-25 12:50:34 +00:00
|
|
|
|
2019-10-18 05:13:36 +00:00
|
|
|
var addr address.Address
|
|
|
|
if act := cctx.String("actor"); act != "" {
|
|
|
|
a, err := address.NewFromString(act)
|
2019-07-25 12:50:34 +00:00
|
|
|
if err != nil {
|
2019-11-15 03:19:16 +00:00
|
|
|
return xerrors.Errorf("failed parsing actor flag value (%q): %w", act, err)
|
2019-07-25 12:50:34 +00:00
|
|
|
}
|
2019-10-18 05:13:36 +00:00
|
|
|
|
2019-11-25 04:45:13 +00:00
|
|
|
if cctx.Bool("genesis-miner") {
|
|
|
|
mds, err := lr.Datastore("/metadata")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := mds.Put(datastore.NewKey("miner-address"), a.Bytes()); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
sbcfg, err := modules.SectorBuilderConfig(lr.Path(), 2)(mds, api)
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("getting genesis miner sector builder config: %w", err)
|
|
|
|
}
|
|
|
|
sb, err := sectorbuilder.New(sbcfg, mds)
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("failed to set up sectorbuilder for genesis mining: %w", err)
|
|
|
|
}
|
|
|
|
epp := storage.NewElectionPoStProver(sb)
|
|
|
|
|
|
|
|
m := miner.NewMiner(api, epp)
|
|
|
|
{
|
|
|
|
if err := m.Register(a); err != nil {
|
|
|
|
return xerrors.Errorf("failed to start up genesis miner: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
if err := m.Unregister(ctx, a); err != nil {
|
|
|
|
log.Error("failed to shut down storage miner: ", err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
if err := configureStorageMiner(ctx, api, a, peerid); err != nil {
|
|
|
|
return xerrors.Errorf("failed to configure storage miner: %w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
} else {
|
|
|
|
if err := configureStorageMiner(ctx, api, a, peerid); err != nil {
|
|
|
|
return xerrors.Errorf("failed to configure storage miner: %w", err)
|
|
|
|
}
|
2019-10-18 05:13:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
addr = a
|
|
|
|
} else {
|
|
|
|
a, err := createStorageMiner(ctx, api, peerid, cctx)
|
|
|
|
if err != nil {
|
2019-07-25 12:50:34 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-10-18 05:13:36 +00:00
|
|
|
addr = a
|
|
|
|
}
|
2019-07-25 12:50:34 +00:00
|
|
|
|
2019-10-18 05:13:36 +00:00
|
|
|
log.Infof("Created new storage miner: %s", addr)
|
2019-11-25 04:45:13 +00:00
|
|
|
mds, err := lr.Datastore("/metadata")
|
2019-10-18 05:13:36 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-11-25 04:45:13 +00:00
|
|
|
if err := mds.Put(datastore.NewKey("miner-address"), addr.Bytes()); err != nil {
|
2019-10-18 05:13:36 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2019-08-16 21:50:00 +00:00
|
|
|
}
|
2019-07-25 12:50:34 +00:00
|
|
|
|
2019-10-03 00:02:06 +00:00
|
|
|
func makeHostKey(lr repo.LockedRepo) (crypto.PrivKey, error) {
|
|
|
|
pk, _, err := crypto.GenerateEd25519Key(rand.Reader)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
ks, err := lr.KeyStore()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
kbytes, err := pk.Bytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := ks.Put("libp2p-host", types.KeyInfo{
|
|
|
|
Type: "libp2p-host",
|
|
|
|
PrivateKey: kbytes,
|
|
|
|
}); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return pk, nil
|
|
|
|
}
|
|
|
|
|
2019-11-25 04:45:13 +00:00
|
|
|
func configureStorageMiner(ctx context.Context, api api.FullNode, addr address.Address, peerid peer.ID) error {
|
2019-08-16 21:50:00 +00:00
|
|
|
// This really just needs to be an api call at this point...
|
2019-09-06 06:26:02 +00:00
|
|
|
recp, err := api.StateCall(ctx, &types.Message{
|
2019-08-16 21:50:00 +00:00
|
|
|
To: addr,
|
|
|
|
From: addr,
|
|
|
|
Method: actors.MAMethods.GetWorkerAddr,
|
|
|
|
}, nil)
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("failed to get worker address: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if recp.ExitCode != 0 {
|
|
|
|
return xerrors.Errorf("getWorkerAddr returned exit code %d", recp.ExitCode)
|
|
|
|
}
|
|
|
|
|
|
|
|
waddr, err := address.NewFromBytes(recp.Return)
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("getWorkerAddr returned bad address: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
enc, err := actors.SerializeParams(&actors.UpdatePeerIDParams{PeerID: peerid})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
msg := &types.Message{
|
|
|
|
To: addr,
|
|
|
|
From: waddr,
|
|
|
|
Method: actors.MAMethods.UpdatePeerID,
|
|
|
|
Params: enc,
|
2019-08-16 22:10:34 +00:00
|
|
|
Value: types.NewInt(0),
|
2019-08-16 21:50:00 +00:00
|
|
|
GasPrice: types.NewInt(0),
|
2019-10-17 00:43:38 +00:00
|
|
|
GasLimit: types.NewInt(100000000),
|
2019-08-16 21:50:00 +00:00
|
|
|
}
|
|
|
|
|
2019-09-17 08:15:26 +00:00
|
|
|
smsg, err := api.MpoolPushMessage(ctx, msg)
|
2019-08-16 21:50:00 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-08-16 22:10:34 +00:00
|
|
|
log.Info("Waiting for message: ", smsg.Cid())
|
2019-10-08 05:51:34 +00:00
|
|
|
ret, err := api.StateWaitMsg(ctx, smsg.Cid())
|
2019-08-16 21:50:00 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if ret.Receipt.ExitCode != 0 {
|
|
|
|
return xerrors.Errorf("update peer id message failed with exit code %d", ret.Receipt.ExitCode)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2019-07-25 12:50:34 +00:00
|
|
|
|
2019-09-26 12:19:21 +00:00
|
|
|
func createStorageMiner(ctx context.Context, api api.FullNode, peerid peer.ID, cctx *cli.Context) (addr address.Address, err error) {
|
2019-08-16 21:50:00 +00:00
|
|
|
log.Info("Creating StorageMarket.CreateStorageMiner message")
|
2019-07-25 12:50:34 +00:00
|
|
|
|
2019-09-26 12:19:21 +00:00
|
|
|
var owner address.Address
|
|
|
|
if cctx.String("owner") != "" {
|
|
|
|
owner, err = address.NewFromString(cctx.String("owner"))
|
|
|
|
} else {
|
|
|
|
owner, err = api.WalletDefaultAddress(ctx)
|
|
|
|
}
|
2019-08-16 21:50:00 +00:00
|
|
|
if err != nil {
|
|
|
|
return address.Undef, err
|
|
|
|
}
|
2019-07-25 12:50:34 +00:00
|
|
|
|
2019-10-16 07:07:16 +00:00
|
|
|
ssize := cctx.Uint64("sector-size")
|
|
|
|
|
2019-09-26 12:19:21 +00:00
|
|
|
worker := owner
|
|
|
|
if cctx.String("worker") != "" {
|
|
|
|
worker, err = address.NewFromString(cctx.String("worker"))
|
|
|
|
} else if cctx.Bool("create-worker-key") { // TODO: Do we need to force this if owner is Secpk?
|
|
|
|
worker, err = api.WalletNew(ctx, types.KTBLS)
|
|
|
|
}
|
|
|
|
// TODO: Transfer some initial funds to worker
|
|
|
|
if err != nil {
|
|
|
|
return address.Undef, err
|
2019-08-16 21:50:00 +00:00
|
|
|
}
|
2019-07-25 12:50:34 +00:00
|
|
|
|
2019-09-25 23:32:33 +00:00
|
|
|
collateral, err := api.StatePledgeCollateral(ctx, nil)
|
|
|
|
if err != nil {
|
|
|
|
return address.Undef, err
|
|
|
|
}
|
2019-07-25 12:50:34 +00:00
|
|
|
|
2019-09-10 23:03:17 +00:00
|
|
|
params, err := actors.SerializeParams(&actors.CreateStorageMinerParams{
|
2019-09-26 12:19:21 +00:00
|
|
|
Owner: owner,
|
|
|
|
Worker: worker,
|
2019-10-16 07:07:16 +00:00
|
|
|
SectorSize: ssize,
|
2019-08-16 21:50:00 +00:00
|
|
|
PeerID: peerid,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return address.Undef, err
|
|
|
|
}
|
2019-07-25 12:50:34 +00:00
|
|
|
|
2019-09-17 08:15:26 +00:00
|
|
|
createStorageMinerMsg := &types.Message{
|
2019-10-19 08:06:41 +00:00
|
|
|
To: actors.StoragePowerAddress,
|
2019-09-26 12:19:21 +00:00
|
|
|
From: owner,
|
2019-08-16 21:50:00 +00:00
|
|
|
Value: collateral,
|
2019-07-25 12:50:34 +00:00
|
|
|
|
2019-10-11 22:59:36 +00:00
|
|
|
Method: actors.SPAMethods.CreateStorageMiner,
|
2019-08-16 21:50:00 +00:00
|
|
|
Params: params,
|
2019-08-19 18:06:39 +00:00
|
|
|
|
2019-10-17 00:43:38 +00:00
|
|
|
GasLimit: types.NewInt(10000000),
|
2019-08-19 18:06:39 +00:00
|
|
|
GasPrice: types.NewInt(0),
|
2019-08-16 21:50:00 +00:00
|
|
|
}
|
2019-07-25 12:50:34 +00:00
|
|
|
|
2019-09-17 08:15:26 +00:00
|
|
|
signed, err := api.MpoolPushMessage(ctx, createStorageMinerMsg)
|
2019-08-16 21:50:00 +00:00
|
|
|
if err != nil {
|
|
|
|
return address.Undef, err
|
|
|
|
}
|
|
|
|
|
2019-09-17 08:15:26 +00:00
|
|
|
log.Infof("Pushed StorageMarket.CreateStorageMiner, %s to Mpool", signed.Cid())
|
2019-08-16 21:50:00 +00:00
|
|
|
log.Infof("Waiting for confirmation")
|
|
|
|
|
2019-10-08 05:51:34 +00:00
|
|
|
mw, err := api.StateWaitMsg(ctx, signed.Cid())
|
2019-08-16 21:50:00 +00:00
|
|
|
if err != nil {
|
|
|
|
return address.Undef, err
|
|
|
|
}
|
|
|
|
|
2019-10-16 07:45:48 +00:00
|
|
|
if mw.Receipt.ExitCode != 0 {
|
|
|
|
return address.Undef, xerrors.Errorf("create storage miner failed: exit code %d", mw.Receipt.ExitCode)
|
|
|
|
}
|
|
|
|
|
2019-09-26 12:19:21 +00:00
|
|
|
addr, err = address.NewFromBytes(mw.Receipt.Return)
|
2019-08-16 21:50:00 +00:00
|
|
|
if err != nil {
|
|
|
|
return address.Undef, err
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Infof("New storage miners address is: %s", addr)
|
|
|
|
return addr, nil
|
2019-07-19 09:24:11 +00:00
|
|
|
}
|