Command added ( activate_deregistered_son)
This commit is contained in:
parent
8fbe85babb
commit
0fea84b16b
2 changed files with 9 additions and 0 deletions
|
|
@ -1425,6 +1425,9 @@ class wallet_api
|
||||||
flat_map<sidechain_type, string> sidechain_public_keys,
|
flat_map<sidechain_type, string> sidechain_public_keys,
|
||||||
bool broadcast = false);
|
bool broadcast = false);
|
||||||
|
|
||||||
|
string activate_deregistered_son(const string& id);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Updates vesting balances of the SON object owned by the given account.
|
* 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)
|
(try_create_son)
|
||||||
(update_son)
|
(update_son)
|
||||||
(update_son_vesting_balances)
|
(update_son_vesting_balances)
|
||||||
|
(activate_deregistered_son)
|
||||||
(list_sons)
|
(list_sons)
|
||||||
(list_active_sons)
|
(list_active_sons)
|
||||||
(get_son_network_status)
|
(get_son_network_status)
|
||||||
|
|
|
||||||
|
|
@ -4391,6 +4391,11 @@ vector<asset_object> wallet_api::list_assets(const string& lowerbound, uint32_t
|
||||||
return my->_remote_db->list_assets( lowerbound, limit );
|
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
|
uint64_t wallet_api::get_asset_count()const
|
||||||
{
|
{
|
||||||
return my->_remote_db->get_asset_count();
|
return my->_remote_db->get_asset_count();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue