CCash/src/transaction.cpp
2021-07-13 20:25:58 -07:00

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) {}