Skip to content

Commit

Permalink
fix(cannon): Correctly derive transactions from execution payload (#260)
Browse files Browse the repository at this point in the history
  • Loading branch information
samcm authored Dec 22, 2023
1 parent 99633fd commit ac77fe2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/cannon/deriver/beacon/eth/v2/execution_transaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,8 @@ func (b *ExecutionTransactionDeriver) getExecutionTransactions(ctx context.Conte
if err := ethTransaction.UnmarshalBinary(transaction); err != nil {
return nil, fmt.Errorf("failed to unmarshal transaction: %v", err)
}

transactions = append(transactions, ethTransaction)
}

return transactions, nil
Expand Down

0 comments on commit ac77fe2

Please sign in to comment.