-
Notifications
You must be signed in to change notification settings - Fork 73
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
Added IF ibc contract + test #2314
Conversation
This comment was marked as resolved.
This comment was marked as resolved.
Note:start |
Fixed |
: num_bits(size), data((size + 63) / 64) {} | ||
|
||
bitset(size_t size, const std::vector<uint64_t>& raw_bitset) | ||
: num_bits(size), data(raw_bitset) {} |
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.
might want to consider validating that raw_bitset
is properly sized. otherwise it seems like it's possible to construct a bitset
where num_bits
is greater than actual data
.
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.
Done
…leap into hotstuff_integration
No description provided.