Coverage Summary for Class: EventType (co.rsk.scoring)
Class |
Class, %
|
Method, %
|
Line, %
|
EventType |
0%
(0/1)
|
0%
(0/2)
|
0%
(0/16)
|
1 package co.rsk.scoring;
2
3 /**
4 * EventType is an enumeration to represent the events to be recorded
5 * in peer scoring (@see PeerScoring)
6 * <p>
7 * Created by ajlopez on 27/06/2017.
8 */
9 public enum EventType {
10 INVALID_BLOCK,
11 VALID_BLOCK,
12 INVALID_TRANSACTION,
13 VALID_TRANSACTION,
14 FAILED_HANDSHAKE,
15 SUCCESSFUL_HANDSHAKE,
16 INVALID_NETWORK,
17 INCOMPATIBLE_PROTOCOL,
18 UNEXPECTED_GENESIS,
19 DISCONNECTION,
20 REPEATED_MESSAGE,
21 INVALID_MESSAGE,
22 UNEXPECTED_MESSAGE,
23 TIMEOUT_MESSAGE,
24 INVALID_HEADER
25 }