Package org.ethereum.net.p2p

Examples of org.ethereum.net.p2p.PingMessage


    /* PING_MESSAGE & PONG_MESSAGE */

    @Test /* PingMessage */
    public void testPing() {

        PingMessage pingMessage = new PingMessage();
        System.out.println(pingMessage);

        assertEquals(PongMessage.class, pingMessage.getAnswerMessage());
       
        assertEquals(P2pMessageCodes.PING, pingMessage.getCommand());
    }
View Full Code Here

TOP

Related Classes of org.ethereum.net.p2p.PingMessage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.