mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-23 05:06:43 +00:00
add flag
This commit is contained in:
parent
a33a1c9142
commit
0684a33a50
3 changed files with 47 additions and 21 deletions
|
|
@ -188,6 +188,8 @@ var (
|
||||||
utils.AllowUnprotectedTxs,
|
utils.AllowUnprotectedTxs,
|
||||||
utils.BatchRequestLimit,
|
utils.BatchRequestLimit,
|
||||||
utils.BatchResponseMaxSize,
|
utils.BatchResponseMaxSize,
|
||||||
|
utils.RPCTxSyncDefaultFlag,
|
||||||
|
utils.RPCTxSyncMaxFlag,
|
||||||
}
|
}
|
||||||
|
|
||||||
metricsFlags = []cli.Flag{
|
metricsFlags = []cli.Flag{
|
||||||
|
|
|
||||||
|
|
@ -615,6 +615,18 @@ var (
|
||||||
Value: ethconfig.Defaults.LogQueryLimit,
|
Value: ethconfig.Defaults.LogQueryLimit,
|
||||||
Category: flags.APICategory,
|
Category: flags.APICategory,
|
||||||
}
|
}
|
||||||
|
RPCTxSyncDefaultFlag = &cli.DurationFlag{
|
||||||
|
Name: "rpc.txsync.default",
|
||||||
|
Usage: "Default timeout for eth_sendRawTransactionSync (e.g. 2s, 500ms)",
|
||||||
|
Value: ethconfig.Defaults.TxSyncDefaultTimeout,
|
||||||
|
Category: flags.APICategory,
|
||||||
|
}
|
||||||
|
RPCTxSyncMaxFlag = &cli.DurationFlag{
|
||||||
|
Name: "rpc.txsync.max",
|
||||||
|
Usage: "Maximum allowed timeout for eth_sendRawTransactionSync (e.g. 5m)",
|
||||||
|
Value: ethconfig.Defaults.TxSyncMaxTimeout,
|
||||||
|
Category: flags.APICategory,
|
||||||
|
}
|
||||||
// Authenticated RPC HTTP settings
|
// Authenticated RPC HTTP settings
|
||||||
AuthListenFlag = &cli.StringFlag{
|
AuthListenFlag = &cli.StringFlag{
|
||||||
Name: "authrpc.addr",
|
Name: "authrpc.addr",
|
||||||
|
|
@ -1717,6 +1729,12 @@ func SetEthConfig(ctx *cli.Context, stack *node.Node, cfg *ethconfig.Config) {
|
||||||
if ctx.IsSet(RPCGlobalLogQueryLimit.Name) {
|
if ctx.IsSet(RPCGlobalLogQueryLimit.Name) {
|
||||||
cfg.LogQueryLimit = ctx.Int(RPCGlobalLogQueryLimit.Name)
|
cfg.LogQueryLimit = ctx.Int(RPCGlobalLogQueryLimit.Name)
|
||||||
}
|
}
|
||||||
|
if ctx.IsSet(RPCTxSyncDefaultFlag.Name) {
|
||||||
|
cfg.TxSyncDefaultTimeout = ctx.Duration(RPCTxSyncDefaultFlag.Name)
|
||||||
|
}
|
||||||
|
if ctx.IsSet(RPCTxSyncMaxFlag.Name) {
|
||||||
|
cfg.TxSyncMaxTimeout = ctx.Duration(RPCTxSyncMaxFlag.Name)
|
||||||
|
}
|
||||||
if !ctx.Bool(SnapshotFlag.Name) || cfg.SnapshotCache == 0 {
|
if !ctx.Bool(SnapshotFlag.Name) || cfg.SnapshotCache == 0 {
|
||||||
// If snap-sync is requested, this flag is also required
|
// If snap-sync is requested, this flag is also required
|
||||||
if cfg.SyncMode == ethconfig.SnapSync {
|
if cfg.SyncMode == ethconfig.SnapSync {
|
||||||
|
|
|
||||||
|
|
@ -70,6 +70,8 @@ var Defaults = Config{
|
||||||
RPCEVMTimeout: 5 * time.Second,
|
RPCEVMTimeout: 5 * time.Second,
|
||||||
GPO: FullNodeGPO,
|
GPO: FullNodeGPO,
|
||||||
RPCTxFeeCap: 1, // 1 ether
|
RPCTxFeeCap: 1, // 1 ether
|
||||||
|
TxSyncDefaultTimeout: 20 * time.Second,
|
||||||
|
TxSyncMaxTimeout: 1 * time.Minute,
|
||||||
}
|
}
|
||||||
|
|
||||||
//go:generate go run github.com/fjl/gencodec -type Config -formats toml -out gen_config.go
|
//go:generate go run github.com/fjl/gencodec -type Config -formats toml -out gen_config.go
|
||||||
|
|
@ -183,6 +185,10 @@ type Config struct {
|
||||||
|
|
||||||
// OverrideVerkle (TODO: remove after the fork)
|
// OverrideVerkle (TODO: remove after the fork)
|
||||||
OverrideVerkle *uint64 `toml:",omitempty"`
|
OverrideVerkle *uint64 `toml:",omitempty"`
|
||||||
|
|
||||||
|
// EIP-7966: eth_sendRawTransactionSync timeouts
|
||||||
|
TxSyncDefaultTimeout time.Duration `toml:",omitempty"`
|
||||||
|
TxSyncMaxTimeout time.Duration `toml:",omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// CreateConsensusEngine creates a consensus engine for the given chain config.
|
// CreateConsensusEngine creates a consensus engine for the given chain config.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue