From ff677348be0d105ab0ca1c74c74b8feee6e961c8 Mon Sep 17 00:00:00 2001 From: iAmShorty Date: Sat, 17 May 2014 11:32:06 +0200 Subject: [PATCH] [FIX] removed strlen for coin address not needed because we check against coindaemon --- include/classes/user.class.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/classes/user.class.php b/include/classes/user.class.php index 11ea0ea3..a8d0f308 100644 --- a/include/classes/user.class.php +++ b/include/classes/user.class.php @@ -741,10 +741,6 @@ class User extends Base { $this->setErrorMessage('Username exceeding character limit'); return false; } - if (strlen($coinaddress) < 35) { - $this->setErrorMessage('Coin Address is to short'); - return false; - } if (!$this->bitcoin->validateaddress($coinaddress)) { $this->setErrorMessage('Coin address is not valid'); return false;