fix(cli): store extradata as Bytes, decode hex in parser (#22344)

Co-authored-by: Amp <amp@ampcode.com>
This commit is contained in:
Georgios Konstantopoulos
2026-02-18 20:38:16 -08:00
committed by GitHub
parent 8fa539225b
commit 8529da976f
6 changed files with 78 additions and 22 deletions

View File

@@ -339,7 +339,7 @@ where
pool,
evm_config,
EthereumBuilderConfig::new()
.with_extra_data(ctx.payload_builder_config().extra_data_bytes()),
.with_extra_data(ctx.payload_builder_config().extra_data()),
),
};
Ok(payload_builder)

View File

@@ -62,8 +62,7 @@ where
ctx.provider().clone(),
pool,
evm_config,
EthereumBuilderConfig::new()
.with_extra_data(ctx.payload_builder_config().extra_data_bytes()),
EthereumBuilderConfig::new().with_extra_data(ctx.payload_builder_config().extra_data()),
);
let conf = ctx.payload_builder_config();