We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
message XXX { repeated uint64 yyy = 4; }
will generate code like:
encode(message: EvmGetHeaderRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer { for (const v of message.blockNumbers) { writer.uint64(v); } },
which doesn't work since uint64 can't take bigint
uint64
The text was updated successfully, but these errors were encountered:
This is unfortunate that the test suite didn't catch it. Will attempt a fix.
Sorry, something went wrong.
#751
🎉 This issue has been resolved in version 1.137.2 🎉
The release is available on:
v1.137.2
Your semantic-release bot 📦🚀
Successfully merging a pull request may close this issue.
will generate code like:
which doesn't work since
uint64
can't take bigintThe text was updated successfully, but these errors were encountered: