mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-08 03:01:12 -04:00
fix(cli): store extradata as Bytes, decode hex in parser (#22344)
Co-authored-by: Amp <amp@ampcode.com>
This commit is contained in:
committed by
GitHub
parent
8fa539225b
commit
8529da976f
@@ -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)
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user