-
Notifications
You must be signed in to change notification settings - Fork 819
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
[EVM] Add index to logs based on order #1273
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## evm #1273 +/- ##
==========================================
- Coverage 64.02% 64.00% -0.02%
==========================================
Files 346 346
Lines 23072 23073 +1
==========================================
- Hits 14771 14768 -3
- Misses 7465 7467 +2
- Partials 836 838 +2
|
d9b7491
to
d55cd09
Compare
@@ -428,7 +428,7 @@ describe("EVM Test", function () { | |||
}); | |||
|
|||
describe("Differing maxPriorityFeePerGas and maxFeePerGas", async function() { | |||
testCases.forEach(async ([name, maxPriorityFeePerGas, maxFeePerGas]) => { | |||
for (const [name, maxPriorityFeePerGas, maxFeePerGas] of testCases) { |
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.
what's the difference?
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.
Not much, but my ide linter complains that the async function promise wasn't being used, and gave me yellow lines, so I accepted its change suggestion.
* add index to logs based on order * add check for getLogs * add log conversion test
* add index to logs based on order * add check for getLogs * add log conversion test
* add index to logs based on order * add check for getLogs * add log conversion test
* add index to logs based on order * add check for getLogs * add log conversion test
* add index to logs based on order * add check for getLogs * add log conversion test
* add index to logs based on order * add check for getLogs * add log conversion test
* add index to logs based on order * add check for getLogs * add log conversion test
* add index to logs based on order * add check for getLogs * add log conversion test
* add index to logs based on order * add check for getLogs * add log conversion test
* add index to logs based on order * add check for getLogs * add log conversion test
* add index to logs based on order * add check for getLogs * add log conversion test
* add index to logs based on order * add check for getLogs * add log conversion test
* add index to logs based on order * add check for getLogs * add log conversion test
* add index to logs based on order * add check for getLogs * add log conversion test
Describe your changes and provide context
Testing performed to validate your change