From e2ac101526fcffa0ac702da51d96a339bca6b911 Mon Sep 17 00:00:00 2001
From: Matt Covalt <mcovalt@mailbox.org>
Date: Thu, 6 Dec 2018 08:33:42 -0800
Subject: [PATCH] Update interface.c to remove non-existant Salt-Type 3
 support.

---
 src/interface.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/interface.c b/src/interface.c
index c96719a0b..7371146eb 100644
--- a/src/interface.c
+++ b/src/interface.c
@@ -17860,7 +17860,7 @@ int electrum_wallet13_parse_hash (u8 *input_buf, u32 input_len, hash_t *hash_buf
 
   const u32 salt_type = hc_strtoul ((const char *) salt_type_pos, NULL, 10);
 
-  if ((salt_type == 1) || (salt_type == 2) || (salt_type == 3))
+  if ((salt_type == 1) || (salt_type == 2))
   {
     // all ok
   }