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
Sample Fetch request:
fetch("https://testnet.steemitdev.com/", {"body":"{\"id\":6,\"jsonrpc\":\"2.0\",\"method\":\"call\",\"params\":[\"database_api\",\"list_accounts\",{\"start\": \"eonwarp\", \"limit\": 1, \"order\": \"by_name\"}]}","method":"POST","mode":"cors"}).then(x => x.json()).then(x => console.log(x));
has downvote manabar, but
fetch("https://testnet.steemitdev.com/", {"body":"{\"id\":6,\"jsonrpc\":\"2.0\",\"method\":\"call\",\"params\":[\"condenser_api\",\"get_accounts\",[[\"eonwarp\"]]]}","method":"POST","mode":"cors"}).then(x => x.json()).then(x => console.log(x));
does not.
@netuoso looked into it and found it is missing on the condenser_api api_account_object:
Here it exists on database_api api_account_object https://github.com/steemit/steem/blob/master/libraries/plugins/apis/database_api/include/steem/plugins/database_api/database_api_objects.hpp#L180
Here it does not exist on condenser_api api_account_object https://github.com/steemit/steem/blob/master/libraries/plugins/apis/condenser_api/include/steem/plugins/condenser_api/condenser_api.hpp#L118-L119
The text was updated successfully, but these errors were encountered:
Add downvote mana to condenser_api #3435
2c64469
Successfully merging a pull request may close this issue.
Sample Fetch request:
fetch("https://testnet.steemitdev.com/", {"body":"{\"id\":6,\"jsonrpc\":\"2.0\",\"method\":\"call\",\"params\":[\"database_api\",\"list_accounts\",{\"start\": \"eonwarp\", \"limit\": 1, \"order\": \"by_name\"}]}","method":"POST","mode":"cors"}).then(x => x.json()).then(x => console.log(x));
has downvote manabar, but
fetch("https://testnet.steemitdev.com/", {"body":"{\"id\":6,\"jsonrpc\":\"2.0\",\"method\":\"call\",\"params\":[\"condenser_api\",\"get_accounts\",[[\"eonwarp\"]]]}","method":"POST","mode":"cors"}).then(x => x.json()).then(x => console.log(x));
does not.
@netuoso looked into it and found it is missing on the condenser_api api_account_object:
The text was updated successfully, but these errors were encountered: