share combining
[p2pool.git] / p2pool / bitcoin / p2p.py
index 106eb7e..e804019 100644 (file)
@@ -111,6 +111,7 @@ class BaseProtocol(protocol.Protocol):
             raise ValueError('compressed payload too long')
         data = self._prefix + struct.pack('<12sI', command, len(compressed_payload)) + checksum + compressed_payload
         self.transport.write(data)
+        print "SEND", command, len(compressed_payload)
     
     def __getattr__(self, attr):
         prefix = 'send_'