Skip to content

Commit

Permalink
Merge branch 'celo11' into piersy/bad-blocks-fix_fix-datarace-on-acti…
Browse files Browse the repository at this point in the history
…veprecompiles
  • Loading branch information
piersy authored Jan 21, 2025
2 parents 463262e + 40f1e56 commit 4e0ba56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eth/ethconfig/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ var Defaults = Config{
RPCGasCap: 50000000,
RPCEVMTimeout: 5 * time.Second,
GPO: FullNodeGPO,
RPCTxFeeCap: 1, // 1 ether
RPCTxFeeCap: 1000, // 1000 celo
}

//go:generate go run github.com/fjl/gencodec -type Config -formats toml -out gen_config.go
Expand Down
2 changes: 1 addition & 1 deletion rpc/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ type NoHistoricalFallbackError struct{}
func (e NoHistoricalFallbackError) ErrorCode() int { return -32801 }

func (e NoHistoricalFallbackError) Error() string {
return "no historical RPC is available for this historical (pre-bedrock) execution request"
return "no historical RPC is available for this historical (pre-L2) execution request"
}

type methodNotFoundError struct{ method string }
Expand Down

0 comments on commit 4e0ba56

Please sign in to comment.