diff options
author | Ilya Kitaev <mbg033@gmail.com> | 2016-06-22 15:50:59 +0300 |
---|---|---|
committer | Ilya Kitaev <mbg033@gmail.com> | 2016-06-22 15:50:59 +0300 |
commit | 4e5521d87d3897e8ce547e7bf11ef24024a9dbdf (patch) | |
tree | b166ecc401888d522eebc4e245112d84ec49c23d /src/wallet/api/pending_transaction.h | |
parent | commented regex (diff) | |
download | monero-4e5521d87d3897e8ce547e7bf11ef24024a9dbdf.tar.xz |
PendingTransactionImpl: pointer->reference
Diffstat (limited to '')
-rw-r--r-- | src/wallet/api/pending_transaction.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/api/pending_transaction.h b/src/wallet/api/pending_transaction.h index 0ae3eb8e2..8e09bec91 100644 --- a/src/wallet/api/pending_transaction.h +++ b/src/wallet/api/pending_transaction.h @@ -41,7 +41,7 @@ class WalletImpl; class PendingTransactionImpl : public PendingTransaction { public: - PendingTransactionImpl(WalletImpl * wallet); + PendingTransactionImpl(WalletImpl &wallet); ~PendingTransactionImpl(); int status() const; std::string errorString() const; @@ -53,7 +53,7 @@ public: private: friend class WalletImpl; - WalletImpl * m_wallet; + WalletImpl &m_wallet; int m_status; std::string m_errorString; |