Skip to content

Commit

Permalink
Remove unnecessary conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
JacekGlen committed Oct 8, 2024
1 parent 5bac2d5 commit 97d3cd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion turbo/execution/eth1/ethereum_execution.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ func (e *EthereumExecutionModule) ValidateChain(ctx context.Context, req *execut

return &execution.ValidationReceipt{
LatestValidHash: gointerfaces.ConvertHashToH256(result.LastValidHash),
ValidationStatus: execution.ExecutionStatus(result.ExecutionStatus),
ValidationStatus: result.ExecutionStatus,
ValidationError: result.ErrorMessage,
}, nil
}
Expand Down

0 comments on commit 97d3cd7

Please sign in to comment.