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
eoslib's get_active_producers() is filling vector such way using wasm-interface's same-named method:
std::vector<name> active_prods(prod_cnt); get_active_producers((uint64_t*)active_prods.data(), active_prods.size());
wasm-interface's method uses memcpy, therefore it needs byte size of vector, not size().
LOW priority because this method is not used anywhere, afaik
The text was updated successfully, but these errors were encountered:
Fix get_active_producers in eosiolib #112
11f74a9
Merge pull request #119 from cyberway/112-get-active-producers-fix
90b9f37
soft-bagel-93
No branches or pull requests
eoslib's get_active_producers() is filling vector such way using wasm-interface's same-named method:
wasm-interface's method uses memcpy, therefore it needs byte size of vector, not size().
LOW priority because this method is not used anywhere, afaik
The text was updated successfully, but these errors were encountered: