adjust for last commit

This commit is contained in:
romanman 2014-10-17 23:33:58 -05:00
parent 12d014272e
commit e556a04d14
2 changed files with 3 additions and 1 deletions

View File

@ -115,6 +115,7 @@ public class EthHandler extends SimpleChannelInboundHandler<EthMessage> {
processBlocks((BlocksMessage) msg);
break;
case NEW_BLOCK:
msgQueue.receivedMessage(msg);
procesNewBlock((NewBlockMessage)msg);
default:
break;

View File

@ -51,6 +51,7 @@ public class NewBlockMessage extends EthMessage {
public String toString() {
if (!parsed) parse();
return "";
String blockString = this.getBlock().toString();
return "NEW_BLOCK [ " + blockString + " ]";
}
}