Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

plugin/evm: update type cast to skip call to Bytes() #958

Merged
merged 2 commits into from
Oct 18, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
plugin/evm: update type cast to skip call to Bytes()
  • Loading branch information
aaronbuchwald committed Oct 17, 2023
commit 783ca1bbdfb1d48d3c2f288bbad37fa916528289
2 changes: 1 addition & 1 deletion plugin/evm/block.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ func (b *Block) handlePrecompileAccept(rules *params.Rules, sharedMemoryWriter *

// If Warp is enabled, add the block hash as an unsigned message to the warp backend.
if rules.IsPrecompileEnabled(warp.ContractAddress) {
blockHashPayload, err := payload.NewHash(ids.ID(b.ethBlock.Hash().Bytes()))
blockHashPayload, err := payload.NewHash(ids.ID(b.ethBlock.Hash()))
if err != nil {
return fmt.Errorf("failed to create block hash payload: %w", err)
}
Expand Down
Loading