Merge pull request #818 from dabura667/fixCSV

Fixed CSV input bug
This commit is contained in:
ThomasV 2014-09-05 18:09:34 +02:00
commit cec18fb7fe
1 changed files with 1 additions and 1 deletions

View File

@ -2201,7 +2201,7 @@ class ElectrumWindow(QMainWindow):
try:
for position, row in enumerate(csvReader):
address = row[0]
if not is_address(address):
if not bitcoin.is_address(address):
errors.append((position, address))
continue
amount = Decimal(row[1])