cleanup dead code

This commit is contained in:
ThomasV 2015-02-21 08:48:15 +01:00
parent 1b65dd7974
commit 56dc9f7f80
2 changed files with 0 additions and 19 deletions

View File

@ -13,7 +13,6 @@ except ImportError:
sys.exit(0)
from decimal import Decimal as D
from electrum.util import get_resource_path as rsrc
from electrum.bitcoin import is_valid
from electrum.i18n import _
import decimal
@ -867,9 +866,3 @@ class MiniDriver(QObject):
self.window.update_history(tx_history)
if __name__ == "__main__":
app = QApplication(sys.argv)
with open(rsrc("style.css")) as style_file:
app.setStyleSheet(style_file.read())
mini = MiniWindow()
sys.exit(app.exec_())

View File

@ -63,18 +63,6 @@ def user_dir():
def get_resource_path(*args):
return os.path.join(".", *args)
def local_data_dir():
"""Return path to the data folder."""
assert sys.argv
prefix_path = os.path.dirname(sys.argv[0])
local_data = os.path.join(prefix_path, "data")
return local_data
def format_satoshis(x, is_diff=False, num_zeros = 0, decimal_point = 8, whitespaces=False):
from decimal import Decimal
s = Decimal(x)