From 15d9ac8abd51b7eb1d7a4a83014857cddf5c1f17 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Sun, 24 Jan 2016 19:55:18 +0000 Subject: [PATCH] wallet2: update spent comparison now that we have two spent states --- src/wallet/wallet2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } } }