Bumping versions
This commit is contained in:
parent
d7735f0310
commit
f443bb6157
|
@ -130,6 +130,7 @@ public class RepositoryImpl implements Repository {
|
|||
|
||||
@Override
|
||||
public void flush(){
|
||||
logger.info("flush to disk");
|
||||
worldState.sync();
|
||||
}
|
||||
|
||||
|
|
|
@ -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");
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue