blob: fde861b6fb305c826fe00d0972425ac6dfcacaea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef TRANSACTIONDESC_H
#define TRANSACTIONDESC_H
#include <string>
class CWallet;
class CWalletTx;
class TransactionDesc
{
public:
/* Provide human-readable extended HTML description of a transaction */
static std::string toHTML(CWallet *wallet, CWalletTx &wtx);
};
#endif // TRANSACTIONDESC_H
|