Skip to content

Commit

Permalink
refactor: fixing spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
Kammerlo committed May 7, 2024
1 parent 61b3158 commit 6bcccc3
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class ProtocolParams {
private ExtraEntropy extraEntropy; //13
private ProtocolVersion protocolVersion; //14
@JsonProperty("minUTxOValue")
private BigInteger minUtxo; //15
private BigInteger minUtxoValue; //15

private BigInteger minPoolCost; //16
private BigInteger adaPerUtxoByte; //17
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.media.Content;
import io.swagger.v3.oas.annotations.responses.ApiResponse;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
import org.cardanofoundation.rosetta.common.enumeration.OperationType;
import org.cardanofoundation.rosetta.common.enumeration.OperationTypeStatus;
import org.cardanofoundation.rosetta.common.exception.ExceptionFactory;
import org.cardanofoundation.rosetta.common.exception.ServerException;
import org.cardanofoundation.rosetta.common.mapper.DataMapper;
import org.cardanofoundation.rosetta.common.model.cardano.network.Producer;
import org.cardanofoundation.rosetta.common.model.cardano.network.PublicRoot;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import org.springframework.http.HttpMethod;
import org.springframework.stereotype.Component;
import org.springframework.web.servlet.HandlerInterceptor;
import org.springframework.web.servlet.ModelAndView;

import org.cardanofoundation.rosetta.common.services.LoggingService;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ private void assertProtocolParameters(ProtocolParams into, ProtocolParamsEntity
assertThat(into.getMinFeeA()).isEqualTo(param.getMinFeeA());
assertThat(into.getMinFeeB()).isEqualTo(param.getMinFeeB());
assertThat(into.getMinPoolCost()).isEqualTo(param.getMinPoolCost());
assertThat(into.getMinUtxo()).isEqualTo(param.getMinUtxo());
assertThat(into.getMinUtxoValue()).isEqualTo(param.getMinUtxo());
assertThat(into.getNOpt()).isEqualTo(param.getNOpt());
assertThat(into.getPoolDeposit()).isEqualTo(param.getPoolDeposit());
assertThat(into.getPoolPledgeInfluence()).isEqualTo(param.getPoolPledgeInfluence());
Expand Down

0 comments on commit 6bcccc3

Please sign in to comment.