From 7044e5c78296f4c064ba19674a50b90553d15f7f Mon Sep 17 00:00:00 2001 From: Prabhjot Date: Wed, 31 Jul 2019 10:19:35 -0400 Subject: [PATCH] added missing comma in operations.hpp, small changes to config.hpp --- libraries/chain/include/graphene/chain/config.hpp | 4 ++-- .../chain/include/graphene/chain/protocol/operations.hpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/chain/include/graphene/chain/config.hpp b/libraries/chain/include/graphene/chain/config.hpp index 8622dfef..79789ff1 100644 --- a/libraries/chain/include/graphene/chain/config.hpp +++ b/libraries/chain/include/graphene/chain/config.hpp @@ -228,6 +228,6 @@ #define TOURNAMENT_MAX_START_DELAY (60*60*24*7) // 1 week #define SWEEPS_DEFAULT_DISTRIBUTION_PERCENTAGE (2*GRAPHENE_1_PERCENT) -#define SWEEPS_DEFAULT_DISTRIBUTION_ASSET asset_id_type(0) +#define SWEEPS_DEFAULT_DISTRIBUTION_ASSET (graphene::chain::asset_id_type(0)) #define SWEEPS_VESTING_BALANCE_MULTIPLIER 100000000 -#define SWEEPS_ACCUMULATOR_ACCOUNT account_id_type(0) +#define SWEEPS_ACCUMULATOR_ACCOUNT (graphene::chain::account_id_type(0)) diff --git a/libraries/chain/include/graphene/chain/protocol/operations.hpp b/libraries/chain/include/graphene/chain/protocol/operations.hpp index 4941dc6f..2f70c4f7 100644 --- a/libraries/chain/include/graphene/chain/protocol/operations.hpp +++ b/libraries/chain/include/graphene/chain/protocol/operations.hpp @@ -130,7 +130,7 @@ namespace graphene { namespace chain { sport_delete_operation, event_group_delete_operation, affiliate_payout_operation, // VIRTUAL - affiliate_referral_payout_operation // VIRTUAL + affiliate_referral_payout_operation, // VIRTUAL ticket_purchase_operation, lottery_reward_operation, lottery_end_operation,