diff --git a/libraries/chain/tournament_evaluator.cpp b/libraries/chain/tournament_evaluator.cpp index 00b82135..5b76253b 100644 --- a/libraries/chain/tournament_evaluator.cpp +++ b/libraries/chain/tournament_evaluator.cpp @@ -96,6 +96,9 @@ namespace graphene { namespace chain { "Time to reveal the move must not be greater than ${max}", ("max", maximum_time_per_reveal_move)); + //cli-wallet supports 5 gesture games as well, but limit to 3 now as GUI wallet only supports 3 gesture games currently + FC_ASSERT(game_options.number_of_gestures == 3, + "GUI Wallet only supports 3 gestures currently"); return void_result(); } FC_CAPTURE_AND_RETHROW( (op) ) }