Skip to content

Commit

Permalink
Testcase updated to include assert for coinsPerUtxoWord
Browse files Browse the repository at this point in the history
  • Loading branch information
satran004 committed Oct 9, 2021
1 parent a1915fb commit 3349bc1
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}
Expand Down

0 comments on commit 3349bc1

Please sign in to comment.