-
Notifications
You must be signed in to change notification settings - Fork 323
eof: Remove support for EOF Creation Transaction #1190
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
base: master
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1190 +/- ##
==========================================
- Coverage 94.84% 94.78% -0.07%
==========================================
Files 171 171
Lines 19501 19256 -245
==========================================
- Hits 18496 18251 -245
Misses 1005 1005
Flags with carried forward coverage won't be shown. Click here to find out more.
🚀 New features to boost your workflow:
|
04dc99e
to
fa6226c
Compare
5ee1029
to
3f282f4
Compare
3f282f4
to
c0014e1
Compare
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.
👍
@@ -754,74 +822,6 @@ bool is_eof_container(bytes_view container) noexcept | |||
return container.starts_with(EOF_MAGIC); | |||
} | |||
|
|||
std::variant<EOF1Header, EOFValidationError> validate_header( |
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.
If I'm not mistaken, this is just moved to a private namespace, no changes?
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.
Yes, it's just a move
c0014e1
to
46fac88
Compare
46fac88
to
41a600d
Compare
This is simplification, it is more natural to check it together with the check for truncated body. This check was earlier moved into higher-level function to allow for stray bytes in EOF Creation Transactions.
No need to call from EOF Creation Transaction processing anymore.
41a600d
to
d639188
Compare
No description provided.