Directory structure
This commit is contained in:
18
src/unspentoutput.h
Normal file
18
src/unspentoutput.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user