[FIX] removed strlen for coin address

not needed because we check against coindaemon
This commit is contained in:
iAmShorty 2014-05-17 11:32:06 +02:00
parent 25172b27c6
commit ff677348be

View File

@ -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;