From: Eagle[TM] Date: Mon, 28 Jan 2013 23:21:27 +0000 (+0100) Subject: fix DataStore class broken by utility cleanup (kudos for fix: brincobt/Animazing) X-Git-Url: https://git.novaco.in/?p=electrum-server.git;a=commitdiff_plain;h=dc12bc5c10542035da27dca636390845130a9e21 fix DataStore class broken by utility cleanup (kudos for fix: brincobt/Animazing) --- diff --git a/backends/abe/__init__.py b/backends/abe/__init__.py index 48dd27e..13186fa 100644 --- a/backends/abe/__init__.py +++ b/backends/abe/__init__.py @@ -16,7 +16,7 @@ from processor import Processor, print_log from utils import * -class AbeStore(Datastore.Datastore): +class AbeStore(DataStore.DataStore): def __init__(self, config): conf = DataStore.CONFIG_DEFAULTS @@ -39,7 +39,7 @@ class AbeStore(Datastore.Datastore): print_log(' addrtype = 48') self.addrtype = 48 - Datastore.Datastore.__init__(self, args) + DataStore.DataStore.__init__(self, args) # Use 1 (Bitcoin) if chain_id is not sent self.chain_id = self.datadirs[0]["chain_id"] or 1