Skip to content
This repository has been archived by the owner on Oct 4, 2019. It is now read-only.

Commit

Permalink
Merge pull request #736 from GolosChain/golos-v0.18.0
Browse files Browse the repository at this point in the history
Golos v0.18.0
  • Loading branch information
afalaleev authored Jun 15, 2018
2 parents 716266a + 1b2eb43 commit a42b95d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/social_network/social_network.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ namespace golos { namespace plugins { namespace social_network {
) const ;
void select_content_replies(
std::vector<discussion>& result, const std::string& author, const std::string& permlink, uint32_t limit
std::vector<discussion>& result, std::string author, std::string permlink, uint32_t limit
) const;
std::vector<discussion> get_content_replies(
Expand Down Expand Up @@ -119,7 +119,7 @@ namespace golos { namespace plugins { namespace social_network {
social_network::~social_network() = default;
void social_network::impl::select_content_replies(
std::vector<discussion>& result, const std::string& author, const std::string& permlink, uint32_t limit
std::vector<discussion>& result, std::string author, std::string permlink, uint32_t limit
) const {
account_name_type acc_name = account_name_type(author);
const auto& by_permlink_idx = database().get_index<comment_index>().indices().get<by_parent>();
Expand Down

0 comments on commit a42b95d

Please sign in to comment.