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
cdt-cpp version: 4.0.1
std::set<uint8_t> order_ids;
This actually generates abi
{ "name": "order_ids", "type": "bytes" }
and it is expected to generate
{ "name": "order_ids", "type": "uint8[]" }
The text was updated successfully, but these errors were encountered:
We need to investigate whether it has always worked this way or if this is a regression.
Of particular interest is making sure that an intuitive JSON representation of an array of integers results.
Sorry, something went wrong.
Wharfkit/Antelope-Core handles Bytes as an array of UInt8 and should be agnostic of the change. https://github.com/wharfkit/antelope/blob/master/src/chain/bytes.ts#L9
ericpassmore
No branches or pull requests
cdt-cpp version: 4.0.1
std::set<uint8_t> order_ids;
This actually generates abi
and it is expected to generate
The text was updated successfully, but these errors were encountered: