Skip to content

Commit

Permalink
fix: fix after rebase develop
Browse files Browse the repository at this point in the history
  • Loading branch information
buddh0 committed Nov 29, 2024
1 parent 9ff300e commit af69f74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miner/worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ func (w *worker) resultLoop() {
shadowHeader := block.Header()
shadowHeader.Extra[0] = 'd'
shadowHeader.Extra[1] = 's'
shadowBlock := types.NewBlockWithHeader(shadowHeader).WithBody(block.Transactions(), block.Uncles()).WithWithdrawals(block.Withdrawals())
shadowBlock := types.NewBlockWithHeader(shadowHeader).WithBody(types.Body{Transactions: block.Transactions(), Uncles: block.Uncles()}).WithWithdrawals(block.Withdrawals())
shadowBlock.DeepCopySidecars(block.Sidecars())
shadowBlock, err := p.AssembleSignature(shadowBlock)
if err == nil {
Expand Down

0 comments on commit af69f74

Please sign in to comment.