Bumping versions

This commit is contained in:
romanman 2014-11-23 21:43:55 +01:00
parent d7735f0310
commit f443bb6157
4 changed files with 4 additions and 3 deletions

View File

@ -130,6 +130,7 @@ public class RepositoryImpl implements Repository {
@Override
public void flush(){
logger.info("flush to disk");
worldState.sync();
}

View File

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

View File

@ -21,7 +21,7 @@ import org.springframework.stereotype.Component;
@Scope("prototype")
public class ShhHandler extends SimpleChannelInboundHandler<ShhMessage> {
public final static byte VERSION = 0x1;
public final static byte VERSION = 2;
private MessageQueue msgQueue = null;
private boolean active = false;

View File

@ -71,7 +71,7 @@
<dependency>
<groupId>org.ethereum</groupId>
<artifactId>ethereumj</artifactId>
<version>0.7.9.20141119.1233</version>
<version>0.7.9.20141123.2140</version>
</dependency>