Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit 290e9c8

Browse files
committed
Switch onename endpoint to https
closes #233
1 parent ace9941 commit 290e9c8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

keys/keychain.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def __init__(self, database, callback=None, heartbeat_server=None):
1313
guid_keys = self.db.keys.get_key("guid")
1414
if guid_keys is None:
1515
heartbeat_server.set_status("generating GUID")
16-
threading.Thread(target=self.create_keychain, args=[callback, heartbeat_server]).start()
16+
threading.Thread(target=self.create_keychain, args=[callback]).start()
1717
else:
1818
g = GUID.from_privkey(guid_keys[0])
1919
self.guid = g.guid
@@ -26,7 +26,7 @@ def __init__(self, database, callback=None, heartbeat_server=None):
2626
if callback is not None:
2727
callback(self)
2828

29-
def create_keychain(self, callback, heartbeat_server):
29+
def create_keychain(self, callback):
3030
"""
3131
The guid generation can take a while. While it's doing that we will
3232
open a port to allow a UI to connect and listen for generation to

ob.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ TRANSACTION_FEE = 10000
1010
LIBBITCOIN_SERVER = tcp://libbitcoin1.openbazaar.org:9091
1111
LIBBITCOIN_SERVER_TESTNET = tcp://libbitcoin2.openbazaar.org:9091
1212

13-
RESOLVER = http://resolver.onename.com/
13+
RESOLVER = https://resolver.onename.com/
1414

1515
[AUTHENTICATION]
1616

0 commit comments

Comments
 (0)