adjust for last commit
This commit is contained in:
parent
12d014272e
commit
e556a04d14
|
@ -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;
|
||||
|
|
|
@ -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 + " ]";
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue