good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit 9c7913d4 authored by Uttam Singh's avatar Uttam Singh Committed by GitHub
Browse files

Added init sub-command (#2626)

parent 9f62fe70
No related branches found
No related tags found
No related merge requests found
......@@ -2,9 +2,18 @@
package cli
import (
"encoding/json"
"os"
"github.com/ledgerwatch/erigon-lib/kv"
"github.com/ledgerwatch/erigon/cmd/utils"
"github.com/ledgerwatch/erigon/core"
"github.com/ledgerwatch/erigon/internal/debug"
"github.com/ledgerwatch/erigon/internal/flags"
"github.com/ledgerwatch/erigon/node"
"github.com/ledgerwatch/erigon/params"
"github.com/ledgerwatch/log/v3"
"github.com/urfave/cli"
)
......@@ -24,5 +33,100 @@ func MakeApp(action func(*cli.Context), cliFlags []cli.Flag) *cli.App {
debug.Exit()
return nil
}
app.Commands = []cli.Command{initCommand}
return app
}
var initCommand = cli.Command{
Action: MigrateFlags(initGenesis),
Name: "init",
Usage: "Bootstrap and initialize a new genesis block",
ArgsUsage: "<genesisPath>",
Flags: []cli.Flag{
utils.DataDirFlag,
},
Category: "BLOCKCHAIN COMMANDS",
Description: `
The init command initializes a new genesis block and definition for the network.
This is a destructive action and changes the network in which you will be
participating.
It expects the genesis file as argument.`,
}
// initGenesis will initialise the given JSON format genesis file and writes it as
// the zero'd block (i.e. genesis) or will fail hard if it can't succeed.
func initGenesis(ctx *cli.Context) error {
// Make sure we have a valid genesis JSON
genesisPath := ctx.Args().First()
if len(genesisPath) == 0 {
utils.Fatalf("Must supply path to genesis JSON file")
}
file, err := os.Open(genesisPath)
if err != nil {
utils.Fatalf("Failed to read genesis file: %v", err)
}
defer file.Close()
genesis := new(core.Genesis)
if err := json.NewDecoder(file).Decode(genesis); err != nil {
utils.Fatalf("invalid genesis file: %v", err)
}
// Open and initialise both full and light databases
stack := MakeConfigNodeDefault(ctx)
defer stack.Close()
chaindb, err := node.OpenDatabase(stack.Config(), log.New(ctx), kv.ChainDB)
if err != nil {
utils.Fatalf("Failed to open database: %v", err)
}
_, hash, err := core.CommitGenesisBlock(chaindb, genesis)
if err != nil {
utils.Fatalf("Failed to write genesis block: %v", err)
}
chaindb.Close()
log.Info("Successfully wrote genesis state", "hash", hash.Hash())
return nil
}
func MigrateFlags(action func(ctx *cli.Context) error) func(*cli.Context) error {
return func(ctx *cli.Context) error {
for _, name := range ctx.FlagNames() {
if ctx.IsSet(name) {
ctx.GlobalSet(name, ctx.String(name))
}
}
return action(ctx)
}
}
func NewNodeConfig(ctx *cli.Context) *node.Config {
nodeConfig := node.DefaultConfig
// see simiar changes in `cmd/geth/config.go#defaultNodeConfig`
if commit := params.GitCommit; commit != "" {
nodeConfig.Version = params.VersionWithCommit(commit, "")
} else {
nodeConfig.Version = params.Version
}
nodeConfig.IPCPath = "erigon.ipc" // force-disable IPC endpoint
nodeConfig.Name = "erigon"
if ctx.GlobalIsSet(utils.DataDirFlag.Name) {
nodeConfig.DataDir = ctx.GlobalString(utils.DataDirFlag.Name)
}
return &nodeConfig
}
func MakeConfigNodeDefault(ctx *cli.Context) *node.Node {
return makeConfigNode(NewNodeConfig(ctx))
}
func makeConfigNode(config *node.Config) *node.Node {
stack, err := node.New(config)
if err != nil {
utils.Fatalf("Failed to create Erigon node: %v", err)
}
return stack
}
......@@ -115,11 +115,15 @@ func NewNodeConfig() *node.Config {
} else {
nodeConfig.Version = params.Version
}
nodeConfig.IPCPath = "" // force-disable IPC endpoint
nodeConfig.IPCPath = "erigon.ipc" // force-disable IPC endpoint
nodeConfig.Name = "erigon"
return &nodeConfig
}
func MakeConfigNodeDefault() *node.Node {
return makeConfigNode(NewNodeConfig())
}
func makeConfigNode(config *node.Config) *node.Node {
stack, err := node.New(config)
if err != nil {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment