From 8d21eae2bbf3a72388af4d6969831677220d0529 Mon Sep 17 00:00:00 2001 From: TheLazieR Yip Date: Mon, 15 May 2017 04:12:15 +0000 Subject: [PATCH] Move import lines to top of class --- lib/coins.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/coins.py b/lib/coins.py index f66d148..cff766c 100644 --- a/lib/coins.py +++ b/lib/coins.py @@ -572,6 +572,8 @@ class DogecoinTestnet(Dogecoin): # Source: https://github.com/dashpay/dash class Dash(Coin): + from server.session import DashElectrumX + from server.daemon import DashDaemon NAME = "Dash" SHORTNAME = "DASH" NET = "mainnet" @@ -596,9 +598,7 @@ class Dash(Coin): 'electrum.dash.siampm.com s t', 'wl4sfwq2hwxnodof.onion s t', ] - from server.session import DashElectrumX SESSIONCLS = DashElectrumX - from server.daemon import DashDaemon DAEMON = DashDaemon @classmethod