From 436dfc3da63bdf85573ccfd2b39ba5b2482c4f1d 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 3da01662..c6a21640 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 ac6b87b7..98aab691 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"