Cleanups before review.
This commit is contained in:
parent
c829228aca
commit
88adfb6661
3 changed files with 2 additions and 57 deletions
|
|
@ -84,7 +84,6 @@ struct event_group_delete_operation : public base_operation
|
||||||
void validate()const;
|
void validate()const;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
} }
|
} }
|
||||||
|
|
||||||
FC_REFLECT( graphene::chain::event_group_create_operation::fee_parameters_type, (fee) )
|
FC_REFLECT( graphene::chain::event_group_create_operation::fee_parameters_type, (fee) )
|
||||||
|
|
@ -97,4 +96,4 @@ FC_REFLECT( graphene::chain::event_group_update_operation,
|
||||||
|
|
||||||
FC_REFLECT( graphene::chain::event_group_delete_operation::fee_parameters_type, (fee) )
|
FC_REFLECT( graphene::chain::event_group_delete_operation::fee_parameters_type, (fee) )
|
||||||
FC_REFLECT( graphene::chain::event_group_delete_operation,
|
FC_REFLECT( graphene::chain::event_group_delete_operation,
|
||||||
(fee)(event_group_id)(extensions) )
|
(fee)(event_group_id)(extensions) )
|
||||||
|
|
|
||||||
|
|
@ -84,4 +84,4 @@ FC_REFLECT( graphene::chain::sport_update_operation,
|
||||||
|
|
||||||
FC_REFLECT( graphene::chain::sport_delete_operation::fee_parameters_type, (fee) )
|
FC_REFLECT( graphene::chain::sport_delete_operation::fee_parameters_type, (fee) )
|
||||||
FC_REFLECT( graphene::chain::sport_delete_operation,
|
FC_REFLECT( graphene::chain::sport_delete_operation,
|
||||||
(fee)(sport_id)(extensions) )
|
(fee)(sport_id)(extensions) )
|
||||||
|
|
|
||||||
|
|
@ -1,54 +0,0 @@
|
||||||
/*
|
|
||||||
* Copyright (c) 2015 Cryptonomex, Inc., and contributors.
|
|
||||||
*
|
|
||||||
* The MIT License
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
* of this software and associated documentation files (the "Software"), to deal
|
|
||||||
* in the Software without restriction, including without limitation the rights
|
|
||||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
* copies of the Software, and to permit persons to whom the Software is
|
|
||||||
* furnished to do so, subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be included in
|
|
||||||
* all copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
||||||
* THE SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <boost/test/unit_test.hpp>
|
|
||||||
|
|
||||||
#include <graphene/chain/database.hpp>
|
|
||||||
#include <graphene/chain/exceptions.hpp>
|
|
||||||
#include <graphene/chain/hardfork.hpp>
|
|
||||||
|
|
||||||
#include <graphene/chain/account_object.hpp>
|
|
||||||
#include <graphene/chain/asset_object.hpp>
|
|
||||||
#include <graphene/chain/committee_member_object.hpp>
|
|
||||||
#include <graphene/chain/market_object.hpp>
|
|
||||||
#include <graphene/chain/vesting_balance_object.hpp>
|
|
||||||
#include <graphene/chain/withdraw_permission_object.hpp>
|
|
||||||
#include <graphene/chain/witness_object.hpp>
|
|
||||||
#include <graphene/account_history/account_history_plugin.hpp>
|
|
||||||
|
|
||||||
#include <fc/crypto/digest.hpp>
|
|
||||||
|
|
||||||
#include "../common/database_fixture.hpp"
|
|
||||||
|
|
||||||
using namespace graphene::chain;
|
|
||||||
using namespace graphene::chain::test;
|
|
||||||
|
|
||||||
BOOST_FIXTURE_TEST_SUITE( sports_and_events_tests, database_fixture )
|
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE( propose_delete_sport )
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
BOOST_AUTO_TEST_SUITE_END()
|
|
||||||
Loading…
Reference in a new issue