good morning!!!!
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
Erigon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
a
Erigon
Commits
9c7913d4
Unverified
Commit
9c7913d4
authored
3 years ago
by
Uttam Singh
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added init sub-command (#2626)
parent
9f62fe70
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
turbo/cli/make_app.go
+104
-0
104 additions, 0 deletions
turbo/cli/make_app.go
turbo/node/node.go
+5
-1
5 additions, 1 deletion
turbo/node/node.go
with
109 additions
and
1 deletion
turbo/cli/make_app.go
+
104
−
0
View file @
9c7913d4
...
...
@@ -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
}
This diff is collapsed.
Click to expand it.
turbo/node/node.go
+
5
−
1
View file @
9c7913d4
...
...
@@ -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
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment