diff --git a/src/integration-test/java/com/bloxbean/cardano/client/backend/impl/blockfrost/service/BFEpochServiceIT.java b/src/integration-test/java/com/bloxbean/cardano/client/backend/impl/blockfrost/service/BFEpochServiceIT.java index 27a0575d..0d861e69 100644 --- a/src/integration-test/java/com/bloxbean/cardano/client/backend/impl/blockfrost/service/BFEpochServiceIT.java +++ b/src/integration-test/java/com/bloxbean/cardano/client/backend/impl/blockfrost/service/BFEpochServiceIT.java @@ -78,10 +78,8 @@ public void testGetLatestProtocolParameters() throws ApiException { assertThat(protocolParams, notNullValue()); assertThat(protocolParams, notNullValue()); - assertThat(protocolParams.getMinUtxo(), is("0")); assertThat(protocolParams.getPoolDeposit(), is("500000000")); - //TODO commented as coinsPerUtxoWord in testnet is currently 0 -// assertThat(Integer.valueOf(protocolParams.getCoinsPerUtxoWord()), greaterThan(10000)); //actual value 34482 + assertThat(protocolParams.getCoinsPerUtxoWord(), is("34482")); assertThat(protocolParams.getEMax(), notNullValue()); assertThat(protocolParams.getNOpt(), notNullValue()); }