Unused code
This commit is contained in:
parent
d0aaad6117
commit
9beff42daa
2 changed files with 0 additions and 8 deletions
|
|
@ -73,12 +73,6 @@ void database::adjust_balance(const account_object& account, asset delta )
|
||||||
adjust_balance( account.id, delta);
|
adjust_balance( account.id, delta);
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: This method should be removed
|
|
||||||
void database::adjust_balance(const account_object* account, asset delta)
|
|
||||||
{
|
|
||||||
adjust_balance(*account, delta);
|
|
||||||
}
|
|
||||||
|
|
||||||
void database::adjust_core_in_orders( const account_object& acnt, asset delta )
|
void database::adjust_core_in_orders( const account_object& acnt, asset delta )
|
||||||
{
|
{
|
||||||
if( delta.asset_id == asset_id_type(0) && delta.amount != 0 )
|
if( delta.asset_id == asset_id_type(0) && delta.amount != 0 )
|
||||||
|
|
|
||||||
|
|
@ -330,8 +330,6 @@ namespace graphene { namespace chain {
|
||||||
void adjust_balance(account_id_type account, asset delta);
|
void adjust_balance(account_id_type account, asset delta);
|
||||||
/// This is an overloaded method.
|
/// This is an overloaded method.
|
||||||
void adjust_balance(const account_object& account, asset delta);
|
void adjust_balance(const account_object& account, asset delta);
|
||||||
/// This is an overloaded method.
|
|
||||||
void adjust_balance(const account_object* account, asset delta);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If delta.asset_id is a core asset, adjusts account statistics
|
* If delta.asset_id is a core asset, adjusts account statistics
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue