You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While op-batcher tries to set SetMaxDASize by calling miner_setMaxDASize of op-reth, returns error ERROR[12-17|18:17:23.568] Result of SetMaxDASize was false, retrying.
Original golang implementation of op-geth returns bool type, op-batcher expects true for the result, or treat as error for others, including null.
Describe the bug
ref: alloy-rs/op-alloy#346
Motivation
While op-batcher tries to set SetMaxDASize by calling miner_setMaxDASize of op-reth, returns error
ERROR[12-17|18:17:23.568] Result of SetMaxDASize was false, retrying.
Original golang implementation of op-geth returns bool type, op-batcher expects
true
for the result, or treat as error for others, includingnull
.expects
as-is
Solution
Change
set_max_da_size
return type fromRpcResult<()>
toRpcResult<bool>
https://github.com/paradigmxyz/reth/blob/main/crates/optimism/rpc/src/miner.rs#L27
Steps to reproduce
follow the guild of Optimism to set a private rollup network
compile op-reth
watch logs says
SetMaxDASize rpc failed, retrying.
Node logs
Platform(s)
Mac (Apple Silicon)
Container Type
Not running in a container
What version/commit are you on?
1.1.4
What database version are you on?
.
Which chain / network are you on?
private(genesis by getting start guide of Optimism docs)
What type of node are you running?
Archive (default)
What prune config do you use, if any?
No response
If you've built Reth from source, provide the full command you used
make install-op
Code of Conduct
The text was updated successfully, but these errors were encountered: