mirror of
https://github.com/dashpay/dash.git
synced 2024-12-29 13:59:06 +01:00
17 lines
309 B
C++
17 lines
309 B
C++
#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
|