-
Notifications
You must be signed in to change notification settings - Fork 45
fix(runtime): vote program conformance #714
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
Conversation
Codecov ReportAttention: Patch coverage is
... and 1 file with indirect coverage changes 🚀 New features to boost your workflow:
|
e4b737d
to
b6eb376
Compare
src/bincode/varint.zig
Outdated
@@ -126,9 +126,12 @@ pub fn visit_byte_2(elem: u8, val: u16, nth_byte: usize) !DoneOrMore { | |||
return error.ByteThreeContinues; | |||
} | |||
|
|||
const shift: u32 = (std.math.cast(u32, nth_byte) orelse U32_MAX) *| 7; | |||
const shift = std.math.cast( |
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.
This is mainly for understanding the scope of the changes...
where this specific diffs needed to attain the conformance?
or these were other improvement identified but not specifically needed for the conformance
} | ||
}; | ||
|
||
const CircBufV1 = struct { |
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.
Looks like the tests were dropped. Since this is still in draft, adding it back might be something still planned.
Fixes for vote conformance