CCash/src/transaction.cpp
2021-07-02 23:33:17 -07:00

5 lines
No EOL
413 B
C++

#include "transaction.h"
Transaction::Transaction() = default;
Transaction::Transaction(const std::string &from_str, const std::string &to_str, uint32_t amount, time_t time_val) : from(from_str), to(to_str), amount(amount), time(time_val) {}
Transaction::Transaction(const std::string &from_str, const std::string &to_str, uint32_t amount) : from(from_str), to(to_str), amount(amount) { time = std::time(NULL); }