-
Notifications
You must be signed in to change notification settings - Fork 4
feat(EIP: 7916, 7495, 8016): Add Progressive List, Progressive BitList, ProgressiveContainer, CompatibleUnion #64
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: main
Are you sure you want to change the base?
Conversation
| const Node = @import("persistent_merkle_tree").Node; | ||
| const progressive = @import("progressive.zig"); | ||
|
|
||
| pub fn ProgressiveBitList(comptime limit: comptime_int) type { |
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.
Progressive bitlist and progressive list have no limit.
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.
ya mainly added the limit since the eip mentioned to enforce context specific bounds and there are networking limitations. It only checks if the limit is positive for now tho.
tracks #32
Needs updated spec tests to pass