package anastore.proto;

import anastore.net.AsyncMessage;

/**
 * A reply to a commit request that indicates that the commit failed
 * because of a conflict other than a read/write conflict (such as a
 * new block collision)
 */
public class ConflictRep extends AsyncMessage
{
    @Override
    public String toString()
    {
        return "ConflictRep<>";
    }
}
