cli wallet command to reactivate deregistered SON #617

Merged
serkixenos merged 6 commits from feature/cli-activate-deregistered-son into develop 2021-12-02 02:04:51 +00:00
2 changed files with 9 additions and 0 deletions
Showing only changes of commit 0fea84b16b - Show all commits

View file

@ -1425,6 +1425,9 @@ class wallet_api
flat_map<sidechain_type, string> 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)

View file

@ -4391,6 +4391,11 @@ vector<asset_object> 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();