You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 14, 2021. It is now read-only.
According to the spec, Vec<T> should be encoded as enc(k) enc([X[0], ..., X[k-1]]), when k is the length of the Vec<T>. However the current impl encodes it as enc(k, [X[0], ..., X[k-1]]).
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Version: 0.2.2
According to the spec,
Vec<T>
should be encoded asenc(k) enc([X[0], ..., X[k-1]])
, whenk
is the length of theVec<T>
. However the current impl encodes it asenc(k, [X[0], ..., X[k-1]])
.The text was updated successfully, but these errors were encountered: