We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecd7c71 commit 3e647b7Copy full SHA for 3e647b7
1 file changed
examples/send-addrs-msg.py
@@ -41,12 +41,12 @@ def addr_pkt( str_addrs ):
41
s.send( version_pkt(client_ip, server_ip).to_bytes() )
42
43
# Get Version reply
44
-print s.recv(1924)
+print(s.recv(1924))
45
46
# Send Verack
47
s.send( msg_verack().to_bytes() )
48
# Get Verack
49
-print s.recv(1024)
+print(s.recv(1024))
50
51
# Send Addrs
52
s.send( addr_pkt(["252.11.1.2", "EEEE:7777:8888:AAAA::1"]).to_bytes() )
0 commit comments