Coverage Summary for Class: RejectedPeginReason (co.rsk.peg.utils)
Class | Class, % | Method, % | Line, % |
---|---|---|---|
RejectedPeginReason | 0% (0/1) | 0% (0/3) | 0% (0/8) |
1 package co.rsk.peg.utils; 2 3 public enum RejectedPeginReason { 4 PEGIN_CAP_SURPASSED(1), 5 LEGACY_PEGIN_MULTISIG_SENDER(2), 6 LEGACY_PEGIN_UNDETERMINED_SENDER(3), 7 PEGIN_V1_INVALID_PAYLOAD(4); 8 9 private final int value; 10 11 RejectedPeginReason(int value) { 12 this.value = value; 13 } 14 15 public int getValue() { 16 return value; 17 } 18 }