Skip to content

Commit

Permalink
Merge pull request #2663 from bitshares/fix-code-smells
Browse files Browse the repository at this point in the history
Fix code smells
  • Loading branch information
abitmore authored Oct 28, 2022
2 parents 74d72ba + 830555d commit c275ca0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libraries/app/database_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ vector<optional<account_object>> database_api_impl::get_accounts( const vector<s
}

std::map<string, full_account, std::less<>> database_api::get_full_accounts( const vector<string>& names_or_ids,
const optional<bool>& subscribe )
const optional<bool>& subscribe )const
{
return my->get_full_accounts( names_or_ids, subscribe );
}
Expand Down
2 changes: 1 addition & 1 deletion libraries/app/include/graphene/app/database_api.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ class database_api
*/
map<string, full_account, std::less<>> get_full_accounts(
const vector<string>& names_or_ids,
const optional<bool>& subscribe = optional<bool>() );
const optional<bool>& subscribe = optional<bool>() )const;

/**
* @brief Returns vector of voting power sorted by reverse vp_active
Expand Down

0 comments on commit c275ca0

Please sign in to comment.