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 2f7df247a9
commit 51c9195e97
2 changed files with 2 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

@ -12,6 +12,7 @@
#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"