Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1079 +/- ##
=======================================
Coverage 94.29% 94.29%
=======================================
Files 159 159
Lines 17095 17114 +19
=======================================
+ Hits 16120 16138 +18
- Misses 975 976 +1
Flags with carried forward coverage won't be shown. Click here to find out more.
|
c839965 to
1ab64f4
Compare
d8edd6d to
8c53136
Compare
ffd169f to
a364927
Compare
371a7b3 to
e226cb0
Compare
7cbe30d to
4370a98
Compare
6712475 to
c04a3fe
Compare
| /// Requests data - an opaque byte array, contains zero or more encoded request objects. | ||
| evmc::bytes data; | ||
|
|
||
| explicit Requests(Type _type, evmc::bytes _data = {}) noexcept |
There was a problem hiding this comment.
Needed to make vector::emplace_back() work for this struct on some compilers.
There was a problem hiding this comment.
I use other workaround: emplace_back(Requests{...}). I wonder which pattern is easier to find later...
There was a problem hiding this comment.
Usually me too, but this time I think I got error from clang-tidy "unnecessary temporary object created"
There was a problem hiding this comment.
Copilot reviewed 1 out of 5 changed files in this pull request and generated no suggestions.
Files not reviewed (4)
- test/blockchaintest/blockchaintest_runner.cpp: Language not supported
- test/state/requests.cpp: Language not supported
- test/state/requests.hpp: Language not supported
- test/t8n/t8n.cpp: Language not supported
https://eips.ethereum.org/EIPS/eip-6110