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

add missing l1 transaction receipt field #577

Merged
merged 2 commits into from
Jun 14, 2024

Conversation

rianhughes
Copy link
Contributor

closes #575

Comment on lines 342 to 344
rec, ok := (txReceiptWithBlockInfo.TransactionReceipt).(InvokeTransactionReceipt)
require.True(t, ok)
rec2, ok := (txReceiptWithBlockInfo.TransactionReceipt).(InvokeTransactionReceipt)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure I understand, is there a difference here between rec and rec2?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whoops :) Fixed

Comment on lines 349 to 351
rec, ok := (txReceiptWithBlockInfo.TransactionReceipt).(L1HandlerTransactionReceipt)
require.True(t, ok)
rec2, ok := (txReceiptWithBlockInfo.TransactionReceipt).(L1HandlerTransactionReceipt)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same question here

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as above

Copy link
Contributor

@cicr99 cicr99 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

@rianhughes rianhughes merged commit 0d2f964 into main Jun 14, 2024
4 checks passed
@rianhughes rianhughes deleted the rinahughes/add-missing-receipt-field branch June 14, 2024 12:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

L1HandlerTransactionReceipt is missing message_hash
2 participants