mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
first
This commit is contained in:
17
Transaction.h
Normal file
17
Transaction.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#include "string"
|
||||
|
||||
/*
|
||||
A transaction can have only one input and one output.
|
||||
If you want to send an amount that is greater than any single address of yours
|
||||
you must first combine coins from one address to another.
|
||||
*/
|
||||
|
||||
class Transaction
|
||||
{
|
||||
std::string mSource;
|
||||
std::string mSig;
|
||||
std::string mDest;
|
||||
unsigned int mAmount;
|
||||
public:
|
||||
Transaction();
|
||||
};
|
||||
Reference in New Issue
Block a user