From aeb76615599ecf4c0bbbb28ad7dae435afc25d16 Mon Sep 17 00:00:00 2001 From: Paul Lange Date: Mon, 20 Jan 2025 14:40:27 +0100 Subject: [PATCH] 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 }