Use the go-ethereum v1.14.3
Docker image
#250
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Since the
zkevm-node
recently introduced the L1 Safe Block synchronization feature (0xPolygonHermez/zkevm-node#3545), and is running the synchronizer withsafe
orfinalized
forSynchronizer.SyncBlockProtection
,Synchronizer.L1BlockCheck.L1SafeBlockPoint
etc., we should use the newer Geth docker image, to overcome the error being returned by some earlier versions of Geth (namely 1.12.x) when querying the blocks with thesafe
orfinalized
filters. This is the PR that fixed it on thego-ethereum
(ethereum/go-ethereum#27799), so instead of returning an error when the RPC request with thesafe
orfinalized
option is provided, it defers to the blockchain whether error should be returned or not.