2017-04-12 14:27:23 +00:00
|
|
|
// Code generated by github.com/fjl/gencodec. DO NOT EDIT.
|
|
|
|
|
2021-02-05 12:51:15 +00:00
|
|
|
package ethconfig
|
2017-04-12 14:27:23 +00:00
|
|
|
|
|
|
|
import (
|
2019-05-27 13:51:49 +00:00
|
|
|
"github.com/ledgerwatch/turbo-geth/common"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/consensus/ethash"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/core"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/eth/gasprice"
|
2020-06-09 13:11:09 +00:00
|
|
|
"github.com/ledgerwatch/turbo-geth/ethdb"
|
2019-05-27 13:51:49 +00:00
|
|
|
"github.com/ledgerwatch/turbo-geth/params"
|
2017-04-12 14:27:23 +00:00
|
|
|
)
|
|
|
|
|
2018-08-21 19:56:54 +00:00
|
|
|
// MarshalTOML marshals as TOML.
|
2017-04-12 14:27:23 +00:00
|
|
|
func (c Config) MarshalTOML() (interface{}, error) {
|
|
|
|
type Config struct {
|
|
|
|
Genesis *core.Genesis `toml:",omitempty"`
|
2019-05-27 13:51:49 +00:00
|
|
|
NetworkID uint64
|
2021-03-12 17:26:06 +00:00
|
|
|
EthDiscoveryURLs []string
|
2020-06-09 13:11:09 +00:00
|
|
|
Pruning bool
|
2019-04-23 07:08:51 +00:00
|
|
|
Whitelist map[uint64]common.Hash `toml:"-"`
|
2019-12-06 11:19:00 +00:00
|
|
|
StorageMode string
|
2019-05-27 13:51:49 +00:00
|
|
|
OnlyAnnounce bool
|
2020-11-18 09:51:33 +00:00
|
|
|
Preimages bool
|
2021-03-23 09:00:07 +00:00
|
|
|
Miner params.MiningConfig
|
2018-01-08 12:15:57 +00:00
|
|
|
Ethash ethash.Config
|
2017-05-26 10:40:47 +00:00
|
|
|
TxPool core.TxPoolConfig
|
2017-04-12 14:27:23 +00:00
|
|
|
GPO gasprice.Config
|
|
|
|
EnablePreimageRecording bool
|
2021-03-26 02:08:01 +00:00
|
|
|
DocRoot string `toml:"-"`
|
2020-07-01 17:54:21 +00:00
|
|
|
RPCGasCap uint64 `toml:",omitempty"`
|
2020-06-17 07:46:31 +00:00
|
|
|
RPCTxFeeCap float64 `toml:",omitempty"`
|
2019-07-11 11:37:08 +00:00
|
|
|
Checkpoint *params.TrustedCheckpoint `toml:",omitempty"`
|
|
|
|
CheckpointOracle *params.CheckpointOracleConfig `toml:",omitempty"`
|
2017-04-12 14:27:23 +00:00
|
|
|
}
|
|
|
|
var enc Config
|
|
|
|
enc.Genesis = c.Genesis
|
2019-05-27 13:51:49 +00:00
|
|
|
enc.NetworkID = c.NetworkID
|
2021-03-12 17:26:06 +00:00
|
|
|
enc.EthDiscoveryURLs = c.EthDiscoveryURLs
|
2020-05-07 13:31:14 +00:00
|
|
|
enc.Pruning = c.Pruning
|
2019-04-23 07:08:51 +00:00
|
|
|
enc.Whitelist = c.Whitelist
|
2019-12-06 11:19:00 +00:00
|
|
|
enc.StorageMode = c.StorageMode.ToString()
|
2020-11-18 09:51:33 +00:00
|
|
|
enc.Preimages = c.Preimages
|
2019-04-23 07:08:51 +00:00
|
|
|
enc.Miner = c.Miner
|
2018-01-08 12:15:57 +00:00
|
|
|
enc.Ethash = c.Ethash
|
2017-05-26 10:40:47 +00:00
|
|
|
enc.TxPool = c.TxPool
|
2017-04-12 14:27:23 +00:00
|
|
|
enc.GPO = c.GPO
|
|
|
|
enc.EnablePreimageRecording = c.EnablePreimageRecording
|
|
|
|
enc.DocRoot = c.DocRoot
|
2019-04-23 07:08:51 +00:00
|
|
|
enc.RPCGasCap = c.RPCGasCap
|
2020-06-17 07:46:31 +00:00
|
|
|
enc.RPCTxFeeCap = c.RPCTxFeeCap
|
all: on-chain oracle checkpoint syncing (#19543)
* all: implement simple checkpoint syncing
cmd, les, node: remove callback mechanism
cmd, node: remove callback definition
les: simplify the registrar
les: expose checkpoint rpc services in the light client
les, light: don't store untrusted receipt
cmd, contracts, les: discard stale checkpoint
cmd, contracts/registrar: loose restriction of registeration
cmd, contracts: add replay-protection
all: off-chain multi-signature contract
params: deploy checkpoint contract for rinkeby
cmd/registrar: add raw signing mode for registrar
cmd/registrar, contracts/registrar, les: fixed messages
* cmd/registrar, contracts/registrar: fix lints
* accounts/abi/bind, les: address comments
* cmd, contracts, les, light, params: minor checkpoint sync cleanups
* cmd, eth, les, light: move checkpoint config to config file
* cmd, eth, les, params: address comments
* eth, les, params: address comments
* cmd: polish up the checkpoint admin CLI
* cmd, contracts, params: deploy new version contract
* cmd/checkpoint-admin: add another flag for clef mode signing
* cmd, contracts, les: rename and regen checkpoint oracle with abigen
2019-06-28 07:34:02 +00:00
|
|
|
enc.Checkpoint = c.Checkpoint
|
|
|
|
enc.CheckpointOracle = c.CheckpointOracle
|
2017-04-12 14:27:23 +00:00
|
|
|
return &enc, nil
|
|
|
|
}
|
|
|
|
|
2018-08-21 19:56:54 +00:00
|
|
|
// UnmarshalTOML unmarshals from TOML.
|
2017-04-12 14:27:23 +00:00
|
|
|
func (c *Config) UnmarshalTOML(unmarshal func(interface{}) error) error {
|
|
|
|
type Config struct {
|
|
|
|
Genesis *core.Genesis `toml:",omitempty"`
|
2019-05-27 13:51:49 +00:00
|
|
|
NetworkID *uint64
|
2021-03-12 17:26:06 +00:00
|
|
|
EthDiscoveryURLs []string
|
2020-06-09 13:11:09 +00:00
|
|
|
Pruning *bool
|
2019-04-23 07:08:51 +00:00
|
|
|
Whitelist map[uint64]common.Hash `toml:"-"`
|
2019-12-06 11:19:00 +00:00
|
|
|
Mode *string
|
2019-05-27 13:51:49 +00:00
|
|
|
OnlyAnnounce *bool
|
|
|
|
SkipBcVersionCheck *bool `toml:"-"`
|
|
|
|
DatabaseHandles *int `toml:"-"`
|
all: on-chain oracle checkpoint syncing (#19543)
* all: implement simple checkpoint syncing
cmd, les, node: remove callback mechanism
cmd, node: remove callback definition
les: simplify the registrar
les: expose checkpoint rpc services in the light client
les, light: don't store untrusted receipt
cmd, contracts, les: discard stale checkpoint
cmd, contracts/registrar: loose restriction of registeration
cmd, contracts: add replay-protection
all: off-chain multi-signature contract
params: deploy checkpoint contract for rinkeby
cmd/registrar: add raw signing mode for registrar
cmd/registrar, contracts/registrar, les: fixed messages
* cmd/registrar, contracts/registrar: fix lints
* accounts/abi/bind, les: address comments
* cmd, contracts, les, light, params: minor checkpoint sync cleanups
* cmd, eth, les, light: move checkpoint config to config file
* cmd, eth, les, params: address comments
* eth, les, params: address comments
* cmd: polish up the checkpoint admin CLI
* cmd, contracts, params: deploy new version contract
* cmd/checkpoint-admin: add another flag for clef mode signing
* cmd, contracts, les: rename and regen checkpoint oracle with abigen
2019-06-28 07:34:02 +00:00
|
|
|
DatabaseFreezer *string
|
2020-11-18 09:51:33 +00:00
|
|
|
Preimages *bool
|
2021-03-23 09:00:07 +00:00
|
|
|
Miner *params.MiningConfig
|
2018-01-08 12:15:57 +00:00
|
|
|
Ethash *ethash.Config
|
2017-05-26 10:40:47 +00:00
|
|
|
TxPool *core.TxPoolConfig
|
2017-04-12 14:27:23 +00:00
|
|
|
GPO *gasprice.Config
|
|
|
|
EnablePreimageRecording *bool
|
2021-03-26 02:08:01 +00:00
|
|
|
DocRoot *string `toml:"-"`
|
2020-07-01 17:54:21 +00:00
|
|
|
RPCGasCap *uint64 `toml:",omitempty"`
|
2020-06-17 07:46:31 +00:00
|
|
|
RPCTxFeeCap *float64 `toml:",omitempty"`
|
2019-07-11 11:37:08 +00:00
|
|
|
Checkpoint *params.TrustedCheckpoint `toml:",omitempty"`
|
|
|
|
CheckpointOracle *params.CheckpointOracleConfig `toml:",omitempty"`
|
2017-04-12 14:27:23 +00:00
|
|
|
}
|
|
|
|
var dec Config
|
|
|
|
if err := unmarshal(&dec); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if dec.Genesis != nil {
|
|
|
|
c.Genesis = dec.Genesis
|
|
|
|
}
|
2019-05-27 13:51:49 +00:00
|
|
|
if dec.NetworkID != nil {
|
|
|
|
c.NetworkID = *dec.NetworkID
|
2017-04-12 14:27:23 +00:00
|
|
|
}
|
2020-12-14 09:27:15 +00:00
|
|
|
if dec.EthDiscoveryURLs != nil {
|
|
|
|
c.EthDiscoveryURLs = dec.EthDiscoveryURLs
|
2020-02-13 13:38:30 +00:00
|
|
|
}
|
2020-05-07 13:31:14 +00:00
|
|
|
if dec.Pruning != nil {
|
|
|
|
c.Pruning = *dec.Pruning
|
2018-08-21 19:56:54 +00:00
|
|
|
}
|
2019-04-23 07:08:51 +00:00
|
|
|
if dec.Whitelist != nil {
|
|
|
|
c.Whitelist = dec.Whitelist
|
|
|
|
}
|
2019-12-06 11:19:00 +00:00
|
|
|
if dec.Mode != nil {
|
2020-06-09 13:11:09 +00:00
|
|
|
mode, err := ethdb.StorageModeFromString(*dec.Mode)
|
2019-12-06 11:19:00 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
c.StorageMode = mode
|
2019-05-27 13:51:49 +00:00
|
|
|
}
|
2020-11-18 09:51:33 +00:00
|
|
|
if dec.Preimages != nil {
|
|
|
|
c.Preimages = *dec.Preimages
|
|
|
|
}
|
2019-04-23 07:08:51 +00:00
|
|
|
if dec.Miner != nil {
|
|
|
|
c.Miner = *dec.Miner
|
2018-08-28 13:59:05 +00:00
|
|
|
}
|
2018-01-08 12:15:57 +00:00
|
|
|
if dec.Ethash != nil {
|
|
|
|
c.Ethash = *dec.Ethash
|
2017-04-12 14:27:23 +00:00
|
|
|
}
|
2017-05-26 10:40:47 +00:00
|
|
|
if dec.TxPool != nil {
|
|
|
|
c.TxPool = *dec.TxPool
|
|
|
|
}
|
2017-04-12 14:27:23 +00:00
|
|
|
if dec.GPO != nil {
|
|
|
|
c.GPO = *dec.GPO
|
|
|
|
}
|
|
|
|
if dec.EnablePreimageRecording != nil {
|
|
|
|
c.EnablePreimageRecording = *dec.EnablePreimageRecording
|
|
|
|
}
|
|
|
|
if dec.DocRoot != nil {
|
|
|
|
c.DocRoot = *dec.DocRoot
|
|
|
|
}
|
2019-04-23 07:08:51 +00:00
|
|
|
if dec.RPCGasCap != nil {
|
2020-07-01 17:54:21 +00:00
|
|
|
c.RPCGasCap = *dec.RPCGasCap
|
2019-04-23 07:08:51 +00:00
|
|
|
}
|
2020-06-17 07:46:31 +00:00
|
|
|
if dec.RPCTxFeeCap != nil {
|
|
|
|
c.RPCTxFeeCap = *dec.RPCTxFeeCap
|
|
|
|
}
|
all: on-chain oracle checkpoint syncing (#19543)
* all: implement simple checkpoint syncing
cmd, les, node: remove callback mechanism
cmd, node: remove callback definition
les: simplify the registrar
les: expose checkpoint rpc services in the light client
les, light: don't store untrusted receipt
cmd, contracts, les: discard stale checkpoint
cmd, contracts/registrar: loose restriction of registeration
cmd, contracts: add replay-protection
all: off-chain multi-signature contract
params: deploy checkpoint contract for rinkeby
cmd/registrar: add raw signing mode for registrar
cmd/registrar, contracts/registrar, les: fixed messages
* cmd/registrar, contracts/registrar: fix lints
* accounts/abi/bind, les: address comments
* cmd, contracts, les, light, params: minor checkpoint sync cleanups
* cmd, eth, les, light: move checkpoint config to config file
* cmd, eth, les, params: address comments
* eth, les, params: address comments
* cmd: polish up the checkpoint admin CLI
* cmd, contracts, params: deploy new version contract
* cmd/checkpoint-admin: add another flag for clef mode signing
* cmd, contracts, les: rename and regen checkpoint oracle with abigen
2019-06-28 07:34:02 +00:00
|
|
|
if dec.Checkpoint != nil {
|
|
|
|
c.Checkpoint = dec.Checkpoint
|
|
|
|
}
|
|
|
|
if dec.CheckpointOracle != nil {
|
|
|
|
c.CheckpointOracle = dec.CheckpointOracle
|
|
|
|
}
|
2017-04-12 14:27:23 +00:00
|
|
|
return nil
|
|
|
|
}
|