Skip to content

Commit

Permalink
Add JsonIgnoreProperties to EpochValidationInput
Browse files Browse the repository at this point in the history
  • Loading branch information
satran004 committed Nov 7, 2024
1 parent dae4ab9 commit 501d1fd
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package org.cardanofoundation.rewards.validation.domain;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.*;
import org.cardanofoundation.rewards.calculation.domain.MirCertificate;
import org.cardanofoundation.rewards.calculation.domain.PoolState;
Expand All @@ -15,6 +16,7 @@
@Builder
@NoArgsConstructor
@AllArgsConstructor
@JsonIgnoreProperties(ignoreUnknown = true)
public class EpochValidationInput {
private int epoch;

Expand Down

0 comments on commit 501d1fd

Please sign in to comment.