Remove debug comments

This commit is contained in:
mykola2312 2022-03-16 15:20:01 +02:00
parent 0fc7659b1b
commit a58a29ae7a

View file

@ -127,7 +127,6 @@ $stmt->execute();
$stmt->bindColumn(1, $peerIp);
$stmt->bindColumn(2, $peerPort);
while ($stmt->fetch(PDO::FETCH_BOUND)) {
//echo($peerIp . "\t" . $peerPort . "\n");
$peers .= pack("Nn", inet_pton($peerIp), $peerPort);
}