From 7d38974ba0318d7a515b3903e89e5db805f93d30 Mon Sep 17 00:00:00 2001 From: EntireTwix Date: Wed, 21 Apr 2021 21:24:23 -0700 Subject: [PATCH] :bug: json 64 bug --- include/bank.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bank.hpp b/include/bank.hpp index d4256b2..d436fe0 100644 --- a/include/bank.hpp +++ b/include/bank.hpp @@ -218,7 +218,7 @@ public: res[j]["to"] = l.data[i].to; res[j]["from"] = l.data[i].from; res[j]["amount"] = l.data[i].amount; - res[j]["time"] = l.data[i].time; + res[j]["time"] = (Json::UInt64)l.data[i].time; } }))) {