Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(e2e): increase rpc fee cap #2579

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions e2e/app/geth/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ func WriteConfigTOML(conf Config, path string) error {
// MakeGethConfig returns the full omni geth config for the provided custom config.
func MakeGethConfig(conf Config) FullConfig {
cfg := defaultGethConfig()
cfg.Eth.RPCTxFeeCap = 100 // 100 OMNI
cfg.Eth.NetworkId = conf.ChainID
cfg.Node.DataDir = "/geth" // Mount inside docker container
cfg.Node.IPCPath = "/geth/geth.ipc"
Expand Down
2 changes: 1 addition & 1 deletion e2e/app/geth/testdata/TestWriteConfigTOML_archive.golden
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ VMTrace = ""
VMTraceJsonConfig = ""
RPCGasCap = 50000000
RPCEVMTimeout = 5000000000
RPCTxFeeCap = 1e+00
RPCTxFeeCap = 1e+02

[Eth.Miner]
GasCeil = 30000000
Expand Down
2 changes: 1 addition & 1 deletion e2e/app/geth/testdata/TestWriteConfigTOML_full.golden
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ VMTrace = ""
VMTraceJsonConfig = ""
RPCGasCap = 50000000
RPCEVMTimeout = 5000000000
RPCTxFeeCap = 1e+00
RPCTxFeeCap = 1e+02

[Eth.Miner]
GasCeil = 30000000
Expand Down
2 changes: 1 addition & 1 deletion e2e/app/geth/testdata/default_config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ VMTrace = ""
VMTraceJsonConfig = ""
RPCGasCap = 50000000
RPCEVMTimeout = 5000000000
RPCTxFeeCap = 1e+00
RPCTxFeeCap = 1e+02

[Eth.Miner]
GasCeil = 30000000
Expand Down
Loading