fix balance claim authority requirements

This commit is contained in:
Daniel Larimer 2015-07-09 15:28:39 -04:00
parent a164fbe8fa
commit 1fbdbc50e0

View file

@ -23,6 +23,10 @@ namespace graphene { namespace chain {
account_id_type fee_payer()const { return deposit_to_account; }
share_type calculate_fee(const fee_parameters_type& )const { return 0; }
void validate()const;
void get_required_authorities( vector<authority>& a )const
{
a.push_back( authority( 1, balance_owner_key, 1 ) );
}
};
}} // graphene::chain