Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
96c7c39a
Commit
96c7c39a
authored
Apr 02, 2016
by
Jeffrey Wilcke
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2409 from fjl/geth-fixup-init
cmd/geth: fix startup with empty database
parents
fb578f45
cf842b3f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
18 deletions
+19
-18
main.go
cmd/geth/main.go
+6
-0
flags.go
cmd/utils/flags.go
+13
-14
backend.go
eth/backend.go
+0
-4
No files found.
cmd/geth/main.go
View file @
96c7c39a
...
@@ -359,6 +359,12 @@ JavaScript API. See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Conso
...
@@ -359,6 +359,12 @@ JavaScript API. See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Conso
go
metrics
.
CollectProcessMetrics
(
3
*
time
.
Second
)
go
metrics
.
CollectProcessMetrics
(
3
*
time
.
Second
)
utils
.
SetupNetwork
(
ctx
)
utils
.
SetupNetwork
(
ctx
)
// Deprecation warning.
if
ctx
.
GlobalIsSet
(
utils
.
GenesisFileFlag
.
Name
)
{
common
.
PrintDepricationWarning
(
"--genesis is deprecated. Switch to use 'geth init /path/to/file'"
)
}
return
nil
return
nil
}
}
...
...
cmd/utils/flags.go
View file @
96c7c39a
...
@@ -772,23 +772,22 @@ func MustMakeChainConfig(ctx *cli.Context) *core.ChainConfig {
...
@@ -772,23 +772,22 @@ func MustMakeChainConfig(ctx *cli.Context) *core.ChainConfig {
)
)
defer
db
.
Close
()
defer
db
.
Close
()
chainConfig
,
err
:=
core
.
GetChainConfig
(
db
,
genesis
.
Hash
())
if
genesis
!=
nil
{
if
err
!=
nil
{
// Exsting genesis block, use stored config if available.
if
err
!=
core
.
ChainConfigNotFoundErr
{
storedConfig
,
err
:=
core
.
GetChainConfig
(
db
,
genesis
.
Hash
())
if
err
==
nil
{
return
storedConfig
}
else
if
err
!=
core
.
ChainConfigNotFoundErr
{
Fatalf
(
"Could not make chain configuration: %v"
,
err
)
Fatalf
(
"Could not make chain configuration: %v"
,
err
)
}
}
var
homesteadBlockNo
*
big
.
Int
if
ctx
.
GlobalBool
(
TestNetFlag
.
Name
)
{
homesteadBlockNo
=
params
.
TestNetHomesteadBlock
}
else
{
homesteadBlockNo
=
params
.
MainNetHomesteadBlock
}
chainConfig
=
&
core
.
ChainConfig
{
HomesteadBlock
:
homesteadBlockNo
,
}
}
}
return
chainConfig
var
homesteadBlockNo
*
big
.
Int
if
ctx
.
GlobalBool
(
TestNetFlag
.
Name
)
{
homesteadBlockNo
=
params
.
TestNetHomesteadBlock
}
else
{
homesteadBlockNo
=
params
.
MainNetHomesteadBlock
}
return
&
core
.
ChainConfig
{
HomesteadBlock
:
homesteadBlockNo
}
}
}
// MakeChainDatabase open an LevelDB using the flags passed to the client and will hard crash if it fails.
// MakeChainDatabase open an LevelDB using the flags passed to the client and will hard crash if it fails.
...
...
eth/backend.go
View file @
96c7c39a
...
@@ -169,10 +169,6 @@ func New(ctx *node.ServiceContext, config *Config) (*Ethereum, error) {
...
@@ -169,10 +169,6 @@ func New(ctx *node.ServiceContext, config *Config) (*Ethereum, error) {
// Load up any custom genesis block if requested
// Load up any custom genesis block if requested
if
len
(
config
.
Genesis
)
>
0
{
if
len
(
config
.
Genesis
)
>
0
{
// Using println instead of glog to make sure it **always** displays regardless of
// verbosity settings.
common
.
PrintDepricationWarning
(
"--genesis is deprecated. Switch to use 'geth init /path/to/file'"
)
block
,
err
:=
core
.
WriteGenesisBlock
(
chainDb
,
strings
.
NewReader
(
config
.
Genesis
))
block
,
err
:=
core
.
WriteGenesisBlock
(
chainDb
,
strings
.
NewReader
(
config
.
Genesis
))
if
err
!=
nil
{
if
err
!=
nil
{
return
nil
,
err
return
nil
,
err
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment