Skip to content

Commit

Permalink
fixed getaddr rpc call
Browse files Browse the repository at this point in the history
  • Loading branch information
forrestv committed May 3, 2012
1 parent c7f2324 commit 0a451b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion p2pool/p2p.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def handle_getaddrs(self, count):
count = 100
self.send_addrs(addrs=[
dict(
timestamp=self.node.addr_store[host, port][2],
timestamp=int(self.node.addr_store[host, port][2]),
address=dict(
services=self.node.addr_store[host, port][0],
address=host,
Expand Down

0 comments on commit 0a451b5

Please sign in to comment.