Few days ago I've found this article about using raw Bitcoin protocol and now I'm trying to make my own transaction with Python. But I'm already stuck on sending version message.
I've tried to use code snippets from the article. According to it, this code below should work, but Wireshark can't recognize anything and there's no verack response
import msgUtils
import socket
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.connect(("NODE_IP_ADDRESS", 8333)) # Shodan search 'port:8333'
sock.send(msgUtils.getVersionMsg())
sock.recv(1000) # receive version
sock.recv(1000) # receive verack
Maybe it don't work because article was written in 2014 and now it's totally outdated?