From 7e07d7bc7e00deeba5571da201b5b88a7dbbfa09 Mon Sep 17 00:00:00 2001
From: Jonathan Warren <me@jonwarren.org>
Date: Tue, 24 Sep 2013 00:55:13 -0400
Subject: [PATCH] _verifyAddress support v4 addresses

---
 src/bitmessagemain.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bitmessagemain.py b/src/bitmessagemain.py
index 3d7f5c73..47925a46 100755
--- a/src/bitmessagemain.py
+++ b/src/bitmessagemain.py
@@ -165,8 +165,8 @@ class MySimpleXMLRPCRequestHandler(SimpleXMLRPCRequestHandler):
             if status == 'versiontoohigh':
                 raise APIError(10, 'Address version number too high (or zero) in address: ' + address)
             raise APIError(7, 'Could not decode address: ' + address + ' : ' + status)
-        if addressVersionNumber < 2 or addressVersionNumber > 3:
-            raise APIError(11, 'The address version number currently must be 2 or 3. Others aren\'t supported. Check the address.')
+        if addressVersionNumber < 2 or addressVersionNumber > 4:
+            raise APIError(11, 'The address version number currently must be 2, 3 or 4. Others aren\'t supported. Check the address.')
         if streamNumber != 1:
             raise APIError(12, 'The stream number must be 1. Others aren\'t supported. Check the address.')