mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
Merge pull request #405 from stamparm/master
Enforcing Base58 check on Litecoin and Dash addresses
This commit is contained in:
commit
79cfba389d
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ def check_base58_address(bc):
|
|||
return False
|
||||
|
||||
def verify_cryptocurrency_address(cryptocurrency_type, cryptocurrency_address):
|
||||
if cryptocurrency_type == 'bitcoin':
|
||||
if cryptocurrency_type in ('bitcoin', 'litecoin', 'dash'):
|
||||
return check_base58_address(cryptocurrency_address)
|
||||
else:
|
||||
return True
|
||||
|
|
Loading…
Reference in a new issue