From c967bb8b391cc2bf711062086f0a2c23df5935be Mon Sep 17 00:00:00 2001 From: Kris Nuttycombe Date: Tue, 12 Mar 2024 12:20:42 -0600 Subject: [PATCH] Remove stray dbg! calls --- .../src/wallet/init/migrations/receiving_key_scopes.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zcash_client_sqlite/src/wallet/init/migrations/receiving_key_scopes.rs b/zcash_client_sqlite/src/wallet/init/migrations/receiving_key_scopes.rs index b8006f5d9..200958775 100644 --- a/zcash_client_sqlite/src/wallet/init/migrations/receiving_key_scopes.rs +++ b/zcash_client_sqlite/src/wallet/init/migrations/receiving_key_scopes.rs @@ -553,7 +553,7 @@ mod tests { row_count += 1; let value: u64 = row.get(0).unwrap(); let scope = parse_scope(row.get(1).unwrap()); - match dbg!(value) { + match value { EXTERNAL_VALUE => assert_eq!(scope, Some(Scope::External)), INTERNAL_VALUE => assert_eq!(scope, Some(Scope::Internal)), _ => { @@ -730,7 +730,7 @@ mod tests { row_count += 1; let value: u64 = row.get(0).unwrap(); let scope = parse_scope(row.get(1).unwrap()); - match dbg!(value) { + match value { EXTERNAL_VALUE => assert_eq!(scope, Some(Scope::External)), INTERNAL_VALUE => assert_eq!(scope, Some(Scope::Internal)), _ => {