Skip to content

Commit

Permalink
Fixed payout public key
Browse files Browse the repository at this point in the history
  • Loading branch information
devos50 committed Jun 20, 2018
1 parent c89cafd commit 49fc70b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tribler/community/triblertunnel/community.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def update_torrent(self, peers, handle, download):
def get_peer_from_address(self, address):
circuit_peer = None
for peer in self.get_peers():
if peer.address == address:
if peer.address == address and peer.public_key.key_to_bin().startswith("LibNaCLPK:"):
circuit_peer = peer
break

Expand Down

0 comments on commit 49fc70b

Please sign in to comment.