package anastore.proto;

import anastore.net.AsyncMessage;

/**
 * A reply to a {@link HandshakeReq}.  This is sent by the server once
 * it has finished sending the {@link DeprecationRep}s for the blocks
 * given in the HandshakeReq.
 */
public class HandshakeRep extends AsyncMessage
{
    @Override
    public String toString()
    {
        return "HandshakeRep<>";
    }
}
