CCash/include/transactions.hpp
2021-04-21 23:25:16 -07:00

34 lines
No EOL
762 B
C++

#pragma once
#include <chrono>
#include <cstdint>
//42 bytes total
struct Transaction
{
std::string from = "", to = "";
uint32_t amount = 0;
uint32_t time = 0;
void Concatinate(std::string &s)
{
if (s.size() > 10)
{
s.resize(10);
s[7] = '.';
s[8] = '.';
s[9] = '.';
}
}
Transaction() = default;
Transaction(std::string from_str, std::string to_str, uint32_t amount) : amount(amount)
{
using namespace std::chrono;
Concatinate(from_str);
Concatinate(to_str);
from = std::move(from_str);
to = std::move(to_str);
time = duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count();
}
};