From 33a4759f31dbbfaf7bf285efc03f657fde0313b2 Mon Sep 17 00:00:00 2001 From: Alfredo Date: Sat, 15 Dec 2018 16:20:14 -0300 Subject: [PATCH] make GRAPHENE_TESTING_GENESIS_TIMESTAMP divisible by 3 --- .idea/misc.xml | 4 ++++ .idea/vcs.xml | 6 ++++++ tests/common/database_fixture.cpp | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 .idea/misc.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 00000000..79b3c948 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000..94a25f7f --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/tests/common/database_fixture.cpp b/tests/common/database_fixture.cpp index c6a21640..3da01662 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 = 1431700000; +uint32_t GRAPHENE_TESTING_GENESIS_TIMESTAMP = 1431700002; namespace graphene { namespace chain {