From e96578195adfe0a80bc4be897e72d89813ea7387 Mon Sep 17 00:00:00 2001 From: Kris Nuttycombe Date: Thu, 3 Dec 2020 10:10:37 -0700 Subject: [PATCH] Not sure how this happened. --- zcash_client_sqlite/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zcash_client_sqlite/src/lib.rs b/zcash_client_sqlite/src/lib.rs index d184ed6dd..65db285b9 100644 --- a/zcash_client_sqlite/src/lib.rs +++ b/zcash_client_sqlite/src/lib.rs @@ -206,8 +206,8 @@ impl<'a> WalletRead for &'a WalletDB { diversifier = :diversifier, value = :value, rcm = :rcm, - nf = IFNULL(:memo, nf), - memo = IFNULL(:nf, memo), + nf = IFNULL(:nf, nf), + memo = IFNULL(:memo, memo), is_change = IFNULL(:is_change, is_change) WHERE tx = :tx AND output_index = :output_index", )?,