1
0

keep one default server for now

This commit is contained in:
ThomasV
2012-03-30 14:48:40 +02:00
parent 81bb04378f
commit 578baf189d
2 changed files with 2 additions and 3 deletions

View File

@@ -233,7 +233,6 @@ from version import ELECTRUM_VERSION, SEED_VERSION
from interface import NativeInterface, AsynchronousInterface, HttpInterface, DEFAULT_SERVERS
DEFAULT_PORT = 50000
class Wallet:
@@ -260,7 +259,7 @@ class Wallet:
self.receipt = None # next receipt
self.addressbook = [] # outgoing addresses, for payments
self.server = random.choice( DEFAULT_SERVERS ) + ':50000:n' # random choice when the wallet is created
self.server = random.choice( DEFAULT_SERVERS ) # random choice when the wallet is created
# not saved
self.tx_history = {}