Fix segfault when using list_sons from cli_wallet (#178)

This commit is contained in:
obucinac 2019-10-15 00:42:19 +02:00 committed by GitHub
parent 9201e0d000
commit f3150d4208
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,