From e13e0acf8f0ab14ad40ce467b642c4d5eee9fb94 Mon Sep 17 00:00:00 2001 From: Javier Cortejoso Date: Mon, 20 Jan 2025 14:35:15 +0100 Subject: [PATCH 1/2] Increase default RPCTxFeeCap to 1000 (celos) (#311) --- eth/ethconfig/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/ethconfig/config.go b/eth/ethconfig/config.go index bb3f485fcc..217c8af99a 100644 --- a/eth/ethconfig/config.go +++ b/eth/ethconfig/config.go @@ -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 From 40f1e5603e3decdff833c564991c0706997fde88 Mon Sep 17 00:00:00 2001 From: Paul Lange Date: Mon, 20 Jan 2025 14:40:27 +0100 Subject: [PATCH 2/2] api: Correct error message (#309) Don't mention bedrock, but the L2 migration --- rpc/errors.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc/errors.go b/rpc/errors.go index 67c523d11a..cde77d8bfd 100644 --- a/rpc/errors.go +++ b/rpc/errors.go @@ -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 }