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
In EOSIO SDK, idx256 is stored differently than ascdk
example:
actual data stored using ascdk: efbb5450f4528e0dd33ff1873f52a175 e8f280eb591c6725a1227b9aec8eac0e
to fetch from get_table_rows in ascdk contract, we have to instead use the key 75a1523f87f13fd30d8e52f45054bbef 0eac8eec9a7b22a125671c59eb80f2e8
The text was updated successfully, but these errors were encountered:
Fix by 143937c. Keep in mind this is a breaking change.
Sorry, something went wrong.
Is it necessary to change the packing / unpacking? The previous packed seems to be correct, just issue on the secondary index
the checksum256 in C++ is in big endian, see fixed_bytes in libraries/eosiolib/core/eosio/fixed_bytes.hpp
libraries/eosiolib/core/eosio/fixed_bytes.hpp
No branches or pull requests
In EOSIO SDK, idx256 is stored differently than ascdk
example:
actual data stored using ascdk:
efbb5450f4528e0dd33ff1873f52a175 e8f280eb591c6725a1227b9aec8eac0e
to fetch from get_table_rows in ascdk contract, we have to instead use the key
75a1523f87f13fd30d8e52f45054bbef 0eac8eec9a7b22a125671c59eb80f2e8
The text was updated successfully, but these errors were encountered: