mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-15 15:52:13 +11:00
4 lines
269 B
C++
4 lines
269 B
C++
#include "transaction.h"
|
|
|
|
Transaction::Transaction() noexcept {};
|
|
Transaction::Transaction(const std::string &counterparty_str, bool receiving, uint32_t amount, time_t time) noexcept : counterparty(counterparty_str), receiving(receiving), amount(amount), time(time) {}
|