Skip to content
Snippets Groups Projects
Commit b6810e5b authored by Fabien's avatar Fabien Committed by GitHub
Browse files

Merge pull request #246 from steemit/fix-get-content-replies

Fix params get_content_replies
parents 0ac92953 97f754bd
No related branches found
No related tags found
No related merge requests found
......@@ -419,7 +419,7 @@ steem.api.getContent(author, permlink, function(err, result) {
```
### Get Content Replies
```
steem.api.getContentReplies(parent, parentPermlink, function(err, result) {
steem.api.getContentReplies(author, permlink, function(err, result) {
console.log(err, result);
});
```
......
......@@ -312,7 +312,7 @@ module.exports = [
{
"api": "database_api",
"method": "get_content_replies",
"params": ["parent", "parentPermlink"]
"params": ["author", "permlink"]
},
{
"api": "database_api",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment