Skip to content

Commit

Permalink
Fix wallet proposal calls steemit#3395
Browse files Browse the repository at this point in the history
  • Loading branch information
mvandeberg committed Jul 24, 2019
1 parent 48820fb commit 418a78b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/wallet/include/steem/wallet/wallet.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1104,8 +1104,8 @@ class wallet_api
* @param status - list only results with given status (all, inactive, active, expired, votable),
*/
condenser_api::list_proposals_return list_proposals( fc::variant start,
database_api::sort_order_type order_by,
uint32_t limit = 10,
database_api::sort_order_type order_by,
database_api::order_direction_type order_type = database_api::descending,
database_api::proposal_status status = database_api::all );

Expand All @@ -1124,8 +1124,8 @@ class wallet_api
* @param status - list only results with given status (all, inactive, active, expired, votable),
*/
condenser_api::list_proposal_votes_return list_proposal_votes( fc::variant start,
database_api::sort_order_type order_by,
uint32_t limit = 10,
database_api::sort_order_type order_by,
database_api::order_direction_type order_type = database_api::descending,
database_api::proposal_status status = database_api::all );

Expand Down

0 comments on commit 418a78b

Please sign in to comment.