Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion confirm_req.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ def test_confirm_req(self):
binascii.unhexlify('991CF190094C00F0B68E2E5F75F6BEE95A2E0BD93CEAA4A6734DB9F19B728948'),
binascii.unhexlify('E89208DD038FBB269987689621D52292AE9C35941A7484756ECCED92A65093BA'))

self.assertTrue(confirm_req_peer(ctx, None, pair, peeraddr=peeraddr,
self.assertTrue(confirm_req_peer(ctx, pair, peeraddr=peeraddr,
peerport=peerport))


Expand Down
2 changes: 1 addition & 1 deletion pull_blocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def test_pull_blocks(self):
ob = block_open(open_block['source'], open_block['rep'], open_block['account'], open_block['sign'],
open_block['work'])

account = ctx["genesis_pub"]
account = binascii.unhexlify(ctx["genesis_pub"])
peeraddr = '::ffff:94.130.12.236'
peerport = 7075
with get_connected_socket_endpoint(peeraddr, peerport) as s:
Expand Down
2 changes: 1 addition & 1 deletion xnotests.py
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ def test_frontier_service_client(self):
frontserv = frontier_service(livectx, inter, 0)
thread1 = threading.Thread(target=frontserv.start_service, daemon=True)
thread1.start()
time.sleep(3)
time.sleep(5)
s_packet = get_all_frontiers_packet_from_service()
self.assertTrue(len(s_packet.frontiers) > 0)

Expand Down