aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api/wallet.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wallet/api/wallet.h')
-rw-r--r--src/wallet/api/wallet.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/wallet/api/wallet.h b/src/wallet/api/wallet.h
index 35db38f67..6a654b13e 100644
--- a/src/wallet/api/wallet.h
+++ b/src/wallet/api/wallet.h
@@ -38,7 +38,8 @@
namespace Bitmonero {
-
+class TransactionHistoryImpl;
+class PendingTransactionImpl;
class WalletImpl : public Wallet
{
@@ -72,7 +73,9 @@ private:
void clearStatus();
private:
- friend class TransactionImpl;
+ friend class PendingTransactionImpl;
+ friend class TransactionHistoryImpl;
+
tools::wallet2 * m_wallet;
int m_status;
std::string m_errorString;