Fixed CSV input bug

This commit is contained in:
dabura667 2014-09-06 01:07:44 +09:00 committed by ThomasV
parent caf4adff49
commit 7568d71d12

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])