aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-01-24 19:55:18 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-01-24 19:55:18 +0000
commit15d9ac8abd51b7eb1d7a4a83014857cddf5c1f17 (patch)
tree2d2405faf22b9a841b0f69ad3ab2e0d179db30cf
parentMerge pull request #613 (diff)
downloadmonero-15d9ac8abd51b7eb1d7a4a83014857cddf5c1f17.tar.xz
wallet2: update spent comparison now that we have two spent states
-rw-r--r--src/wallet/wallet2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp
index 3edbaeca2..55e290c0c 100644
--- a/src/wallet/wallet2.cpp
+++ b/src/wallet/wallet2.cpp
@@ -1429,7 +1429,7 @@ void wallet2::rescan_spent()
{
LOG_PRINT_L0("Marking output " << i << "(" << td.m_key_image << ") as spent, it was marked as unspent");
}
- td.m_spent = daemon_resp.spent_status[i];
+ td.m_spent = daemon_resp.spent_status[i] != COMMAND_RPC_IS_KEY_IMAGE_SPENT::UNSPENT;
}
}
}