Skip to content

Commit

Permalink
fix(e2e): increase rpc fee cap
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinhalliday committed Nov 26, 2024
1 parent 49b752b commit b8eadb0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
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

0 comments on commit b8eadb0

Please sign in to comment.