aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api/wallet.h
diff options
context:
space:
mode:
authorIlya Kitaev <mbg033@gmail.com>2016-04-20 13:17:27 +0300
committerIlya Kitaev <mbg033@gmail.com>2016-04-20 13:17:27 +0300
commitb6aaf53a6074e8e7181da5c3275e9fef56bf20da (patch)
tree97fde5089cc207a4746f690eae30c081e94dd239 /src/wallet/api/wallet.h
parentapi implementation splitted over separate files (diff)
downloadmonero-b6aaf53a6074e8e7181da5c3275e9fef56bf20da.tar.xz
transaction history api in progress
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;