Skip to content

Commit

Permalink
Fix segfault when using list_sons from cli_wallet (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
obucinac committed Oct 14, 2019
1 parent 9201e0d commit f3150d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/wallet/wallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4264,7 +4264,7 @@ signed_transaction wallet_api::delete_son(string owner_account,

map<string, son_id_type> wallet_api::list_sons(const string& lowerbound, uint32_t limit)
{
my->_remote_db->lookup_son_accounts(lowerbound, limit);
return my->_remote_db->lookup_son_accounts(lowerbound, limit);
}

signed_transaction wallet_api::create_witness(string owner_account,
Expand Down

0 comments on commit f3150d4

Please sign in to comment.