| 23 | namespace graphene { namespace chain { |
| 24 | |
| 25 | void custom_operation::validate()const |
| 26 | { |
| 27 | FC_ASSERT( fee.amount > 0 ); |
| 28 | } |
| 29 | share_type custom_operation::calculate_fee(const fee_parameters_type& k)const |
| 30 | { |
| 31 | return k.fee + calculate_data_fee( fc::raw::pack_size(*this), k.price_per_kbyte ); |
nothing calls this directly
no outgoing calls
no test coverage detected