Issues advancing OP Base #6036
Labels
A-op-reth
Related to Optimism and op-reth
C-bug
An unexpected or incorrect behavior
C-enhancement
New feature or request
Describe the feature
newPayloadsV2 are currently being rejected with missing withdrawals after canyon update:
"{\"jsonrpc\":\"2.0\",\"error\":{\"code\":-32602,\"message\":\"Invalid params\",\"data\":{\"err\":\"withdrawals pre-Shanghai\"}},\
The bug is that OP canyon adds support for shanghai https://eips.ethereum.org/EIPS/eip-4895
https://blog.oplabs.co/canyon-hardfork/
and we reject them here:
reth/crates/rpc/rpc-engine-api/src/engine_api.rs
Lines 121 to 125 in 8686e97
more specifically:
reth/crates/node-api/src/engine/mod.rs
Lines 219 to 222 in 8686e97
because we only check for
Hardfork::Shanghai
:reth/crates/node-api/src/engine/mod.rs
Line 208 in 8686e97
Additional context
The text was updated successfully, but these errors were encountered: