Register event status update operation
This commit is contained in:
parent
3b3a0905ff
commit
931c925610
6 changed files with 11 additions and 2 deletions
2
docs
2
docs
|
|
@ -1 +1 @@
|
|||
Subproject commit bd792d02c70e7686da2b27197eba4fd6df30477c
|
||||
Subproject commit 51c3fccda7cb39656d27b94c5274b2aa11c7b598
|
||||
|
|
@ -215,6 +215,7 @@ struct get_impacted_account_visitor
|
|||
void operator()( const event_group_update_operation& op ) {}
|
||||
void operator()( const event_create_operation& op ) {}
|
||||
void operator()( const event_update_operation& op ) {}
|
||||
void operator()( const event_update_status_operation& op ) {}
|
||||
void operator()( const betting_market_rules_create_operation& op ) {}
|
||||
void operator()( const betting_market_rules_update_operation& op ) {}
|
||||
void operator()( const betting_market_group_create_operation& op ) {}
|
||||
|
|
|
|||
|
|
@ -220,6 +220,7 @@ void database::initialize_evaluators()
|
|||
register_evaluator<event_group_update_evaluator>();
|
||||
register_evaluator<event_create_evaluator>();
|
||||
register_evaluator<event_update_evaluator>();
|
||||
register_evaluator<event_update_status_evaluator>();
|
||||
register_evaluator<betting_market_rules_create_evaluator>();
|
||||
register_evaluator<betting_market_rules_update_evaluator>();
|
||||
register_evaluator<betting_market_group_create_evaluator>();
|
||||
|
|
|
|||
|
|
@ -197,6 +197,7 @@ struct get_impacted_account_visitor
|
|||
void operator()(const event_group_update_operation& op ) {}
|
||||
void operator()(const event_create_operation&){}
|
||||
void operator()(const event_update_operation& op ) {}
|
||||
void operator()(const event_update_status_operation& op ) {}
|
||||
void operator()(const betting_market_rules_create_operation&){}
|
||||
void operator()(const betting_market_rules_update_operation& op ) {}
|
||||
void operator()(const betting_market_group_create_operation&){}
|
||||
|
|
|
|||
|
|
@ -123,7 +123,8 @@ namespace graphene { namespace chain {
|
|||
tournament_payout_operation, // VIRTUAL
|
||||
tournament_leave_operation,
|
||||
betting_market_group_update_operation,
|
||||
betting_market_update_operation
|
||||
betting_market_update_operation,
|
||||
event_update_status_operation
|
||||
> operation;
|
||||
|
||||
/// @} // operations group
|
||||
|
|
|
|||
|
|
@ -35,5 +35,10 @@ void event_update_operation::validate() const
|
|||
FC_ASSERT( fee.amount >= 0 );
|
||||
}
|
||||
|
||||
void event_update_status_operation::validate() const
|
||||
{
|
||||
FC_ASSERT( fee.amount >= 0 );
|
||||
}
|
||||
|
||||
} } // graphene::chain
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue