mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-17 00:22:14 +11:00
4 lines
254 B
C++
4 lines
254 B
C++
#include "transaction.h"
|
|
|
|
Transaction::Transaction() noexcept {};
|
|
Transaction::Transaction(const std::string &from_str, const std::string &to_str, uint32_t amount, time_t time_val) noexcept : from(from_str), to(to_str), amount(amount), time(time_val) {}
|