From f3150d4208b3517cfa58143dba03e032c013593b Mon Sep 17 00:00:00 2001 From: obucinac Date: Tue, 15 Oct 2019 00:42:19 +0200 Subject: [PATCH] Fix segfault when using list_sons from cli_wallet (#178) --- libraries/wallet/wallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/wallet/wallet.cpp b/libraries/wallet/wallet.cpp index 5d5d16f66..2a2c25637 100644 --- a/libraries/wallet/wallet.cpp +++ b/libraries/wallet/wallet.cpp @@ -4264,7 +4264,7 @@ signed_transaction wallet_api::delete_son(string owner_account, map 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,