From 5ad521e2d6f8326d651a6f6a6cd03737671c379b Mon Sep 17 00:00:00 2001 From: Ronak Patel Date: Tue, 20 Aug 2019 13:07:29 +0530 Subject: [PATCH] Fixed compilation error for max transaction size test case and genesis timestamp divisible by 5 --- tests/common/database_fixture.cpp | 2 +- tests/tests/network_broadcast_api_tests.cpp | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/common/database_fixture.cpp b/tests/common/database_fixture.cpp index e6a0b327..88696611 100644 --- a/tests/common/database_fixture.cpp +++ b/tests/common/database_fixture.cpp @@ -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 { diff --git a/tests/tests/network_broadcast_api_tests.cpp b/tests/tests/network_broadcast_api_tests.cpp index 296152f4..963892e2 100644 --- a/tests/tests/network_broadcast_api_tests.cpp +++ b/tests/tests/network_broadcast_api_tests.cpp @@ -10,6 +10,8 @@ #include #include #include +#include +#include #include "../common/database_fixture.hpp"