From 7337165d0e2db8e673af211cbe8c7cd49a860f2d Mon Sep 17 00:00:00 2001 From: dabura667 Date: Sat, 6 Sep 2014 01:07:44 +0900 Subject: [PATCH] Fixed CSV input bug --- gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 5fd473af..0cbfde85 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -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])