lotus/node/modules/testing/genesis.go

16 lines
374 B
Go
Raw Normal View History

2019-07-08 13:36:43 +00:00
package testing
import (
"github.com/filecoin-project/go-lotus/chain"
"github.com/filecoin-project/go-lotus/node/modules"
blockstore "github.com/ipfs/go-ipfs-blockstore"
)
func MakeGenesis(bs blockstore.Blockstore, w *chain.Wallet) (modules.Genesis, error) {
genb, err := chain.MakeGenesisBlock(bs, w)
if err != nil {
return nil, err
}
return genb.Genesis, nil
}