We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7857cd commit 5ef01bbCopy full SHA for 5ef01bb
eth/ethconfig/config.go
@@ -65,7 +65,7 @@ var Defaults = Config{
65
Miner: miner.DefaultConfig,
66
TxPool: legacypool.DefaultConfig,
67
BlobPool: blobpool.DefaultConfig,
68
- RPCGasCap: params.MaxTxGas,
+ RPCGasCap: 50000000,
69
RPCEVMTimeout: 5 * time.Second,
70
GPO: FullNodeGPO,
71
RPCTxFeeCap: 1, // 1 ether
internal/ethapi/override/override_test.go
@@ -31,6 +31,10 @@ import (
31
32
type precompileContract struct{}
33
34
+func (p *precompileContract) Name() string {
35
+ panic("implement me")
36
+}
37
+
38
func (p *precompileContract) RequiredGas(input []byte) uint64 { return 0 }
39
40
func (p *precompileContract) Run(input []byte) ([]byte, error) { return nil, nil }
0 commit comments