Skip to content

Commit

Permalink
fix cardano-testnet checks
Browse files Browse the repository at this point in the history
  • Loading branch information
disassembler committed Apr 5, 2024
1 parent 952ac9b commit dd96a29
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit dd96a29

Please sign in to comment.