Files
SilentDragonXLite/src/unspentoutput.h
2018-10-13 23:04:36 -07:00

19 lines
312 B
C++

#ifndef UNSPENTOUTPUT_H
#define UNSPENTOUTPUT_H
#include "precompiled.h"
class UnspentOutput
{
public:
UnspentOutput(QString address, QString txid, QString amount, int confirmations);
QString address;
QString txid;
QString amount;
int confirmations;
};
#endif // UNSPENTOUTPUT_H