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
22411919
Unverified
Commit
22411919
authored
Jul 02, 2019
by
Péter Szilágyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmd, eth, les, param: drop --override.constantinople
parent
a0943b89
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
4 additions
and
28 deletions
+4
-28
config.go
cmd/geth/config.go
+0
-4
main.go
cmd/geth/main.go
+0
-1
flags.go
cmd/utils/flags.go
+0
-4
genesis.go
core/genesis.go
+0
-7
backend.go
eth/backend.go
+1
-1
config.go
eth/config.go
+0
-3
gen_config.go
eth/gen_config.go
+0
-5
backend.go
les/backend.go
+1
-1
config.go
params/config.go
+2
-2
No files found.
cmd/geth/config.go
View file @
22411919
...
...
@@ -20,7 +20,6 @@ import (
"bufio"
"errors"
"fmt"
"math/big"
"os"
"reflect"
"unicode"
...
...
@@ -153,9 +152,6 @@ func enableWhisper(ctx *cli.Context) bool {
func
makeFullNode
(
ctx
*
cli
.
Context
)
*
node
.
Node
{
stack
,
cfg
:=
makeConfigNode
(
ctx
)
if
ctx
.
GlobalIsSet
(
utils
.
ConstantinopleOverrideFlag
.
Name
)
{
cfg
.
Eth
.
ConstantinopleOverride
=
new
(
big
.
Int
)
.
SetUint64
(
ctx
.
GlobalUint64
(
utils
.
ConstantinopleOverrideFlag
.
Name
))
}
utils
.
RegisterEthService
(
stack
,
&
cfg
.
Eth
)
if
ctx
.
GlobalBool
(
utils
.
DashboardEnabledFlag
.
Name
)
{
...
...
cmd/geth/main.go
View file @
22411919
...
...
@@ -138,7 +138,6 @@ var (
utils
.
GoerliFlag
,
utils
.
VMEnableDebugFlag
,
utils
.
NetworkIdFlag
,
utils
.
ConstantinopleOverrideFlag
,
utils
.
EthStatsURLFlag
,
utils
.
FakePoWFlag
,
utils
.
NoCompactionFlag
,
...
...
cmd/utils/flags.go
View file @
22411919
...
...
@@ -155,10 +155,6 @@ var (
Name
:
"goerli"
,
Usage
:
"Görli network: pre-configured proof-of-authority test network"
,
}
ConstantinopleOverrideFlag
=
cli
.
Uint64Flag
{
Name
:
"override.constantinople"
,
Usage
:
"Manually specify constantinople fork-block, overriding the bundled setting"
,
}
DeveloperFlag
=
cli
.
BoolFlag
{
Name
:
"dev"
,
Usage
:
"Ephemeral proof-of-authority network with a pre-funded developer account, mining enabled"
,
...
...
core/genesis.go
View file @
22411919
...
...
@@ -151,9 +151,6 @@ func (e *GenesisMismatchError) Error() string {
//
// The returned chain configuration is never nil.
func
SetupGenesisBlock
(
db
ethdb
.
Database
,
genesis
*
Genesis
)
(
*
params
.
ChainConfig
,
common
.
Hash
,
error
)
{
return
SetupGenesisBlockWithOverride
(
db
,
genesis
,
nil
)
}
func
SetupGenesisBlockWithOverride
(
db
ethdb
.
Database
,
genesis
*
Genesis
,
constantinopleOverride
*
big
.
Int
)
(
*
params
.
ChainConfig
,
common
.
Hash
,
error
)
{
if
genesis
!=
nil
&&
genesis
.
Config
==
nil
{
return
params
.
AllEthashProtocolChanges
,
common
.
Hash
{},
errGenesisNoConfig
}
...
...
@@ -196,10 +193,6 @@ func SetupGenesisBlockWithOverride(db ethdb.Database, genesis *Genesis, constant
// Get the existing chain configuration.
newcfg
:=
genesis
.
configOrDefault
(
stored
)
if
constantinopleOverride
!=
nil
{
newcfg
.
ConstantinopleBlock
=
constantinopleOverride
newcfg
.
PetersburgBlock
=
constantinopleOverride
}
storedcfg
:=
rawdb
.
ReadChainConfig
(
db
,
stored
)
if
storedcfg
==
nil
{
log
.
Warn
(
"Found genesis block without chain config"
)
...
...
eth/backend.go
View file @
22411919
...
...
@@ -134,7 +134,7 @@ func New(ctx *node.ServiceContext, config *Config) (*Ethereum, error) {
if
err
!=
nil
{
return
nil
,
err
}
chainConfig
,
genesisHash
,
genesisErr
:=
core
.
SetupGenesisBlock
WithOverride
(
chainDb
,
config
.
Genesis
,
config
.
ConstantinopleOverride
)
chainConfig
,
genesisHash
,
genesisErr
:=
core
.
SetupGenesisBlock
(
chainDb
,
config
.
Genesis
)
if
_
,
ok
:=
genesisErr
.
(
*
params
.
ConfigCompatError
);
genesisErr
!=
nil
&&
!
ok
{
return
nil
,
genesisErr
}
...
...
eth/config.go
View file @
22411919
...
...
@@ -144,9 +144,6 @@ type Config struct {
// Type of the EVM interpreter ("" for default)
EVMInterpreter
string
// Constantinople block override (TODO: remove after the fork)
ConstantinopleOverride
*
big
.
Int
// RPCGasCap is the global gas cap for eth-call variants.
RPCGasCap
*
big
.
Int
`toml:",omitempty"`
...
...
eth/gen_config.go
View file @
22411919
...
...
@@ -78,7 +78,6 @@ func (c Config) MarshalTOML() (interface{}, error) {
enc
.
DocRoot
=
c
.
DocRoot
enc
.
EWASMInterpreter
=
c
.
EWASMInterpreter
enc
.
EVMInterpreter
=
c
.
EVMInterpreter
enc
.
ConstantinopleOverride
=
c
.
ConstantinopleOverride
enc
.
RPCGasCap
=
c
.
RPCGasCap
enc
.
Checkpoint
=
c
.
Checkpoint
enc
.
CheckpointOracle
=
c
.
CheckpointOracle
...
...
@@ -115,7 +114,6 @@ func (c *Config) UnmarshalTOML(unmarshal func(interface{}) error) error {
DocRoot
*
string
`toml:"-"`
EWASMInterpreter
*
string
EVMInterpreter
*
string
ConstantinopleOverride
*
big
.
Int
RPCGasCap
*
big
.
Int
`toml:",omitempty"`
Checkpoint
*
params
.
TrustedCheckpoint
CheckpointOracle
*
params
.
CheckpointOracleConfig
...
...
@@ -205,9 +203,6 @@ func (c *Config) UnmarshalTOML(unmarshal func(interface{}) error) error {
if
dec
.
EVMInterpreter
!=
nil
{
c
.
EVMInterpreter
=
*
dec
.
EVMInterpreter
}
if
dec
.
ConstantinopleOverride
!=
nil
{
c
.
ConstantinopleOverride
=
dec
.
ConstantinopleOverride
}
if
dec
.
RPCGasCap
!=
nil
{
c
.
RPCGasCap
=
dec
.
RPCGasCap
}
...
...
les/backend.go
View file @
22411919
...
...
@@ -84,7 +84,7 @@ func New(ctx *node.ServiceContext, config *eth.Config) (*LightEthereum, error) {
if
err
!=
nil
{
return
nil
,
err
}
chainConfig
,
genesisHash
,
genesisErr
:=
core
.
SetupGenesisBlock
WithOverride
(
chainDb
,
config
.
Genesis
,
config
.
ConstantinopleOverride
)
chainConfig
,
genesisHash
,
genesisErr
:=
core
.
SetupGenesisBlock
(
chainDb
,
config
.
Genesis
)
if
_
,
isCompat
:=
genesisErr
.
(
*
params
.
ConfigCompatError
);
genesisErr
!=
nil
&&
!
isCompat
{
return
nil
,
genesisErr
}
...
...
params/config.go
View file @
22411919
...
...
@@ -282,7 +282,7 @@ func (c *ChainConfig) String() string {
default
:
engine
=
"unknown"
}
return
fmt
.
Sprintf
(
"{ChainID: %v Homestead: %v DAO: %v DAOSupport: %v EIP150: %v EIP155: %v EIP158: %v Byzantium: %v Constantinople: %v
ConstantinopleFix
: %v Engine: %v}"
,
return
fmt
.
Sprintf
(
"{ChainID: %v Homestead: %v DAO: %v DAOSupport: %v EIP150: %v EIP155: %v EIP158: %v Byzantium: %v Constantinople: %v
Petersburg
: %v Engine: %v}"
,
c
.
ChainID
,
c
.
HomesteadBlock
,
c
.
DAOForkBlock
,
...
...
@@ -410,7 +410,7 @@ func (c *ChainConfig) checkCompatible(newcfg *ChainConfig, head *big.Int) *Confi
return
newCompatError
(
"Constantinople fork block"
,
c
.
ConstantinopleBlock
,
newcfg
.
ConstantinopleBlock
)
}
if
isForkIncompatible
(
c
.
PetersburgBlock
,
newcfg
.
PetersburgBlock
,
head
)
{
return
newCompatError
(
"
ConstantinopleFix
fork block"
,
c
.
PetersburgBlock
,
newcfg
.
PetersburgBlock
)
return
newCompatError
(
"
Petersburg
fork block"
,
c
.
PetersburgBlock
,
newcfg
.
PetersburgBlock
)
}
if
isForkIncompatible
(
c
.
EWASMBlock
,
newcfg
.
EWASMBlock
,
head
)
{
return
newCompatError
(
"ewasm fork block"
,
c
.
EWASMBlock
,
newcfg
.
EWASMBlock
)
...
...
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