Files
SilentDragonXLite/src/unspentoutput.h
2018-10-26 09:09:57 -07:00

16 lines
242 B
C

#ifndef UNSPENTOUTPUT_H
#define UNSPENTOUTPUT_H
#include "precompiled.h"
struct UnspentOutput {
QString address;
QString txid;
QString amount;
int confirmations;
bool spendable;
};
#endif // UNSPENTOUTPUT_H