diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-07-17 09:33:31 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-07-17 09:33:31 +0100 |
commit | 87b1153f3748a5031f5292451c13259aaf6c7c36 (patch) | |
tree | 3aea63e814fb108283ef89c86478995965afe556 | |
parent | Merge pull request #889 (diff) | |
download | monero-87b1153f3748a5031f5292451c13259aaf6c7c36.tar.xz |
wallet2_api: use uint64_t for amounts
-rw-r--r-- | src/wallet/api/pending_transaction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/api/pending_transaction.cpp b/src/wallet/api/pending_transaction.cpp index c4a770f87..26ce9fc7e 100644 --- a/src/wallet/api/pending_transaction.cpp +++ b/src/wallet/api/pending_transaction.cpp @@ -118,7 +118,7 @@ uint64_t PendingTransactionImpl::amount() const uint64_t PendingTransactionImpl::dust() const { - uint32_t result = 0; + uint64_t result = 0; for (const auto & ptx : m_pending_tx) { result += ptx.dust; } @@ -127,7 +127,7 @@ uint64_t PendingTransactionImpl::dust() const uint64_t PendingTransactionImpl::fee() const { - uint32_t result = 0; + uint64_t result = 0; for (const auto ptx : m_pending_tx) { result += ptx.fee; } |