From 9e8ce406ecb464a72a4d34be8adff57867ddbdcc Mon Sep 17 00:00:00 2001 From: EntireTwix Date: Wed, 21 Apr 2021 21:22:56 -0700 Subject: [PATCH] :bug: made time 64 bit --- include/transactions.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/transactions.hpp b/include/transactions.hpp index 9c92ff4..b56648e 100644 --- a/include/transactions.hpp +++ b/include/transactions.hpp @@ -2,13 +2,13 @@ #include #include -//24 bytes total +//42 bytes total struct Transaction { std::string from = "", to = ""; uint32_t amount = 0; - uint32_t time = 0; + uint64_t time = 0; void Concatinate(std::string &s) {