mirror of
https://github.com/Expand-sys/CCash
synced 2026-03-22 12:37:08 +11:00
🐛 made time 64 bit
This commit is contained in:
parent
d72965efb1
commit
9e8ce406ec
1 changed files with 2 additions and 2 deletions
|
|
@ -2,13 +2,13 @@
|
|||
#include <chrono>
|
||||
#include <cstdint>
|
||||
|
||||
//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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue