good morning!!!!
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
bor
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
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
open
bor
Commits
9e56811a
Commit
9e56811a
authored
8 years ago
by
Péter Szilágyi
Browse files
Options
Downloads
Patches
Plain Diff
core: gracefully handle missing homestead block config
parent
6060e098
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cmd/geth/genesis_test.go
+105
-0
105 additions, 0 deletions
cmd/geth/genesis_test.go
core/config.go
+1
-1
1 addition, 1 deletion
core/config.go
with
106 additions
and
1 deletion
cmd/geth/genesis_test.go
0 → 100644
+
105
−
0
View file @
9e56811a
// Copyright 2016 The go-ethereum Authors
// This file is part of go-ethereum.
//
// go-ethereum is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// go-ethereum is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
package
main
import
(
"io/ioutil"
"os"
"path/filepath"
"testing"
)
var
customGenesisTests
=
[]
struct
{
genesis
string
query
string
result
string
}{
// Plain genesis file without anything extra
{
genesis
:
`{
"alloc" : {},
"coinbase" : "0x0000000000000000000000000000000000000000",
"difficulty" : "0x20000",
"extraData" : "",
"gasLimit" : "0x2fefd8",
"nonce" : "0x0000000000000042",
"mixhash" : "0x0000000000000000000000000000000000000000000000000000000000000000",
"parentHash" : "0x0000000000000000000000000000000000000000000000000000000000000000",
"timestamp" : "0x00"
}`
,
query
:
"eth.getBlock(0).nonce"
,
result
:
"0x0000000000000042"
,
},
// Genesis file with an empty chain configuration (ensure missing fields work)
{
genesis
:
`{
"alloc" : {},
"coinbase" : "0x0000000000000000000000000000000000000000",
"difficulty" : "0x20000",
"extraData" : "",
"gasLimit" : "0x2fefd8",
"nonce" : "0x0000000000000042",
"mixhash" : "0x0000000000000000000000000000000000000000000000000000000000000000",
"parentHash" : "0x0000000000000000000000000000000000000000000000000000000000000000",
"timestamp" : "0x00",
"config" : {}
}`
,
query
:
"eth.getBlock(0).nonce"
,
result
:
"0x0000000000000042"
,
},
// Genesis file with specific chain configurations
{
genesis
:
`{
"alloc" : {},
"coinbase" : "0x0000000000000000000000000000000000000000",
"difficulty" : "0x20000",
"extraData" : "",
"gasLimit" : "0x2fefd8",
"nonce" : "0x0000000000000042",
"mixhash" : "0x0000000000000000000000000000000000000000000000000000000000000000",
"parentHash" : "0x0000000000000000000000000000000000000000000000000000000000000000",
"timestamp" : "0x00",
"config" : {
"homesteadBlock" : 314,
},
}`
,
query
:
"eth.getBlock(0).nonce"
,
result
:
"0x0000000000000042"
,
},
}
// Tests that initializing Geth with a custom genesis block and chain definitions
// work properly.
func
TestCustomGenesis
(
t
*
testing
.
T
)
{
for
i
,
tt
:=
range
customGenesisTests
{
// Create a temporary data directory to use and inspect later
datadir
:=
tmpdir
(
t
)
defer
os
.
RemoveAll
(
datadir
)
// Initialize the data directory with the custom genesis block
json
:=
filepath
.
Join
(
datadir
,
"genesis.json"
)
if
err
:=
ioutil
.
WriteFile
(
json
,
[]
byte
(
tt
.
genesis
),
0600
);
err
!=
nil
{
t
.
Fatalf
(
"test %d: failed to write genesis file: %v"
,
i
,
err
)
}
runGeth
(
t
,
"--datadir"
,
datadir
,
"init"
,
json
)
.
cmd
.
Wait
()
// Query the custom genesis block
geth
:=
runGeth
(
t
,
"--datadir"
,
datadir
,
"--maxpeers"
,
"0"
,
"--nodiscover"
,
"--nat"
,
"none"
,
"--ipcdisable"
,
"--exec"
,
tt
.
query
,
"console"
)
geth
.
expectRegexp
(
tt
.
result
)
geth
.
expectExit
()
}
}
This diff is collapsed.
Click to expand it.
core/config.go
+
1
−
1
View file @
9e56811a
...
...
@@ -39,7 +39,7 @@ type ChainConfig struct {
// IsHomestead returns whether num is either equal to the homestead block or greater.
func
(
c
*
ChainConfig
)
IsHomestead
(
num
*
big
.
Int
)
bool
{
if
num
==
nil
{
if
c
.
HomesteadBlock
==
nil
||
num
==
nil
{
return
false
}
return
num
.
Cmp
(
c
.
HomesteadBlock
)
>=
0
...
...
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