Fixed compilation error for max transaction size test case and genesis timestamp divisible by 5

This commit is contained in:
Ronak Patel 2019-08-20 13:07:29 +05:30
parent d4ec4d0814
commit 180ff226dc
2 changed files with 4 additions and 1 deletions

View file

@ -59,7 +59,7 @@
using namespace graphene::chain::test;
uint32_t GRAPHENE_TESTING_GENESIS_TIMESTAMP = 1431700002;
uint32_t GRAPHENE_TESTING_GENESIS_TIMESTAMP = 1431700000;
namespace graphene { namespace chain {

View file

@ -9,7 +9,10 @@
#include <graphene/chain/proposal_object.hpp>
#include <graphene/chain/witness_object.hpp>
#include <graphene/chain/protocol/committee_member.hpp>
#include <graphene/chain/protocol/sport.hpp>
#include <fc/crypto/digest.hpp>
#include <graphene/app/database_api.hpp>
#include <graphene/app/api.hpp>
#include "../common/database_fixture.hpp"