aboutsummaryrefslogtreecommitdiff
path: root/src/qt/transactiondesc.h
blob: 5a85949341f213c56f7c688119fbb0b2316b0adf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef TRANSACTIONDESC_H
#define TRANSACTIONDESC_H

#include <string>

class CWalletTx;

class TransactionDesc
{
public:
    /* Provide human-readable extended HTML description of a transaction */
    static std::string toHTML(CWalletTx &wtx);
};

#endif // TRANSACTIONDESC_H