Skip to content

Commit

Permalink
Netbox.Wallet v3.3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
NetboxGlobal-Team committed Aug 21, 2019
1 parent 9438ab1 commit 9fb2a6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 3)
define(_CLIENT_VERSION_MINOR, 3)
define(_CLIENT_VERSION_REVISION, 0)
define(_CLIENT_VERSION_BUILD, 1)
define(_CLIENT_VERSION_BUILD, 2)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2019)
AC_INIT([Netbox.Global],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[netbox.global],[nbx])
Expand Down
2 changes: 1 addition & 1 deletion src/qt/transactionrecord.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ QList<TransactionRecord> TransactionRecord::decomposeTransaction(const CWallet*
//
// Credit
//
for (unsigned int i = 1; i < wtx.vout.size(); ++i) {
for (unsigned int i = 0; i < wtx.vout.size(); ++i) {
isminetype mine = wallet->IsMine(wtx.vout[i]);
if (mine) {
TransactionRecord sub(hash, nTime);
Expand Down

0 comments on commit 9fb2a6b

Please sign in to comment.