diff options
author | Ilya Kitaev <mbg033@gmail.com> | 2016-04-20 13:17:27 +0300 |
---|---|---|
committer | Ilya Kitaev <mbg033@gmail.com> | 2016-06-23 15:50:17 +0300 |
commit | 663ed04eb83c7185c7f7c480c685647bfd29b376 (patch) | |
tree | 1854e8c2ae340313c74a3e0c8a110cc4e93696a6 /src/wallet/api/wallet.cpp | |
parent | api implementation splitted over separate files (diff) | |
download | monero-663ed04eb83c7185c7f7c480c685647bfd29b376.tar.xz |
transaction history api in progress
Diffstat (limited to 'src/wallet/api/wallet.cpp')
-rw-r--r-- | src/wallet/api/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp index e42f04cf7..a665fff95 100644 --- a/src/wallet/api/wallet.cpp +++ b/src/wallet/api/wallet.cpp @@ -288,7 +288,7 @@ PendingTransaction *WalletImpl::createTransaction(const string &dst_addr, uint64 if (fake_outs_count == 0) fake_outs_count = DEFAULT_MIX; - TransactionImpl * transaction = new TransactionImpl(this); + PendingTransactionImpl * transaction = new PendingTransactionImpl(this); do { |