From 180ff226dcc452d78980120074133e32dd709cd0 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 | 3 +++ 2 files changed, 4 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..d8a85729 100644 --- a/tests/tests/network_broadcast_api_tests.cpp +++ b/tests/tests/network_broadcast_api_tests.cpp @@ -9,7 +9,10 @@ #include #include #include +#include #include +#include +#include #include "../common/database_fixture.hpp"