mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
perf(EthBuiltPayload): Arc SealedBlock (#12351)
This commit is contained in:
@ -439,12 +439,12 @@ where
|
||||
body: BlockBody { transactions: executed_txs, ommers: vec![], withdrawals },
|
||||
};
|
||||
|
||||
let sealed_block = block.seal_slow();
|
||||
let sealed_block = Arc::new(block.seal_slow());
|
||||
debug!(target: "payload_builder", ?sealed_block, "sealed built block");
|
||||
|
||||
// create the executed block data
|
||||
let executed = ExecutedBlock {
|
||||
block: Arc::new(sealed_block.clone()),
|
||||
block: sealed_block.clone(),
|
||||
senders: Arc::new(executed_senders),
|
||||
execution_output: Arc::new(execution_outcome),
|
||||
hashed_state: Arc::new(hashed_state),
|
||||
|
||||
Reference in New Issue
Block a user