mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-17 16:42:13 +11:00
5 lines
No EOL
413 B
C++
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); } |