mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-13 05:12:34 -03:00
16 lines
277 B
C
16 lines
277 B
C
|
#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
|