-
Notifications
You must be signed in to change notification settings - Fork 815
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
[main branch] Exclude only shell receipts from eth endpoints #1877
[main branch] Exclude only shell receipts from eth endpoints #1877
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1877 +/- ##
==========================================
- Coverage 61.26% 61.23% -0.03%
==========================================
Files 263 263
Lines 23272 23275 +3
==========================================
- Hits 14257 14253 -4
- Misses 8010 8014 +4
- Partials 1005 1008 +3
|
expect(ethReceipts.length).to.equal(1); | ||
expect(seiReceipts.length).to.equal(1); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we do any verification on the seiReceipt?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
checking that the 2 tx hashes are the same between ethReceipts and seiReceipts
* exclude only shell receipts from eth endpoints * minor fix * remove print statements * put panic to see if shell receipts are being used * fix test * fix block receipts test * Revert "put panic to see if shell receipts are being used" This reverts commit 1ea23fd. * minor fixes * check that ethReceipt and seiReceipt have the same tx hash
Describe your changes and provide context
In the eth_ endpoints, we actually do want to include synthetic logs because these have replaced EVM logs for ERC20 and ERC721 transfer/approval events. We will just exclude shell txs in eth_ endpoints and include both in sei_ endpoints.
Testing performed to validate your change
hardhat tests