Upgrade protocol versions

This commit is contained in:
romanman 2014-11-06 07:41:53 -05:00
parent 5aeade32e2
commit b90b92b09f
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ import static org.ethereum.net.message.StaticMessages.GET_TRANSACTIONS_MESSAGE;
*/
public class EthHandler extends SimpleChannelInboundHandler<EthMessage> {
public final static byte VERSION = 0x26;
public final static byte VERSION = 39;
public final static byte NETWORK_ID = 0x0;
private final static Logger logger = LoggerFactory.getLogger("net");

View File

@ -42,7 +42,7 @@ import org.slf4j.LoggerFactory;
*/
public class P2pHandler extends SimpleChannelInboundHandler<P2pMessage> {
public final static byte VERSION = 0x2;
public final static byte VERSION = 2;
private final static Logger logger = LoggerFactory.getLogger("net");