fix: always handle payload building for opstack (#11629)

This commit is contained in:
Matthias Seitz
2024-10-10 11:39:40 +02:00
committed by GitHub
parent 58bfa60cea
commit eb9565d22d
6 changed files with 56 additions and 6 deletions

View File

@ -93,6 +93,10 @@ impl EthChainSpec for OpChainSpec {
fn bootnodes(&self) -> Option<Vec<NodeRecord>> {
self.inner.bootnodes()
}
fn is_optimism(&self) -> bool {
true
}
}
impl Hardforks for OpChainSpec {