From dd96a297df58d8cfcab8ae8d93d76d09a943af5d Mon Sep 17 00:00:00 2001 From: Samuel Leathers Date: Fri, 5 Apr 2024 10:59:49 -0400 Subject: [PATCH] fix cardano-testnet checks --- .../Cardano/Testnet/Test/Cli/Babbage/Transaction.hs | 3 ++- .../Cardano/Testnet/Test/Cli/KesPeriodInfo.hs | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/cardano-testnet/test/cardano-testnet-test/Cardano/Testnet/Test/Cli/Babbage/Transaction.hs b/cardano-testnet/test/cardano-testnet-test/Cardano/Testnet/Test/Cli/Babbage/Transaction.hs index 7120ba5996e..e6cc3b57c5f 100644 --- a/cardano-testnet/test/cardano-testnet-test/Cardano/Testnet/Test/Cli/Babbage/Transaction.hs +++ b/cardano-testnet/test/cardano-testnet-test/Cardano/Testnet/Test/Cli/Babbage/Transaction.hs @@ -93,7 +93,8 @@ hprop_transaction = H.integrationRetryWorkspace 0 "babbage-transaction" $ \tempA -- This is the current calculated fee. -- It's a sanity check to see if anything has -- changed regarding fee calculation. - 228 H.=== txFee + -- 8.10 changed fee from 228 -> 330 + 330 H.=== txFee void $ execCli' execConfig [ "babbage", "transaction", "sign" diff --git a/cardano-testnet/test/cardano-testnet-test/Cardano/Testnet/Test/Cli/KesPeriodInfo.hs b/cardano-testnet/test/cardano-testnet-test/Cardano/Testnet/Test/Cli/KesPeriodInfo.hs index 0174cc16100..d90570dcf9a 100644 --- a/cardano-testnet/test/cardano-testnet-test/Cardano/Testnet/Test/Cli/KesPeriodInfo.hs +++ b/cardano-testnet/test/cardano-testnet-test/Cardano/Testnet/Test/Cli/KesPeriodInfo.hs @@ -292,7 +292,7 @@ hprop_kes_period_info = H.integrationRetryWorkspace 2 "kes-period-info" $ \tempA H.failMessage callStack "cardano-cli query tip returned Nothing for EpochNo" Just currEpoch -> return currEpoch - let nodeHasMintedEpoch = currEpoch + 3 + let nodeHasMintedEpoch = currEpoch & succ & succ & succ currentEpoch <- waitUntilEpoch (Api.File configurationFile) (Api.File $ sprocketSystemName node1sprocket)