diff --git a/libraries/wallet/include/graphene/wallet/wallet.hpp b/libraries/wallet/include/graphene/wallet/wallet.hpp index a7921b1f..bae8e3e1 100644 --- a/libraries/wallet/include/graphene/wallet/wallet.hpp +++ b/libraries/wallet/include/graphene/wallet/wallet.hpp @@ -1425,6 +1425,9 @@ class wallet_api flat_map sidechain_public_keys, bool broadcast = false); + string activate_deregistered_son(const string& id); + + /** * Updates vesting balances of the SON object owned by the given account. * @@ -2622,6 +2625,7 @@ FC_API( graphene::wallet::wallet_api, (try_create_son) (update_son) (update_son_vesting_balances) + (activate_deregistered_son) (list_sons) (list_active_sons) (get_son_network_status) diff --git a/libraries/wallet/wallet.cpp b/libraries/wallet/wallet.cpp index e876924e..59a1841f 100644 --- a/libraries/wallet/wallet.cpp +++ b/libraries/wallet/wallet.cpp @@ -4391,6 +4391,11 @@ vector wallet_api::list_assets(const string& lowerbound, uint32_t return my->_remote_db->list_assets( lowerbound, limit ); } +string wallet_api::activate_deregistered_son(const string& id) +{ + return string("stub for activate_deregistered_son for ( ") + id + " ) "; +} + uint64_t wallet_api::get_asset_count()const { return my->_remote_db->get_asset_count();