From 50f6a2bf01a4c6fc85e177c492e1f455c3bc55f7 Mon Sep 17 00:00:00 2001 From: Sean D Gillespie Date: Thu, 11 Jan 2024 10:26:39 -0500 Subject: [PATCH 1/6] fix(ci): Update devx compiler names Devx now omits the minor version number: * ghc8107 -> ghc810 * ghc928 -> ghc92 * ghc963 -> ghc96 --- .github/workflows/haskell.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 005125374..88751ea55 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -19,7 +19,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest] - compiler-nix-name: [ghc8107, ghc928, ghc962] + compiler-nix-name: [ghc810, ghc92, ghc96] steps: - name: Checkout code @@ -48,7 +48,7 @@ jobs: - name: cabal build run: cabal build all -j --enable-tests - name: postgres init - working-directory: + working-directory: run: | # Set up environment PG_DIR="$(mktemp -d)" From 5064616a8acb3e073c6e729069a1f6412f8e7cde Mon Sep 17 00:00:00 2001 From: Sean D Gillespie Date: Mon, 8 Jan 2024 14:23:52 -0500 Subject: [PATCH 2/6] test(cardano-chain-gen): Add a more realistic hard-fork test Create a hard fork test from Babbage -> Conway by using a parameter update proposal, rather than hardcoding the epoch number --- .../src/Cardano/Mock/Forging/Tx/Babbage.hs | 34 +++++ .../src/Cardano/Mock/Forging/Tx/Conway.hs | 1 + .../src/Cardano/Mock/Forging/Tx/Generic.hs | 13 ++ .../test/Test/Cardano/Db/Mock/Unit/Conway.hs | 1 + .../Test/Cardano/Db/Mock/Unit/Conway/Other.hs | 120 +++++++++++++++++- .../test/testfiles/config/genesis.json | 15 ++- .../testfiles/fingerprint/conwayForkParam | 1 + 7 files changed, 179 insertions(+), 6 deletions(-) create mode 100644 cardano-chain-gen/test/testfiles/fingerprint/conwayForkParam diff --git a/cardano-chain-gen/src/Cardano/Mock/Forging/Tx/Babbage.hs b/cardano-chain-gen/src/Cardano/Mock/Forging/Tx/Babbage.hs index 09f5d0996..af8bf92ab 100644 --- a/cardano-chain-gen/src/Cardano/Mock/Forging/Tx/Babbage.hs +++ b/cardano-chain-gen/src/Cardano/Mock/Forging/Tx/Babbage.hs @@ -4,6 +4,7 @@ {-# LANGUAGE GADTs #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE ScopedTypeVariables #-} +{-# LANGUAGE TupleSections #-} {-# LANGUAGE TypeApplications #-} {-# LANGUAGE TypeOperators #-} {-# OPTIONS_GHC -Wno-orphans #-} @@ -44,6 +45,7 @@ module Cardano.Mock.Forging.Tx.Babbage ( mkWitnesses, mkUTxOBabbage, mkUTxOCollBabbage, + mkParamUpdateTx, mkFullTx, emptyTxBody, emptyTx, @@ -90,6 +92,7 @@ import Lens.Micro import Ouroboros.Consensus.Cardano.Block (LedgerState) import Ouroboros.Consensus.Shelley.Eras (StandardBabbage, StandardCrypto) import Ouroboros.Consensus.Shelley.Ledger (ShelleyBlock) +import Prelude hiding (map) type BabbageUTxOIndex = UTxOIndex StandardBabbage @@ -515,6 +518,37 @@ emptyTx = , auxiliaryData = maybeToStrictMaybe Nothing } +mkParamUpdateTx :: Either ForgingError (AlonzoTx StandardBabbage) +mkParamUpdateTx = Right (mkSimpleTx True txBody) + where + txBody = + BabbageTxBody + { btbInputs = mempty + , btbCollateral = mempty + , btbReferenceInputs = mempty + , btbOutputs = mempty + , btbCollateralReturn = SNothing + , btbTotalCollateral = SNothing + , btbCerts = mempty + , btbWithdrawals = Withdrawals mempty + , btbTxFee = Coin 0 + , btbValidityInterval = ValidityInterval SNothing SNothing + , btbUpdate = SJust $ Update update (EpochNo 1) + , btbReqSignerHashes = mempty + , btbMint = mempty + , btbScriptIntegrityHash = SNothing + , btbAuxDataHash = SNothing + , btbTxNetworkId = SJust Testnet + } + update = + ProposedPPUpdates $ + Map.fromList $ + map (,paramsUpdate) registeredShelleyGenesisKeys + paramsUpdate = + Core.emptyPParamsUpdate + & ppuProtocolVersionL + .~ SJust (ProtVer (natVersion @9) 0) + mkFullTx :: Int -> Integer -> diff --git a/cardano-chain-gen/src/Cardano/Mock/Forging/Tx/Conway.hs b/cardano-chain-gen/src/Cardano/Mock/Forging/Tx/Conway.hs index 5947b4c5c..ae9c9959a 100644 --- a/cardano-chain-gen/src/Cardano/Mock/Forging/Tx/Conway.hs +++ b/cardano-chain-gen/src/Cardano/Mock/Forging/Tx/Conway.hs @@ -32,6 +32,7 @@ module Cardano.Mock.Forging.Tx.Conway ( mkRegTxCert, mkUnRegTxCert, mkDelegTxCert, + Babbage.mkParamUpdateTx, mkFullTx, mkScriptMint, Babbage.mkScriptInp, diff --git a/cardano-chain-gen/src/Cardano/Mock/Forging/Tx/Generic.hs b/cardano-chain-gen/src/Cardano/Mock/Forging/Tx/Generic.hs index 23dd3bd13..50d3886da 100644 --- a/cardano-chain-gen/src/Cardano/Mock/Forging/Tx/Generic.hs +++ b/cardano-chain-gen/src/Cardano/Mock/Forging/Tx/Generic.hs @@ -22,6 +22,8 @@ module Cardano.Mock.Forging.Tx.Generic ( unregisteredAddresses, unregisteredStakeCredentials, unregisteredPools, + registeredByronGenesisKeys, + registeredShelleyGenesisKeys, consPoolParams, getPoolStakeCreds, ) where @@ -249,6 +251,17 @@ unregisteredGenesisKeys = , KeyHash "33323876542397465497834256329487563428975634827956348975" ] +registeredByronGenesisKeys :: [KeyHash 'Genesis StandardCrypto] +registeredByronGenesisKeys = + [ KeyHash "1a3e49767796fd99b057ad54db3310fd640806fcb0927399bbca7b43" + ] + +registeredShelleyGenesisKeys :: [KeyHash 'Genesis StandardCrypto] +registeredShelleyGenesisKeys = + [ KeyHash "30c3083efd794227fde2351a04500349d1b467556c30e35d6794a501" + , KeyHash "471cc34983f6a2fd7b4018e3147532185d69a448d6570d46019e58e6" + ] + createStakeCredentials :: Int -> [StakeCredential StandardCrypto] createStakeCredentials n = fmap (KeyHashObj . KeyHash . mkDummyHash (Proxy @(ADDRHASH StandardCrypto))) [1 .. n] diff --git a/cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit/Conway.hs b/cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit/Conway.hs index d3cb0d40c..b932ac7a8 100644 --- a/cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit/Conway.hs +++ b/cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit/Conway.hs @@ -202,6 +202,7 @@ unitTests iom knownMigrations = "Hard Fork" [ test "fork from Babbage to Conway fixed epoch" Other.forkFixedEpoch , test "fork from Babbage to Conway and rollback" Other.rollbackFork + , test "fork with protocol change proposal" Other.forkParam ] ] where diff --git a/cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit/Conway/Other.hs b/cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit/Conway/Other.hs index e56b7bc23..e12b8c427 100644 --- a/cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit/Conway/Other.hs +++ b/cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit/Conway/Other.hs @@ -1,5 +1,10 @@ {-# LANGUAGE DataKinds #-} +{-# LANGUAGE ExplicitNamespaces #-} +{-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE NumericUnderscores #-} +{-# LANGUAGE OverloadedStrings #-} +{-# LANGUAGE ScopedTypeVariables #-} +{-# LANGUAGE TypeApplications #-} module Test.Cardano.Db.Mock.Unit.Conway.Other ( -- * Different configs @@ -16,25 +21,47 @@ module Test.Cardano.Db.Mock.Unit.Conway.Other ( -- * Hard fork forkFixedEpoch, rollbackFork, + forkParam, ) where +import Cardano.Db ( + EntityField ( + EpochParamEpochNo, + EpochParamProtocolMajor, + ParamProposalEpochNo, + ParamProposalProtocolMajor + ), + EpochParam (), + ParamProposal (), + ) import Cardano.DbSync.Era.Shelley.Generic.Util (unKeyHashRaw) -import Cardano.Ledger.BaseTypes (EpochNo ()) +import Cardano.Ledger.BaseTypes (EpochNo (..)) import Cardano.Ledger.Conway.TxCert (ConwayTxCert (..)) import Cardano.Ledger.Core (PoolCert (..)) import Cardano.Ledger.Credential (StakeCredential ()) import Cardano.Ledger.Crypto (StandardCrypto ()) import Cardano.Ledger.Keys (KeyHash (), KeyRole (..)) import Cardano.Mock.ChainSync.Server (IOManager (), addBlock, rollback) -import Cardano.Mock.Forging.Interpreter (forgeNext) +import Cardano.Mock.Forging.Interpreter (Interpreter (), forgeNext, getCurrentEpoch) import qualified Cardano.Mock.Forging.Tx.Babbage as Babbage import qualified Cardano.Mock.Forging.Tx.Conway as Conway import Cardano.Mock.Forging.Tx.Generic (resolvePool) import Cardano.Mock.Forging.Types -import Cardano.Prelude +import Cardano.Prelude hiding (from) import Cardano.SMASH.Server.PoolDataLayer (PoolDataLayer (..), dbToServantPoolId) import Cardano.SMASH.Server.Types (DBFail (..)) import Data.List (last) +import Database.Esqueleto.Experimental ( + from, + selectOne, + table, + unValue, + val, + where_, + (==.), + (^.), + ) +import Database.Persist.Sql (SqlBackend ()) import Ouroboros.Consensus.Shelley.Eras (StandardConway ()) import Ouroboros.Network.Block (blockPoint) import Test.Cardano.Db.Mock.Config @@ -436,3 +463,90 @@ rollbackFork = where configDir = "config-conway-hf-epoch1" testLabel = "conwayRollbackFork" + +forkParam :: IOManager -> [(Text, Text)] -> Assertion +forkParam = + withFullConfig configDir testLabel $ \interpreter mockServer dbSync -> do + startDBSync dbSync + + -- Forge a block with stake credentials + void $ Api.registerAllStakeCreds interpreter mockServer + -- Protocol params aren't added to the DB until the following epoch + epoch0 <- Api.fillUntilNextEpoch interpreter mockServer + -- Wait for it to sync + assertBlockNoBackoff dbSync (1 + length epoch0) + -- Protocol major version should still match config + assertEqBackoff + dbSync + (queryCurrentMajVer interpreter) + (Just 7) + [] + "Unexpected protocol major version" + + -- Propose a parameter update + void $ + Api.withBabbageFindLeaderAndSubmitTx interpreter mockServer $ + const Babbage.mkParamUpdateTx + -- Wait for it to sync + assertBlockNoBackoff dbSync (2 + length epoch0) + -- Query protocol param proposals + assertEqBackoff + dbSync + (queryMajVerProposal interpreter) + (Just 9) + [] + "Unexpected protocol major version proposal" + + -- The fork will be applied on the first block of the next epoch + epoch1 <- Api.fillUntilNextEpoch interpreter mockServer + -- Wait for it to sync + assertBlockNoBackoff dbSync $ 2 + length (epoch0 <> epoch1) + -- Protocol major version should now be updated + assertEqBackoff + dbSync + (queryCurrentMajVer interpreter) + (Just 9) + [] + "Unexpected protocol major version" + + -- Add a simple Conway tx + void $ + Api.withConwayFindLeaderAndSubmitTx interpreter mockServer $ + Conway.mkPaymentTx (UTxOIndex 0) (UTxOIndex 1) 10_000 500 + -- Wait for it to sync + assertBlockNoBackoff dbSync $ 3 + length (epoch0 <> epoch1) + where + testLabel = "conwayForkParam" + configDir = babbageConfigDir + + queryCurrentMajVer :: + MonadIO m => + Interpreter -> + ReaderT SqlBackend m (Maybe Word16) + queryCurrentMajVer interpreter = do + -- Look up current epoch from ledger + EpochNo currentEpoch <- liftIO $ getCurrentEpoch interpreter + + -- Query epoch params from database + res <- selectOne $ do + param <- from $ table @EpochParam + where_ (param ^. EpochParamEpochNo ==. val currentEpoch) + pure (param ^. EpochParamProtocolMajor) + + pure $ unValue <$> res + + queryMajVerProposal :: + MonadIO m => + Interpreter -> + ReaderT SqlBackend m (Maybe Word16) + queryMajVerProposal interpreter = do + -- Look up current epoch from ledger + EpochNo currentEpoch <- liftIO $ getCurrentEpoch interpreter + + -- Query proposals from database + res <- selectOne $ do + prop <- from $ table @ParamProposal + where_ $ prop ^. ParamProposalEpochNo ==. val (Just currentEpoch) + pure (prop ^. ParamProposalProtocolMajor) + + pure $ join (unValue <$> res) diff --git a/cardano-chain-gen/test/testfiles/config/genesis.json b/cardano-chain-gen/test/testfiles/config/genesis.json index 063b048fd..0b6b0cc6a 100644 --- a/cardano-chain-gen/test/testfiles/config/genesis.json +++ b/cardano-chain-gen/test/testfiles/config/genesis.json @@ -2,7 +2,7 @@ "maxLovelaceSupply": 60000000, "securityParam": 10, "slotsPerKESPeriod": 129600, - "updateQuorum": 5, + "updateQuorum": 2, "activeSlotsCoeff": 0.2, "protocolParams": { "minUTxOValue": 0, @@ -43,7 +43,16 @@ }, "networkId": "Testnet", "maxKESEvolutions": 60, - "genDelegs": { }, + "genDelegs": { + "30c3083efd794227fde2351a04500349d1b467556c30e35d6794a501": { + "delegate": "3af50e522694318e8856d34021140817aa21d47ff62a4d0ddcba1924", + "vrf": "2846ed605f6629976ec92e9e65140c1cb3a95c563c996592c926a2ae7e5a461f" + }, + "471cc34983f6a2fd7b4018e3147532185d69a448d6570d46019e58e6": { + "delegate": "1683652d05e83e25eb648a9543db33cf8ff1f7a2af9129d3a901dd4a", + "vrf": "4df7c5a5b30469756bd09db60cbe9b0cf1b2447e0c41122d130768c179b7d166" + } + }, "slotLength": 1, "systemStart": "2021-11-18T20:22:02Z", "epochLength": 500, @@ -106,4 +115,4 @@ "95be61304693df94ba89ff989e6542f174bb10d5ff49e8e8b1292519": "9f1b441b9b781b3c3abb43b25679dc17dbaaf116dddca1ad09dc1de0" } } -} \ No newline at end of file +} diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayForkParam b/cardano-chain-gen/test/testfiles/fingerprint/conwayForkParam new file mode 100644 index 000000000..090fe128c --- /dev/null +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayForkParam @@ -0,0 +1 @@ +[2,7,10,12,19,24,26,27,35,37,39,61,70,74,75,84,99,101,103,112,120,125,136,137,138,141,146,151,166,180,188,205,207,215,216,226,234,235,246,253,261,272,275,279,284,285,287,299,307,311,314,315,318,321,341,345,353,355,361,362,366,367,372,377,379,389,391,393,396,401,403,410,427,435,455,460,465,470,484,486,487,488,497,499,506,510,511,512,516,519,520,523,530,532,537,540,550,558,559,571,579,581,583,600,604,605,607,610,613,621,630,631,651,658,665,669,678,679,687,692,693,696,698,699,712,725,728,742,758,765,774,775,778,787,789,792,794,796,801,804,808,815,816,818,821,828,837,841,842,851,853,863,866,873,880,883,885,886,896,901,903,904,909,911,914,915,918,920,927,931,932,938,949,956,966,976,981,983,988,994,996,999,1000,1002] \ No newline at end of file From 7498860115232c64205ad70afe964c052e5def7e Mon Sep 17 00:00:00 2001 From: Sean D Gillespie Date: Tue, 9 Jan 2024 16:51:24 -0500 Subject: [PATCH 3/6] test(cardano-chain-gen): Fix up imports --- .../Test/Cardano/Db/Mock/Unit/Conway/Other.hs | 45 +++++-------------- .../testfiles/fingerprint/conwayForkParam | 2 +- 2 files changed, 13 insertions(+), 34 deletions(-) diff --git a/cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit/Conway/Other.hs b/cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit/Conway/Other.hs index e12b8c427..3117702bd 100644 --- a/cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit/Conway/Other.hs +++ b/cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit/Conway/Other.hs @@ -24,16 +24,7 @@ module Test.Cardano.Db.Mock.Unit.Conway.Other ( forkParam, ) where -import Cardano.Db ( - EntityField ( - EpochParamEpochNo, - EpochParamProtocolMajor, - ParamProposalEpochNo, - ParamProposalProtocolMajor - ), - EpochParam (), - ParamProposal (), - ) +import qualified Cardano.Db as Db import Cardano.DbSync.Era.Shelley.Generic.Util (unKeyHashRaw) import Cardano.Ledger.BaseTypes (EpochNo (..)) import Cardano.Ledger.Conway.TxCert (ConwayTxCert (..)) @@ -51,17 +42,7 @@ import Cardano.Prelude hiding (from) import Cardano.SMASH.Server.PoolDataLayer (PoolDataLayer (..), dbToServantPoolId) import Cardano.SMASH.Server.Types (DBFail (..)) import Data.List (last) -import Database.Esqueleto.Experimental ( - from, - selectOne, - table, - unValue, - val, - where_, - (==.), - (^.), - ) -import Database.Persist.Sql (SqlBackend ()) +import Database.Esqueleto.Experimental import Ouroboros.Consensus.Shelley.Eras (StandardConway ()) import Ouroboros.Network.Block (blockPoint) import Test.Cardano.Db.Mock.Config @@ -469,12 +450,10 @@ forkParam = withFullConfig configDir testLabel $ \interpreter mockServer dbSync -> do startDBSync dbSync - -- Forge a block with stake credentials - void $ Api.registerAllStakeCreds interpreter mockServer -- Protocol params aren't added to the DB until the following epoch epoch0 <- Api.fillUntilNextEpoch interpreter mockServer -- Wait for it to sync - assertBlockNoBackoff dbSync (1 + length epoch0) + assertBlockNoBackoff dbSync (length epoch0) -- Protocol major version should still match config assertEqBackoff dbSync @@ -488,7 +467,7 @@ forkParam = Api.withBabbageFindLeaderAndSubmitTx interpreter mockServer $ const Babbage.mkParamUpdateTx -- Wait for it to sync - assertBlockNoBackoff dbSync (2 + length epoch0) + assertBlockNoBackoff dbSync (1 + length epoch0) -- Query protocol param proposals assertEqBackoff dbSync @@ -500,7 +479,7 @@ forkParam = -- The fork will be applied on the first block of the next epoch epoch1 <- Api.fillUntilNextEpoch interpreter mockServer -- Wait for it to sync - assertBlockNoBackoff dbSync $ 2 + length (epoch0 <> epoch1) + assertBlockNoBackoff dbSync $ 1 + length (epoch0 <> epoch1) -- Protocol major version should now be updated assertEqBackoff dbSync @@ -514,7 +493,7 @@ forkParam = Api.withConwayFindLeaderAndSubmitTx interpreter mockServer $ Conway.mkPaymentTx (UTxOIndex 0) (UTxOIndex 1) 10_000 500 -- Wait for it to sync - assertBlockNoBackoff dbSync $ 3 + length (epoch0 <> epoch1) + assertBlockNoBackoff dbSync $ 2 + length (epoch0 <> epoch1) where testLabel = "conwayForkParam" configDir = babbageConfigDir @@ -529,9 +508,9 @@ forkParam = -- Query epoch params from database res <- selectOne $ do - param <- from $ table @EpochParam - where_ (param ^. EpochParamEpochNo ==. val currentEpoch) - pure (param ^. EpochParamProtocolMajor) + param <- from $ table @Db.EpochParam + where_ (param ^. Db.EpochParamEpochNo ==. val currentEpoch) + pure (param ^. Db.EpochParamProtocolMajor) pure $ unValue <$> res @@ -545,8 +524,8 @@ forkParam = -- Query proposals from database res <- selectOne $ do - prop <- from $ table @ParamProposal - where_ $ prop ^. ParamProposalEpochNo ==. val (Just currentEpoch) - pure (prop ^. ParamProposalProtocolMajor) + prop <- from $ table @Db.ParamProposal + where_ $ prop ^. Db.ParamProposalEpochNo ==. val (Just currentEpoch) + pure (prop ^. Db.ParamProposalProtocolMajor) pure $ join (unValue <$> res) diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayForkParam b/cardano-chain-gen/test/testfiles/fingerprint/conwayForkParam index 090fe128c..53a7dd1a5 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayForkParam +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayForkParam @@ -1 +1 @@ -[2,7,10,12,19,24,26,27,35,37,39,61,70,74,75,84,99,101,103,112,120,125,136,137,138,141,146,151,166,180,188,205,207,215,216,226,234,235,246,253,261,272,275,279,284,285,287,299,307,311,314,315,318,321,341,345,353,355,361,362,366,367,372,377,379,389,391,393,396,401,403,410,427,435,455,460,465,470,484,486,487,488,497,499,506,510,511,512,516,519,520,523,530,532,537,540,550,558,559,571,579,581,583,600,604,605,607,610,613,621,630,631,651,658,665,669,678,679,687,692,693,696,698,699,712,725,728,742,758,765,774,775,778,787,789,792,794,796,801,804,808,815,816,818,821,828,837,841,842,851,853,863,866,873,880,883,885,886,896,901,903,904,909,911,914,915,918,920,927,931,932,938,949,956,966,976,981,983,988,994,996,999,1000,1002] \ No newline at end of file +[2,7,10,12,19,24,26,27,35,37,39,61,70,74,75,84,99,101,103,112,120,125,136,137,138,141,146,151,166,180,188,205,207,215,216,226,234,235,246,253,261,272,275,279,284,285,287,299,307,311,314,315,318,321,341,345,353,355,361,362,366,367,372,377,379,389,391,393,396,401,403,410,427,435,455,460,465,470,484,486,487,488,497,499,506,510,511,512,516,519,520,523,530,532,537,540,550,558,559,571,579,581,583,600,604,605,607,610,613,621,630,631,651,658,665,669,678,679,687,692,693,696,698,699,712,725,728,742,758,765,774,775,778,787,789,792,794,796,801,804,808,815,816,818,821,828,837,841,842,851,853,863,866,873,880,883,885,886,896,901,903,904,909,911,914,915,918,920,927,931,932,938,949,956,966,976,981,983,988,994,996,999,1018,1019] \ No newline at end of file From 0bca9778d7066838453e62c2b420f849e7cf9206 Mon Sep 17 00:00:00 2001 From: Sean D Gillespie Date: Wed, 10 Jan 2024 10:40:50 -0500 Subject: [PATCH 4/6] test(cardano-chain-gen): Regenerate babbage fingerprints --- cardano-chain-gen/test/testfiles/config/genesis.json | 2 +- .../test/testfiles/fingerprint/CLAMigrateAndPruneRestart | 1 - .../test/testfiles/fingerprint/CLANoPruneSameBlock | 2 +- cardano-chain-gen/test/testfiles/fingerprint/CLAPrune | 2 +- .../test/testfiles/fingerprint/CLAPruneAndRollBack | 2 +- .../test/testfiles/fingerprint/CLAPruneCorrectAmount | 2 +- .../test/testfiles/fingerprint/CLAPruneOnFullRollback | 2 +- cardano-chain-gen/test/testfiles/fingerprint/CLAPruneSameBlock | 2 +- .../test/testfiles/fingerprint/CLAPruneSimpleRollback | 2 +- cardano-chain-gen/test/testfiles/fingerprint/CLASimple | 2 +- .../test/testfiles/fingerprint/CLAcheckEpochDisabledArg | 2 +- cardano-chain-gen/test/testfiles/fingerprint/addSimple | 2 +- cardano-chain-gen/test/testfiles/fingerprint/addSimpleChain | 2 +- cardano-chain-gen/test/testfiles/fingerprint/addSimpleTx | 2 +- cardano-chain-gen/test/testfiles/fingerprint/bigChain | 2 +- cardano-chain-gen/test/testfiles/fingerprint/consumeSameBlock | 2 +- cardano-chain-gen/test/testfiles/fingerprint/delegations2000 | 2 +- cardano-chain-gen/test/testfiles/fingerprint/delegations2001 | 2 +- cardano-chain-gen/test/testfiles/fingerprint/delegations8000 | 2 +- cardano-chain-gen/test/testfiles/fingerprint/delegationsMany | 2 +- .../test/testfiles/fingerprint/delegationsManyNotDense | 2 +- .../test/testfiles/fingerprint/deregistrationScriptTx | 2 +- .../test/testfiles/fingerprint/deregistrationsScriptTx | 2 +- .../test/testfiles/fingerprint/deregistrationsScriptTx' | 2 +- .../test/testfiles/fingerprint/deregistrationsScriptTx'' | 2 +- .../test/testfiles/fingerprint/deregistrationsScriptTxs | 2 +- cardano-chain-gen/test/testfiles/fingerprint/doubleRollback | 2 +- cardano-chain-gen/test/testfiles/fingerprint/failedScript | 2 +- cardano-chain-gen/test/testfiles/fingerprint/failedScriptFees | 2 +- .../test/testfiles/fingerprint/failedScriptSameBlock | 2 +- cardano-chain-gen/test/testfiles/fingerprint/forgeBlocks | 2 +- cardano-chain-gen/test/testfiles/fingerprint/inlineDatumCBOR | 2 +- cardano-chain-gen/test/testfiles/fingerprint/lazyRollback | 2 +- .../test/testfiles/fingerprint/lazyRollbackRestart | 2 +- cardano-chain-gen/test/testfiles/fingerprint/mintMultiAsset | 2 +- cardano-chain-gen/test/testfiles/fingerprint/mintMultiAssets | 2 +- cardano-chain-gen/test/testfiles/fingerprint/mirReward | 2 +- cardano-chain-gen/test/testfiles/fingerprint/mirRewardDereg | 2 +- cardano-chain-gen/test/testfiles/fingerprint/multipleScripts | 2 +- .../test/testfiles/fingerprint/multipleScriptsFailed | 2 +- .../test/testfiles/fingerprint/multipleScriptsFailedSameBlock | 2 +- .../test/testfiles/fingerprint/multipleScriptsRollback | 2 +- .../test/testfiles/fingerprint/multipleScriptsSameBlock | 2 +- cardano-chain-gen/test/testfiles/fingerprint/nodeRestart | 2 +- .../test/testfiles/fingerprint/nodeRestartBoundary | 2 +- .../test/testfiles/fingerprint/nonexistantPoolQuery | 2 +- cardano-chain-gen/test/testfiles/fingerprint/poolDeReg | 2 +- cardano-chain-gen/test/testfiles/fingerprint/poolDeRegMany | 2 +- cardano-chain-gen/test/testfiles/fingerprint/poolDelist | 2 +- cardano-chain-gen/test/testfiles/fingerprint/poolReg | 2 +- .../test/testfiles/fingerprint/referenceDelegation | 2 +- .../test/testfiles/fingerprint/referenceInputUnspend | 2 +- .../test/testfiles/fingerprint/referenceMintingScript | 2 +- .../test/testfiles/fingerprint/registrationScriptTx | 2 +- cardano-chain-gen/test/testfiles/fingerprint/registrationTx | 2 +- .../test/testfiles/fingerprint/registrationsSameBlock | 2 +- .../test/testfiles/fingerprint/registrationsSameTx | 2 +- cardano-chain-gen/test/testfiles/fingerprint/restartAndRollback | 2 +- cardano-chain-gen/test/testfiles/fingerprint/restartDBSync | 2 +- .../test/testfiles/fingerprint/rewardsDeregistration | 2 +- .../test/testfiles/fingerprint/rewardsReregistration | 2 +- cardano-chain-gen/test/testfiles/fingerprint/rollbackBoundary | 2 +- .../test/testfiles/fingerprint/rollbackChangeTxOrder | 2 +- cardano-chain-gen/test/testfiles/fingerprint/rollbackFullTx | 2 +- cardano-chain-gen/test/testfiles/fingerprint/simpleRewards | 2 +- cardano-chain-gen/test/testfiles/fingerprint/simpleRollback | 2 +- cardano-chain-gen/test/testfiles/fingerprint/simpleScript | 2 +- .../test/testfiles/fingerprint/singleMIRCertMultiOut | 2 +- .../test/testfiles/fingerprint/spendCollateralOutput | 2 +- .../test/testfiles/fingerprint/spendCollateralOutputRollback | 2 +- .../test/testfiles/fingerprint/spendCollateralOutputSameBlock | 2 +- cardano-chain-gen/test/testfiles/fingerprint/spendRefScript | 2 +- .../test/testfiles/fingerprint/spendRefScriptSameBlock | 2 +- cardano-chain-gen/test/testfiles/fingerprint/stakeAddressPtr | 2 +- .../test/testfiles/fingerprint/stakeAddressPtrDereg | 2 +- .../test/testfiles/fingerprint/stakeAddressPtrUseBefore | 2 +- .../test/testfiles/fingerprint/stakeAddressRollback | 2 +- cardano-chain-gen/test/testfiles/fingerprint/stakeDistGenesis | 2 +- .../test/testfiles/fingerprint/supplyScriptsTwoWays | 2 +- .../test/testfiles/fingerprint/supplyScriptsTwoWaysSameBlock | 2 +- cardano-chain-gen/test/testfiles/fingerprint/swapMultiAssets | 2 +- cardano-chain-gen/test/testfiles/fingerprint/unlockDatumOutput | 2 +- .../test/testfiles/fingerprint/unlockDatumOutputSameBlock | 2 +- .../test/testfiles/fingerprint/unlockScriptSameBlock | 2 +- 84 files changed, 83 insertions(+), 84 deletions(-) delete mode 100644 cardano-chain-gen/test/testfiles/fingerprint/CLAMigrateAndPruneRestart diff --git a/cardano-chain-gen/test/testfiles/config/genesis.json b/cardano-chain-gen/test/testfiles/config/genesis.json index 0b6b0cc6a..e25e401f6 100644 --- a/cardano-chain-gen/test/testfiles/config/genesis.json +++ b/cardano-chain-gen/test/testfiles/config/genesis.json @@ -115,4 +115,4 @@ "95be61304693df94ba89ff989e6542f174bb10d5ff49e8e8b1292519": "9f1b441b9b781b3c3abb43b25679dc17dbaaf116dddca1ad09dc1de0" } } -} +} \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/CLAMigrateAndPruneRestart b/cardano-chain-gen/test/testfiles/fingerprint/CLAMigrateAndPruneRestart deleted file mode 100644 index 4fd51d9b7..000000000 --- a/cardano-chain-gen/test/testfiles/fingerprint/CLAMigrateAndPruneRestart +++ /dev/null @@ -1 +0,0 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/CLANoPruneSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/CLANoPruneSameBlock index 83f91252b..3961e46fb 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/CLANoPruneSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/CLANoPruneSameBlock @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,453] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,518] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/CLAPrune b/cardano-chain-gen/test/testfiles/fingerprint/CLAPrune index d2f180ebe..d9b4e9721 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/CLAPrune +++ b/cardano-chain-gen/test/testfiles/fingerprint/CLAPrune @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/CLAPruneAndRollBack b/cardano-chain-gen/test/testfiles/fingerprint/CLAPruneAndRollBack index 16dd8eebd..174c67cab 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/CLAPruneAndRollBack +++ b/cardano-chain-gen/test/testfiles/fingerprint/CLAPruneAndRollBack @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1013,1021,1024,1031,1036,1041] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/CLAPruneCorrectAmount b/cardano-chain-gen/test/testfiles/fingerprint/CLAPruneCorrectAmount index dbaf00bf5..f8d9c7913 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/CLAPruneCorrectAmount +++ b/cardano-chain-gen/test/testfiles/fingerprint/CLAPruneCorrectAmount @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967,971,980,981,983,993,997,1008] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1001,1003,1004,1009,1019,1026,1028,1031,1040,1043,1047,1051,1053] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/CLAPruneOnFullRollback b/cardano-chain-gen/test/testfiles/fingerprint/CLAPruneOnFullRollback index 98249ed2f..b1ccb125b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/CLAPruneOnFullRollback +++ b/cardano-chain-gen/test/testfiles/fingerprint/CLAPruneOnFullRollback @@ -1 +1 @@ -[1,3,3] \ No newline at end of file +[5,11,11] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/CLAPruneSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/CLAPruneSameBlock index ff0e20438..d4c70e765 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/CLAPruneSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/CLAPruneSameBlock @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,339] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,418] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/CLAPruneSimpleRollback b/cardano-chain-gen/test/testfiles/fingerprint/CLAPruneSimpleRollback index 023f334d0..93fe0e31a 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/CLAPruneSimpleRollback +++ b/cardano-chain-gen/test/testfiles/fingerprint/CLAPruneSimpleRollback @@ -1 +1 @@ -[1,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487] \ No newline at end of file +[28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,510,513,514,519,521,522,523,529,533,536,539,545,549] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/CLASimple b/cardano-chain-gen/test/testfiles/fingerprint/CLASimple index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/CLASimple +++ b/cardano-chain-gen/test/testfiles/fingerprint/CLASimple @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/CLAcheckEpochDisabledArg b/cardano-chain-gen/test/testfiles/fingerprint/CLAcheckEpochDisabledArg index 0dcb68766..e559dff63 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/CLAcheckEpochDisabledArg +++ b/cardano-chain-gen/test/testfiles/fingerprint/CLAcheckEpochDisabledArg @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/addSimple b/cardano-chain-gen/test/testfiles/fingerprint/addSimple index bace2a0be..65f2eb4db 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/addSimple +++ b/cardano-chain-gen/test/testfiles/fingerprint/addSimple @@ -1 +1 @@ -[1] \ No newline at end of file +[28] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/addSimpleChain b/cardano-chain-gen/test/testfiles/fingerprint/addSimpleChain index cc3900548..ee475e707 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/addSimpleChain +++ b/cardano-chain-gen/test/testfiles/fingerprint/addSimpleChain @@ -1 +1 @@ -[1,8,9] \ No newline at end of file +[28,33,34] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/addSimpleTx b/cardano-chain-gen/test/testfiles/fingerprint/addSimpleTx index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/addSimpleTx +++ b/cardano-chain-gen/test/testfiles/fingerprint/addSimpleTx @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/bigChain b/cardano-chain-gen/test/testfiles/fingerprint/bigChain index e61316d41..47e39818b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/bigChain +++ b/cardano-chain-gen/test/testfiles/fingerprint/bigChain @@ -1 +1 @@ -[1,3,11,31,42,44,61,62,76,93,95,102,104,123,149,170,171,190,201,209,227,260,265,272,284,294,296,305,306,318,331,345,347,348,350,375,382,401,411,424,428,471,487,489,492,512,523,526,528,529,537,551,568,573,604,607,615,636,649,672,681,682,698,703,706,708,714,737,768,781,787,801,848,852,857,864,876,899,920,949,957,980,993,999,1008,1010,1025,1043,1045,1058,1060,1080,1090,1091,1106,1111,1114,1131,1133,1135,1136,1140,1166,1195,1246,1253,1292,1303,1308,1338,1379,1427,1435,1441,1456,1473,1502,1511,1522,1528,1548,1571,1585,1593,1601,1605,1610,1628,1662,1669,1683,1725,1785,1849,1861,1872,1877,1884,1920,1925,1928,1947,1957,1973,1986,2013,2020,2078,2099,2106,2117,2123,2161,2214,2242,2249,2306,2350,2391,2414,2426,2436,2446,2467,2500,2506,2518,2540,2547,2637,2644,2660,2677,2686,2717,2729,2773,2778,2802,2861,2865,2873,2882,2918,2929,2933,2961,2996,3019,3059,3061,3075,3100,3105,3212,3219,3305,3356,3358,3377,3387,3396,3398,3401,3421,3424] \ No newline at end of file +[28,42,43,52,62,82,92,106,109,133,161,162,171,195,196,197,206,208,216,222,272,275,282,347,382,392,393,398,414,424,446,448,465,478,485,499,500,506,508,509,513,514,515,518,539,548,566,577,584,589,602,613,626,644,661,664,668,677,725,729,736,746,749,757,773,774,784,810,813,819,828,849,852,866,876,880,886,895,900,924,930,952,964,971,981,987,989,1013,1016,1027,1058,1064,1082,1098,1110,1121,1159,1205,1221,1226,1235,1246,1264,1266,1352,1355,1366,1380,1395,1422,1423,1502,1509,1515,1523,1574,1575,1576,1611,1656,1665,1697,1698,1739,1758,1765,1783,1784,1798,1799,1805,1820,1823,1824,1830,1833,1853,1884,1955,1999,2045,2080,2109,2190,2205,2209,2234,2256,2285,2294,2301,2378,2381,2382,2389,2390,2399,2427,2466,2495,2540,2547,2549,2573,2581,2629,2630,2673,2674,2681,2688,2729,2736,2759,2762,2793,2809,2835,2840,2851,2887,2899,2901,2934,2961,2968,3008,3040,3056,3059,3065,3067,3089,3119,3128,3129,3137,3154,3165,3194,3212,3216,3220,3222,3234,3236] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/consumeSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/consumeSameBlock index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/consumeSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/consumeSameBlock @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/delegations2000 b/cardano-chain-gen/test/testfiles/fingerprint/delegations2000 index 32ee1e011..6f88174d4 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/delegations2000 +++ b/cardano-chain-gen/test/testfiles/fingerprint/delegations2000 @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967,971,980,981,983,993,997,1000,1020] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/delegations2001 b/cardano-chain-gen/test/testfiles/fingerprint/delegations2001 index e083e5fde..6f88174d4 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/delegations2001 +++ b/cardano-chain-gen/test/testfiles/fingerprint/delegations2001 @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967,971,980,981,983,993,997,1002,1005] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/delegations8000 b/cardano-chain-gen/test/testfiles/fingerprint/delegations8000 index ec264c81b..d9886161d 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/delegations8000 +++ b/cardano-chain-gen/test/testfiles/fingerprint/delegations8000 @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967,971,980,981,983,993,997,1001,1007,1011,1012,1013,1017,1038,1040,1049,1058,1064,1075,1077,1078,1079] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1001,1004,1032,1036,1037,1042,1061,1062,1067,1072,1078,1082,1086,1089,1092] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/delegationsMany b/cardano-chain-gen/test/testfiles/fingerprint/delegationsMany index 415bbb370..2b79b64c5 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/delegationsMany +++ b/cardano-chain-gen/test/testfiles/fingerprint/delegationsMany @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967,971,980,981,983,993,997,1012,1041,1045,1051,1058,1059,1069,1074,1076,1087,1090,1093,1094,1095,1100,1111,1115,1121,1128,1136,1141,1143,1156,1173,1176,1179,1186,1189,1190,1193,1195,1197,1200,1202,1204,1210,1212,1213,1220,1223,1226,1227,1230,1231,1240,1249,1250,1251,1262,1278,1279,1294,1297,1302,1304,1306,1309,1310,1314,1316,1317,1329,1330,1331,1341,1342,1345,1348,1351,1353,1362,1371,1376,1379,1385,1395,1402,1403,1409,1413,1421,1424,1425,1428,1430,1433,1436,1438,1441,1444,1450,1467,1468,1469,1470,1471,1475,1476,1480,1486,1488,1497,1505,1509,1510,1522,1527,1531,1532,1535,1540,1544,1561,1568,1581,1586,1589,1594,1595,1615,1616,1619,1623,1629,1649,1655,1669,1671,1672,1680,1687,1688,1694,1707,1713,1721,1733,1735,1738,1751,1761,1762,1764,1778,1798,1809,1812,1817,1820,1825,1834,1836,1837,1848,1854,1868,1871,1885,1886,1891,1894,1895,1900,1902,1908,1922,1923,1925,1933,1936,1939,1947,1951,1954,1957,1960,1970,1973,1976,1977,1980,1982,1989,1990,1991,1992,1997,2000,2002,2006,2010,2011,2013,2017,2019,2028,2032,2033,2051,2059,2064,2065,2077,2078,2081,2085,2092,2103,2104,2106,2107,2109,2115,2122,2125,2126,2135,2138,2165,2167,2169,2174,2175,2176,2185,2186,2196,2197,2198,2200,2209,2213,2216,2228,2229,2237,2242,2253,2262,2264,2265,2281,2284,2290,2293,2300,2301,2303,2304,2308,2309,2318,2319,2321,2323,2324,2328,2332,2336,2344,2346,2347,2372,2373,2375,2377,2387,2389,2390,2395,2400,2404,2410,2421,2422,2423,2431,2439,2443,2447,2450,2452,2460,2461,2463,2464,2465,2472,2473,2482,2483,2486,2493,2494,2507,2512,2518,2523,2532,2538,2540,2543,2545,2548,2561,2564,2570,2571,2592,2597,2603,2610,2631,2633,2649,2653,2660,2662,2667,2670,2673,2678,2684,2685,2688,2691,2692,2696,2699,2705,2706,2724,2730,2735,2740,2748,2752,2753,2763,2766,2781,2791,2793,2795,2799,2803,2806,2807,2823,2831,2832,2839,2843,2844,2847,2848,2851,2865,2866,2873,2875,2877,2889,2894,2909,2912,2954,2955,2984,2985,2990,2992,2994,3002,3003,3005,3006,3012,3018,3022,3023,3025,3032,3036,3048,3056] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1023,1032,1035,1036,1040,1043,1058,1066,1071,1080,1088,1090,1107,1111,1117,1124,1130,1133,1137,1141,1156,1161,1162,1164,1168,1172,1173,1180,1187,1192,1194,1205,1210,1224,1235,1238,1239,1241,1245,1249,1252,1260,1264,1273,1279,1284,1291,1293,1294,1299,1300,1303,1325,1330,1342,1359,1361,1362,1368,1369,1372,1379,1383,1389,1399,1409,1412,1423,1436,1437,1439,1441,1447,1465,1469,1475,1478,1482,1483,1500,1506,1508,1510,1513,1518,1524,1525,1537,1544,1550,1553,1555,1556,1559,1561,1566,1575,1576,1579,1590,1591,1594,1597,1601,1611,1613,1615,1620,1623,1624,1629,1632,1634,1637,1638,1645,1663,1672,1676,1688,1689,1691,1699,1700,1704,1706,1710,1714,1731,1735,1737,1746,1748,1750,1752,1762,1765,1769,1775,1776,1781,1793,1798,1801,1802,1816,1817,1823,1824,1825,1837,1851,1871,1873,1881,1883,1893,1897,1898,1900,1903,1908,1911,1913,1914,1920,1922,1924,1925,1930,1932,1938,1945,1951,1952,1953,1957,1959,1961,1965,1969,1970,1982,1985,1991,2001,2002,2003,2004,2006,2007,2010,2012,2019,2020,2024,2026,2031,2041,2042,2046,2053,2055,2060,2062,2067,2068,2069,2070,2078,2082,2085,2090,2091,2097,2098,2100,2103,2127,2128,2142,2148,2149,2153,2163,2166,2177,2180,2189,2190,2196,2199,2200,2203,2204,2207,2211,2218,2220,2231,2233,2238,2239,2243,2250,2254,2256,2257,2263,2270,2281,2286,2287,2288,2289,2290,2296,2300,2303,2305,2307,2320,2322,2328,2348,2349,2357,2363,2365,2367,2370,2372,2373,2375,2379,2390,2396,2406,2409,2416,2418,2421,2423,2429,2435,2440,2441,2442,2444,2446,2447,2448,2449,2461,2463,2466,2468,2472,2476,2480,2492,2493,2494,2498,2504,2505,2514,2516,2523,2527,2529,2531,2536,2537,2543,2546,2552,2555,2561,2564,2568,2573,2580,2582,2589,2611,2619,2625,2634,2641,2647,2650,2660,2665,2668,2681,2691,2694,2699,2704,2705,2714,2715,2720,2731,2733,2734,2738,2739,2742,2744,2756,2779,2790,2798,2800,2801,2805,2819,2821,2825,2841,2842,2874,2883,2885,2888,2896,2897,2907,2922,2923,2925,2926,2927,2930,2943,2952,2954,2955,2956,2967,2969,2978,2981,2983,2984,2986,2992,2998,2999,3005,3007,3012,3018,3026,3028,3036,3046,3055,3056,3057,3085,3091] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/delegationsManyNotDense b/cardano-chain-gen/test/testfiles/fingerprint/delegationsManyNotDense index fb9967acf..c2f070f14 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/delegationsManyNotDense +++ b/cardano-chain-gen/test/testfiles/fingerprint/delegationsManyNotDense @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967,971,980,981,983,993,997,1012,1041,1045,1051,1058,1059,1069,1074,1076,1087,1090,1093,1094,1095,1100,1111,1115,1121,1128,1136,1141,1143,1156,1173,1176,1179,1186,1189,1190,1193,1195,1197,1200,1202,1204,1210,1212,1213,1220,1223,1226,1227,1230,1231,1240,1249,1250,1251,1262,1278,1279,1294,1297,1302,1304,1306,1309,1310,1314,1316,1317,1329,1330,1331,1341,1342,1345,1348,1351,1353,1362,1371,1376,1379,1385,1395,1402,1403,1409,1413,1421,1424,1425,1428,1430,1433,1436,1438,1441,1444,1450,1467,1468,1469,1470,1471,1475,1476,1480,1486,1488,1497,1505,1509,1510,1522,1527,1531,1532,1535,1540,1544,1561,1568,1581,1586,1589,1594,1595,1615,1616,1619,1623,1629,1649,1655,1669,1671,1672,1680,1687,1688,1694,1707,1713,1721,1733,1735,1738,1751,1761,1762,1764,1778,1798,1809,1812,1817,1820,1825,1834,1836,1837,1848,1854,1868,1871,1885,1886,1891,1894,1895,1900,1902,1908,1922,1923,1925,1933,1936,1939,1947,1951,1954,1957,1960,1970,1973,1976,1977,1980,1982,1989,1990,1991,1992,1997,2000,2002,2006,2010,2011,2013,2017,2019,2028,2032,2033,2051,2059,2064,2065,2077,2078,2081,2085,2092,2103,2104,2106,2107,2109,2115,2122,2125,2126,2135,2138,2165,2167,2169,2174,2175,2176,2185,2186,2196,2197,2198,2200,2209,2213,2216,2228,2229,2237,2242,2253,2262,2264,2265,2281,2284,2290,2293,2300,2301,2303,2304,2308,2309,2318,2319,2321,2323,2324,2328,2332,2336,2344,2346,2347,2372,2373,2375,2377,2387,2389,2390,2395,2400,2404,2410,2421,2422,2423,2431,2439,2443,2447,2450,2452,2460,2461,2463,2464,2465,2472,2473,2482,2483,2486,2493,2494,2507,2512,2518,2523,2532,2538,2540,2543,2545,2548,2561,2564,2570,2571,2592,2597,2603,2610,2631,2633,2649,2653,2660,2662,2667,2670,2673,2678,2684,2685,2688,2691,2692,2696,2699,2705,2706,2724,2730,2735,2740,2748,2752,2753,2763,2766,2781,2791,2793,2795,2799,2803,2806,2807,2823,2831,2832,2839,2843,2844,2847,2848,2851,2865,2866,2873,2875,2877,2889,2894,2909,2912,2954,2955,2984,2985,2990,2992,2994,3002,3003,3005,3006,3012,3018,3022,3023,3025,3032,3036,3056,3077,3104,3122,3140,3160,3178,3198,3221,3247,3273,3295,3311,3331,3347,3363,3380,3397,3420,3459,3477,3497,3521,3537,3567,3588,3607,3623,3649,3668,3701,3719,3735,3758,3778,3796,3812,3834,3850,3877] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1023,1032,1035,1036,1040,1043,1058,1066,1071,1080,1088,1090,1107,1111,1117,1124,1130,1133,1137,1141,1156,1161,1162,1164,1168,1172,1173,1180,1187,1192,1194,1205,1210,1224,1235,1238,1239,1241,1245,1249,1252,1260,1264,1273,1279,1284,1291,1293,1294,1299,1300,1303,1325,1330,1342,1359,1361,1362,1368,1369,1372,1379,1383,1389,1399,1409,1412,1423,1436,1437,1439,1441,1447,1465,1469,1475,1478,1482,1483,1500,1506,1508,1510,1513,1518,1524,1525,1537,1544,1550,1553,1555,1556,1559,1561,1566,1575,1576,1579,1590,1591,1594,1597,1601,1611,1613,1615,1620,1623,1624,1629,1632,1634,1637,1638,1645,1663,1672,1676,1688,1689,1691,1699,1700,1704,1706,1710,1714,1731,1735,1737,1746,1748,1750,1752,1762,1765,1769,1775,1776,1781,1793,1798,1801,1802,1816,1817,1823,1824,1825,1837,1851,1871,1873,1881,1883,1893,1897,1898,1900,1903,1908,1911,1913,1914,1920,1922,1924,1925,1930,1932,1938,1945,1951,1952,1953,1957,1959,1961,1965,1969,1970,1982,1985,1991,2001,2002,2003,2004,2006,2007,2010,2012,2019,2020,2024,2026,2031,2041,2042,2046,2053,2055,2060,2062,2067,2068,2069,2070,2078,2082,2085,2090,2091,2097,2098,2100,2103,2127,2128,2142,2148,2149,2153,2163,2166,2177,2180,2189,2190,2196,2199,2200,2203,2204,2207,2211,2218,2220,2231,2233,2238,2239,2243,2250,2254,2256,2257,2263,2270,2281,2286,2287,2288,2289,2290,2296,2300,2303,2305,2307,2320,2322,2328,2348,2349,2357,2363,2365,2367,2370,2372,2373,2375,2379,2390,2396,2406,2409,2416,2418,2421,2423,2429,2435,2440,2441,2442,2444,2446,2447,2448,2449,2461,2463,2466,2468,2472,2476,2480,2492,2493,2494,2498,2504,2505,2514,2516,2523,2527,2529,2531,2536,2537,2543,2546,2552,2555,2561,2564,2568,2573,2580,2582,2589,2611,2619,2625,2634,2641,2647,2650,2660,2665,2668,2681,2691,2694,2699,2704,2705,2714,2715,2720,2731,2733,2734,2738,2739,2742,2744,2756,2779,2790,2798,2800,2801,2805,2819,2821,2825,2841,2842,2874,2883,2885,2888,2896,2897,2907,2922,2923,2925,2926,2927,2930,2943,2952,2954,2955,2956,2967,2969,2978,2981,2983,2984,2986,2992,2998,2999,3005,3007,3012,3018,3026,3028,3036,3046,3055,3056,3057,3085,3101,3137,3156,3181,3203,3222,3242,3258,3274,3290,3306,3327,3346,3367,3383,3412,3430,3458,3475,3491,3513,3546,3567,3585,3601,3619,3636,3656,3672,3691,3707,3729,3746,3762,3778,3794,3810,3826,3843] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/deregistrationScriptTx b/cardano-chain-gen/test/testfiles/fingerprint/deregistrationScriptTx index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/deregistrationScriptTx +++ b/cardano-chain-gen/test/testfiles/fingerprint/deregistrationScriptTx @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/deregistrationsScriptTx b/cardano-chain-gen/test/testfiles/fingerprint/deregistrationsScriptTx index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/deregistrationsScriptTx +++ b/cardano-chain-gen/test/testfiles/fingerprint/deregistrationsScriptTx @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/deregistrationsScriptTx' b/cardano-chain-gen/test/testfiles/fingerprint/deregistrationsScriptTx' index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/deregistrationsScriptTx' +++ b/cardano-chain-gen/test/testfiles/fingerprint/deregistrationsScriptTx' @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/deregistrationsScriptTx'' b/cardano-chain-gen/test/testfiles/fingerprint/deregistrationsScriptTx'' index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/deregistrationsScriptTx'' +++ b/cardano-chain-gen/test/testfiles/fingerprint/deregistrationsScriptTx'' @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/deregistrationsScriptTxs b/cardano-chain-gen/test/testfiles/fingerprint/deregistrationsScriptTxs index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/deregistrationsScriptTxs +++ b/cardano-chain-gen/test/testfiles/fingerprint/deregistrationsScriptTxs @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/doubleRollback b/cardano-chain-gen/test/testfiles/fingerprint/doubleRollback index e5c08595e..d8c34f6a2 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/doubleRollback +++ b/cardano-chain-gen/test/testfiles/fingerprint/doubleRollback @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967,971,980,981,983,993,997,1007,1015,1016,1017,1018,1023,1027,1029,1036,1037,1042,1044,1052,1059,1060,1062,1070,1072,1081,1082,1083,1086,1089,1104,1115,1117,1144,1148,1155,1166,1168,1173,1177,1179,1182,1184,1185,1194,1209,1211,1224,1229,1233,1237,1238,1242,1244,1247,1248,1249,1257,1269,1286,1287,1290,1292,1298,1304,1310,1315,1319,1322,1323,1327,1329,1334,1336,1341,1355,1358,1361,1367,1372,1373,1374,1377,1383,1389,1391,1392,1400,1403,1408,1411,1413,1423,1424,1429,1431,1433,1437,1450,1458,1462,1469,1477,1480,1484,1494,1497,1498,1510,1514,1532,1535,1536,1538,1542,1551,1553,1557,1559,1560,1569,1570,1576,1578,1582,1583,1588,1589,1598,1604,1617,1619,1629,1633,1634,1642,1644,1646,1648,1651,1652,1653,1656,1670,1671,1672,1674,1677,1229,1233,1237,1238,1242,1244,1247,1248,1249,1257,1269,1286,1287,1290,1292,1298,1304,1310,1315,1319,1322,1323,1327,1329,1334,1336,1341,1355,1358,1361,1367,1372,1373,1374,1377,1383,1389,1391,1392,1400,1403,1408,1411,1413,1423,1424,1429,1431,1433,1437,1450,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1013,1021,1024,1031,1036,1041,1044,1054,1060,1062,1063,1068,1069,1080,1086,1087,1096,1097,1108,1112,1115,1134,1142,1149,1150,1156,1159,1162,1176,1184,1187,1190,1195,1202,1217,1219,1223,1230,1231,1239,1242,1246,1252,1255,1262,1268,1273,1288,1291,1294,1297,1301,1316,1319,1328,1333,1336,1337,1339,1356,1359,1361,1367,1372,1374,1382,1385,1390,1397,1399,1412,1414,1415,1416,1417,1418,1426,1428,1431,1432,1434,1443,1448,1451,1469,1477,1478,1482,1486,1487,1494,1495,1496,1498,1501,1514,1517,1523,1524,1526,1529,1530,1537,1540,1548,1549,1552,1555,1559,1560,1568,1574,1578,1579,1580,1582,1584,1585,1590,1597,1598,1599,1602,1605,1616,1617,1630,1634,1639,1644,1651,1657,1664,1670,1674,1678,1680,1681,1684,1696,1698,1699,1704,1715,1722,1725,1727,1739,1741,1744,1746,1752,1761,1319,1328,1333,1336,1337,1339,1356,1359,1361,1367,1372,1374,1382,1385,1390,1397,1399,1412,1414,1415,1416,1417,1418,1426,1428,1431,1432,1434,1443,1448,1451,1469,1477,1478,1482,1486,1487,1494,1495,1496,1498,1501,1514,1517,1523,1524,1526,1529,1530,1537,1540,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1013,1021,1024,1031] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/failedScript b/cardano-chain-gen/test/testfiles/fingerprint/failedScript index f996059dd..5945d5d33 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/failedScript +++ b/cardano-chain-gen/test/testfiles/fingerprint/failedScript @@ -1 +1 @@ -[8,9] \ No newline at end of file +[15,21] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/failedScriptFees b/cardano-chain-gen/test/testfiles/fingerprint/failedScriptFees index f996059dd..5945d5d33 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/failedScriptFees +++ b/cardano-chain-gen/test/testfiles/fingerprint/failedScriptFees @@ -1 +1 @@ -[8,9] \ No newline at end of file +[15,21] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/failedScriptSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/failedScriptSameBlock index 96aa67e91..e51937fbf 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/failedScriptSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/failedScriptSameBlock @@ -1 +1 @@ -[1,3] \ No newline at end of file +[5,11] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/forgeBlocks b/cardano-chain-gen/test/testfiles/fingerprint/forgeBlocks index cc3900548..ee475e707 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/forgeBlocks +++ b/cardano-chain-gen/test/testfiles/fingerprint/forgeBlocks @@ -1 +1 @@ -[1,8,9] \ No newline at end of file +[28,33,34] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/inlineDatumCBOR b/cardano-chain-gen/test/testfiles/fingerprint/inlineDatumCBOR index 76578b168..237dc50a9 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/inlineDatumCBOR +++ b/cardano-chain-gen/test/testfiles/fingerprint/inlineDatumCBOR @@ -1 +1 @@ -[1,8] \ No newline at end of file +[5,15] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/lazyRollback b/cardano-chain-gen/test/testfiles/fingerprint/lazyRollback index 6dbfc93ba..03c221aba 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/lazyRollback +++ b/cardano-chain-gen/test/testfiles/fingerprint/lazyRollback @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967,971,980,981,983,993,997,1007,1015,1016,1017,1018,1023,1027,1029,1036,1037,1042,1044,1052,1059,1060,1062,1070,1072,1081,1082,1083,1086,1089,1104,1115,1117,1144,1148,1155,1166,1168,1173,1177,1179,1182,1184,1185,1194,1209,1211,1224,1229,1233,1237,1238,1242,1244,1247,1248,1249,1257,1269,1286,1287,1290,1292,1298,1304,1310,1315,1319,955,959,967,971,980,981,983,993,997,1007,1015,1016,1017,1018,1023,1027,1029,1036,1037,1042,1044,1052,1059,1060,1062,1070,1072,1081,1082,1083,1086,1089,1104,1115,1117,1144,1148,1155,1166,1168,1173] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1013,1021,1024,1031,1036,1041,1044,1054,1060,1062,1063,1068,1069,1080,1086,1087,1096,1097,1108,1112,1115,1134,1142,1149,1150,1156,1159,1162,1176,1184,1187,1190,1195,1202,1217,1219,1223,1230,1231,1239,1242,1246,1252,1255,1262,1268,1273,1288,1291,1294,1297,1301,1316,1319,1328,1333,1336,1337,1339,1356,1359,1361,1367,1372,1374,1382,1385,1390,1397,1399,1412,1414,1415,1031,1036,1041,1044,1054,1060,1062,1063,1068,1069,1080,1086,1087,1096,1097,1108,1112,1115,1134,1142,1149,1150,1156,1159,1162,1176,1184,1187,1190,1195,1202,1217,1219,1223,1230,1231,1239,1242,1246,1252,1255] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/lazyRollbackRestart b/cardano-chain-gen/test/testfiles/fingerprint/lazyRollbackRestart index fe0664b09..9f3daeb65 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/lazyRollbackRestart +++ b/cardano-chain-gen/test/testfiles/fingerprint/lazyRollbackRestart @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967,971,980,981,983,993,997,1007,1015,1016,1017,1018,1023,1027,1029,1036,1037,1042,1044,1052,1059,1060,1062,1070,1072,1081,1082,1083,1086,1089,1104,1115,1117,1144,1148,1155,1166,1168,1173,1177,1179,1182,1184,1185,1194,1209,1211,1224,1229,1233,1237,1238,1242,1244,1247,1248,1249,1257,1269,1286,1287,1290,1292,1298,1304,1310,1315,1319,1322,1323,1327,1329,1334,1336,1341,1355,1358,1361,1044,1052,1059,1060,1062,1070,1072,1081,1082,1083,1086,1089,1104,1115,1117,1144,1148,1155,1166,1168,1173,1177,1179,1182,1184,1185,1194,1209,1211,1224,1229] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1013,1021,1024,1031,1036,1041,1044,1054,1060,1062,1063,1068,1069,1080,1086,1087,1096,1097,1108,1112,1115,1134,1142,1149,1150,1156,1159,1162,1176,1184,1187,1190,1195,1202,1217,1219,1223,1230,1231,1239,1242,1246,1252,1255,1262,1268,1273,1288,1291,1294,1297,1301,1316,1319,1328,1333,1336,1337,1339,1356,1359,1361,1367,1372,1374,1382,1385,1390,1397,1399,1412,1414,1415,1416,1417,1418,1426,1428,1431,1432,1434,1443,1448,1149,1150,1156,1159,1162,1176,1184,1187,1190,1195,1202,1217,1219,1223,1230,1231,1239,1242,1246,1252,1255,1262,1268,1273,1288,1291,1294,1297,1301,1316,1319] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/mintMultiAsset b/cardano-chain-gen/test/testfiles/fingerprint/mintMultiAsset index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/mintMultiAsset +++ b/cardano-chain-gen/test/testfiles/fingerprint/mintMultiAsset @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/mintMultiAssets b/cardano-chain-gen/test/testfiles/fingerprint/mintMultiAssets index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/mintMultiAssets +++ b/cardano-chain-gen/test/testfiles/fingerprint/mintMultiAssets @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/mirReward b/cardano-chain-gen/test/testfiles/fingerprint/mirReward index 8f9837354..846f97f45 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/mirReward +++ b/cardano-chain-gen/test/testfiles/fingerprint/mirReward @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/mirRewardDereg b/cardano-chain-gen/test/testfiles/fingerprint/mirRewardDereg index 6166e9cc9..0aa286f55 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/mirRewardDereg +++ b/cardano-chain-gen/test/testfiles/fingerprint/mirRewardDereg @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/multipleScripts b/cardano-chain-gen/test/testfiles/fingerprint/multipleScripts index 6479ecbfa..0846df1b9 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/multipleScripts +++ b/cardano-chain-gen/test/testfiles/fingerprint/multipleScripts @@ -1 +1 @@ -[8,14] \ No newline at end of file +[15,23] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/multipleScriptsFailed b/cardano-chain-gen/test/testfiles/fingerprint/multipleScriptsFailed index 6479ecbfa..0846df1b9 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/multipleScriptsFailed +++ b/cardano-chain-gen/test/testfiles/fingerprint/multipleScriptsFailed @@ -1 +1 @@ -[8,14] \ No newline at end of file +[15,23] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/multipleScriptsFailedSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/multipleScriptsFailedSameBlock index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/multipleScriptsFailedSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/multipleScriptsFailedSameBlock @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/multipleScriptsRollback b/cardano-chain-gen/test/testfiles/fingerprint/multipleScriptsRollback index 935bb7b24..9a1a79291 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/multipleScriptsRollback +++ b/cardano-chain-gen/test/testfiles/fingerprint/multipleScriptsRollback @@ -1 +1 @@ -[8,14,1,8,14] \ No newline at end of file +[15,23,5,15,23] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/multipleScriptsSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/multipleScriptsSameBlock index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/multipleScriptsSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/multipleScriptsSameBlock @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/nodeRestart b/cardano-chain-gen/test/testfiles/fingerprint/nodeRestart index d56c4ced0..32ffe96b7 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/nodeRestart +++ b/cardano-chain-gen/test/testfiles/fingerprint/nodeRestart @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/nodeRestartBoundary b/cardano-chain-gen/test/testfiles/fingerprint/nodeRestartBoundary index ce0d9fd10..19571d07b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/nodeRestartBoundary +++ b/cardano-chain-gen/test/testfiles/fingerprint/nodeRestartBoundary @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/nonexistantPoolQuery b/cardano-chain-gen/test/testfiles/fingerprint/nonexistantPoolQuery index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/nonexistantPoolQuery +++ b/cardano-chain-gen/test/testfiles/fingerprint/nonexistantPoolQuery @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/poolDeReg b/cardano-chain-gen/test/testfiles/fingerprint/poolDeReg index 8f9837354..846f97f45 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/poolDeReg +++ b/cardano-chain-gen/test/testfiles/fingerprint/poolDeReg @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/poolDeRegMany b/cardano-chain-gen/test/testfiles/fingerprint/poolDeRegMany index 8f9837354..846f97f45 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/poolDeRegMany +++ b/cardano-chain-gen/test/testfiles/fingerprint/poolDeRegMany @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/poolDelist b/cardano-chain-gen/test/testfiles/fingerprint/poolDelist index 0860d13b3..cdd22a6e6 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/poolDelist +++ b/cardano-chain-gen/test/testfiles/fingerprint/poolDelist @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/poolReg b/cardano-chain-gen/test/testfiles/fingerprint/poolReg index 96aa67e91..e51937fbf 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/poolReg +++ b/cardano-chain-gen/test/testfiles/fingerprint/poolReg @@ -1 +1 @@ -[1,3] \ No newline at end of file +[5,11] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/referenceDelegation b/cardano-chain-gen/test/testfiles/fingerprint/referenceDelegation index 96aa67e91..e51937fbf 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/referenceDelegation +++ b/cardano-chain-gen/test/testfiles/fingerprint/referenceDelegation @@ -1 +1 @@ -[1,3] \ No newline at end of file +[5,11] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/referenceInputUnspend b/cardano-chain-gen/test/testfiles/fingerprint/referenceInputUnspend index 96aa67e91..e51937fbf 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/referenceInputUnspend +++ b/cardano-chain-gen/test/testfiles/fingerprint/referenceInputUnspend @@ -1 +1 @@ -[1,3] \ No newline at end of file +[5,11] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/referenceMintingScript b/cardano-chain-gen/test/testfiles/fingerprint/referenceMintingScript index 96aa67e91..e51937fbf 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/referenceMintingScript +++ b/cardano-chain-gen/test/testfiles/fingerprint/referenceMintingScript @@ -1 +1 @@ -[1,3] \ No newline at end of file +[5,11] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/registrationScriptTx b/cardano-chain-gen/test/testfiles/fingerprint/registrationScriptTx index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/registrationScriptTx +++ b/cardano-chain-gen/test/testfiles/fingerprint/registrationScriptTx @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/registrationTx b/cardano-chain-gen/test/testfiles/fingerprint/registrationTx index 5a012a1c3..7d4ea0996 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/registrationTx +++ b/cardano-chain-gen/test/testfiles/fingerprint/registrationTx @@ -1 +1 @@ -[1,3,4,7] \ No newline at end of file +[5,11,15,21] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/registrationsSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/registrationsSameBlock index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/registrationsSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/registrationsSameBlock @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/registrationsSameTx b/cardano-chain-gen/test/testfiles/fingerprint/registrationsSameTx index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/registrationsSameTx +++ b/cardano-chain-gen/test/testfiles/fingerprint/registrationsSameTx @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/restartAndRollback b/cardano-chain-gen/test/testfiles/fingerprint/restartAndRollback index 80c6a6f9b..068c0879f 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/restartAndRollback +++ b/cardano-chain-gen/test/testfiles/fingerprint/restartAndRollback @@ -1 +1 @@ -[1,3,11,31,42,44,61,62,76,93,95,102,104,123,149,170,171,190,201,209,227,260,265,272,284,294,296,305,306,318,331,345,347,348,350,375,382,401,411,424,428,471,487,489,492,512,523,526,528,529,537,551,568,573,604,607,615,636,649,672,681,682,698,703,706,708,714,737,768,781,787,801,848,852,857,864,876,899,920,949,957,980,993,999,1008,1010,1025,1043,1045,1058,1060,1080,1090,1091,1106,1111,1114,1131,1133,1135,1136,1190,1193,1199,1216,1239,1273,1325,1329,1340,1346,1348,1354,1356,1358,1382,1392,1398,1419,1431,1452,1454,1462,1472,1474,1501,1505,1506,1507,1508,1524,1532,1533,1546,1585,1621,1647,1656,1685,1698,1700,1749,1759,1770,1777,1781,1787,1812,1821,1824,1837,1845,1858,1864,1873,1880,1887,1894,1898,1903,1906,1916,1921,1922,1925,1953,1957,1964,1975,1993,1994,1999,2003,2007,2008,2014,2015,2037,2049,2054,2077,2090,2101,2126,2135,2146,2173,2193,2194,2215,2230,2234,2246,2255,2258,2262,2277,2300,2303,2315,2327,2328,2330,2338,2354,2426] \ No newline at end of file +[28,42,43,52,62,82,92,106,109,133,161,162,171,195,196,197,206,208,216,222,272,275,282,347,382,392,393,398,414,424,446,448,465,478,485,499,500,506,508,509,513,514,515,518,539,548,566,577,584,589,602,613,626,644,661,664,668,677,725,729,736,746,749,757,773,774,784,810,813,819,828,849,852,866,876,880,886,895,900,924,930,952,964,971,981,987,989,1013,1016,1027,1058,1064,1082,1098,1110,1121,1159,1205,1221,1226,1235,1239,1254,1271,1278,1282,1283,1294,1308,1312,1330,1338,1343,1383,1393,1397,1406,1411,1416,1445,1446,1454,1458,1464,1466,1472,1479,1481,1483,1499,1506,1550,1554,1566,1587,1588,1596,1609,1635,1642,1684,1696,1701,1732,1733,1752,1753,1767,1773,1790,1805,1813,1820,1843,1854,1872,1874,1890,1899,1902,1904,1935,1936,1940,1950,1956,1963,1968,1969,1987,1997,2011,2019,2024,2042,2080,2081,2140,2143,2149,2169,2174,2183,2189,2193,2200,2249,2250,2269,2295,2312,2336,2381,2382,2409,2414,2424,2429,2438,2450,2470,2472,2488,2498,2501,2537] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/restartDBSync b/cardano-chain-gen/test/testfiles/fingerprint/restartDBSync index bace2a0be..65f2eb4db 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/restartDBSync +++ b/cardano-chain-gen/test/testfiles/fingerprint/restartDBSync @@ -1 +1 @@ -[1] \ No newline at end of file +[28] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/rewardsDeregistration b/cardano-chain-gen/test/testfiles/fingerprint/rewardsDeregistration index 8ba8fda01..cc9313bea 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/rewardsDeregistration +++ b/cardano-chain-gen/test/testfiles/fingerprint/rewardsDeregistration @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967,971,980,981,983,993,997,1007,1010,1016,1026,1034,1037,1038,1045,1047,1049,1052,1053,1060,1065,1071,1073,1081,1092,1094,1103,1108,1121,1125,1127,1130,1131,1137,1138,1139,1141,1145,1155,1156,1158,1166,1190,1193,1202,1215,1219,1220,1221,1227,1236,1239,1246,1254,1255,1264,1265,1268,1274,1275,1289,1290,1296,1299,1300,1303,1305,1306,1314,1316,1318,1323,1325,1326,1328,1329,1347,1361,1362,1371,1381,1382,1391,1398,1415,1420,1427,1434,1437,1443,1444,1445,1447,1450,1451,1456,1458,1467,1470,1474,1478,1487,1488,1490,1492,1497,1499,1500,1504,1505,1513,1521,1524,1529,1530,1534,1537,1546,1550,1553,1559,1576,1579,1582,1586,1588,1589,1591,1592,1593,1599,1607,1608,1616,1617,1620,1632,1640,1653,1664,1665,1677,1683,1686,1688,1689,1690,1697,1699,1701,1702,1712,1714,1720,1721,1724,1725,1726,1727,1742,1746,1747,1748,1750,1756,1765,1768,1769,1775,1783,1789,1791,1794,1795,1800,1801,1802,1811,1813,1818,1833,1835,1837,1840,1859,1865,1872,1877,1881,1884,1889,1894,1898,1900,1905,1909,1921,1925,1944,1946,1951,1956,1957,1962,1964,1965,1971,1976,1979,1982,1991,1993,1995,1997,1999,2002,2016,2024,2027,2029,2035,2043,2053,2057,2065,2070,2074,2081,2084,2108,2115,2120,2122,2123,2128,2141,2144,2150,2154,2164,2169,2175,2178,2181,2183,2194,2199,2208,2211,2213,2221,2226,2227,2234,2245,2252,2257,2267,2268,2272,2274,2279,2281,2286,2292,2296,2303,2306,2314,2315,2323,2329,2331,2334,2343,2355,2357,2359,2361,2362,2368,2380,2381,2384,2387,2396,2398,2403,2404,2408,2411,2412,2414,2416,2419,2421,2432,2435,2436,2440,2453,2455,2456,2460,2472,2475,2476,2489,2493,2494,2497,2499,2503,2505,2512,2513,2517,2538,2540,2547,2550,2553,2565,2568,2581,2582,2584,2587,2604,2611,2615,2627,2628,2630,2632,2647,2651,2657,2658,2666,2674,2677,2682,2686,2687,2689,2698,2700,2703,2708,2711,2712,2714,2717,2722,2725,2726,2730,2731,2732,2739,2740,2743,2751,2753,2757,2770,2777,2783,2791,2796,2802,2803,2804,2823,2827,2831,2834,2844,2855,2858,2867,2868,2874,2877,2884,2887,2898,2899,2901,2905,2906,2908,2924,2931,2937,2946,2950,2956,2958,2975,2978,2982,2983,2993,3001,3004,3008,3010,3013,3022,3036,3043,3047,3050,3052,3053,3058,3060,3063,3066,3067,3072,3074,3080,3081,3086,3091,3103,3104,3108,3110,3128,3130,3131,3143,3148,3150,3156,3163,3164,3170,3175,3180,3182,3187,3200,3207,3209,3211,3222,3228,3231,3241,3247,3255,3256,3258,3260,3262,3266,3271,3275,3277,3278,3283,3286,3300,3316,3337,3338,3346,3348,3362,3363,3366,3370,3375,3381,3388,3391,3394,3399,3403,3407,3413,3414,3421,3423,3435,3441,3453,3456,3458,3460,3466,3472,3484,3501,3502,3507,3513,3514,3515,3529,3530,3531,3533,3541,3542,3545,3551,3552,3554,3556,3566,3567,3572,3580,3582,3596,3604,3616,3621,3636,3641,3648,3650,3658,3661,3665,3668,3671,3675,3680,3681,3687,3693,3700,3702,3705,3706,3711,3716,3717,3726,3738,3744,3752,3756,3763,3771,3772,3775,3776,3777,3782,3790,3791,3792,3793,3799,3803,3813,3818,3826,3828,3832,3833,3834,3843,3844,3845,3846,3847,3848,3849,3850,3851,3856,3857,3859,3861,3870,3874,3877,3879,3881,3885,3886,3887,3890,3891,3893,3900,3914,3929,3932,3934,3944,3947,3951,3952,3953,3955,3967,3970,3979,3986,3991,4003,4005,4023,4030,4032,4037,4040,4041,4045,4046,4051,4060,4067,4077,4091,4095,4097,4099,4106,4107,4112,4114,4115,4119,4122,4127,4128,4129,4139,4146,4155,4162,4168,4169,4172,4174,4176,4178,4180,4183,4188,4196,4204,4209,4217,4221,4222,4229,4230,4232,4233,4236,4243,4244,4252,4267,4271,4293,4294,4296,4301,4305,4308,4314,4316,4318,4324,4330,4331,4338,4342,4352,4355,4360,4373,4385,4386,4388,4389,4399,4404,4412,4413,4422,4424,4432,4445,4446,4453,4465,4471,4472,4477,4479,4485,4489,4490,4494,4496,4503,4509,4523,4529,4532,4536,4537,4543,4550,4552,4555,4566,4570,4576,4577,4580,4585,4592,4593,4597,4599,4600,4606,4607,4609,4611,4616,4618,4622,4625,4628,4630,4633,4635,4637,4646,4649,4650,4652,4658,4659,4661,4663,4667,4673,4690,4706,4708,4713,4715,4716,4722,4726,4742,4745,4746,4749,4752,4765,4776,4784,4793,4799,4800,4808,4817,4823,4830,4836,4848,4852,4853,4857,4861,4868,4871,4876,4892,4893,4895,4904,4911,4916,4917,4926,4931,4933,4935,4938,4942,4945,4946,4956,4958,4959,4961,4977,4982,4983,4985,4989,5002,5003,5012,5019,5024,5026,5030,5042,5044,5053,5056,5066,5067,5069,5072,5077,5088,5091,5094,5096,5100,5102,5110,5123,5127,5128,5151,5154,5155,5156,5157,5163,5165,5169,5173,5177,5178,5185,5187,5212,5217,5221,5226,5227,5231,5234,5235,5242,5243,5248,5257,5270,5278,5279,5282,5285,5287,5288,5289,5291,5293,5303,5306,5312,5316,5317,5324,5332,5339,5343,5351,5352,5355,5356,5367,5368,5378,5379,5380,5382,5391,5392,5399,5400,5406,5420,5423,5425,5430,5438,5440,5443,5445,5447,5450,5456,5458,5470,5472,5475,5482,5483,5485,5497,5499,5506] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1003,1009,1013,1022,1025,1034,1038,1039,1040,1053,1065,1066,1074,1075,1076,1077,1078,1087,1088,1090,1097,1099,1103,1118,1120,1121,1122,1127,1133,1147,1152,1153,1163,1200,1210,1211,1222,1226,1232,1238,1250,1256,1258,1262,1263,1265,1269,1272,1279,1290,1291,1293,1294,1301,1303,1309,1322,1327,1349,1353,1355,1358,1372,1374,1384,1388,1396,1400,1409,1420,1437,1438,1443,1445,1446,1447,1448,1450,1451,1464,1470,1475,1478,1479,1484,1488,1490,1493,1494,1501,1502,1511,1512,1514,1516,1520,1522,1525,1530,1532,1533,1537,1538,1546,1563,1565,1579,1587,1589,1591,1593,1599,1602,1618,1620,1621,1622,1623,1624,1626,1627,1632,1634,1642,1646,1651,1654,1655,1678,1682,1685,1686,1692,1694,1701,1703,1704,1708,1711,1714,1719,1722,1724,1729,1745,1747,1752,1755,1759,1784,1797,1825,1833,1836,1842,1843,1852,1853,1856,1864,1882,1889,1890,1891,1894,1895,1899,1904,1909,1914,1926,1934,1937,1944,1947,1950,1955,1956,1959,1965,1970,1971,1973,1976,1978,1984,1999,2004,2006,2008,2011,2012,2015,2016,2024,2039,2042,2046,2050,2062,2064,2066,2070,2072,2076,2078,2079,2080,2082,2089,2093,2099,2100,2102,2104,2105,2106,2112,2113,2114,2117,2119,2132,2133,2142,2143,2150,2151,2152,2159,2170,2176,2177,2181,2191,2195,2196,2197,2199,2205,2212,2213,2218,2225,2232,2235,2245,2249,2250,2259,2264,2270,2277,2280,2281,2298,2307,2318,2319,2322,2325,2335,2344,2345,2349,2355,2356,2358,2359,2362,2371,2373,2375,2378,2382,2384,2386,2391,2394,2395,2402,2403,2407,2420,2423,2437,2441,2456,2461,2487,2491,2494,2498,2499,2500,2501,2502,2504,2506,2508,2509,2512,2518,2520,2524,2530,2532,2533,2547,2551,2553,2560,2562,2563,2568,2569,2591,2595,2599,2604,2605,2612,2617,2618,2622,2625,2632,2635,2637,2659,2670,2674,2678,2684,2686,2692,2695,2696,2698,2702,2705,2708,2717,2719,2722,2724,2725,2733,2736,2744,2747,2749,2752,2759,2764,2766,2768,2783,2784,2788,2790,2809,2815,2817,2832,2837,2838,2840,2847,2849,2851,2852,2856,2857,2864,2867,2868,2870,2874,2882,2894,2900,2905,2913,2916,2917,2918,2936,2937,2940,2947,2948,2951,2961,2964,2975,2978,2983,2984,2987,2988,2993,2996,2997,3005,3010,3026,3029,3032,3033,3034,3039,3049,3054,3055,3058,3060,3064,3067,3069,3070,3072,3073,3075,3079,3081,3083,3092,3096,3098,3110,3120,3128,3132,3136,3139,3142,3146,3150,3166,3168,3174,3180,3181,3184,3185,3186,3192,3193,3196,3198,3205,3215,3223,3228,3230,3233,3235,3236,3245,3257,3265,3267,3273,3274,3277,3278,3279,3286,3294,3311,3314,3315,3337,3338,3351,3357,3362,3365,3373,3375,3376,3379,3380,3381,3388,3393,3397,3403,3414,3420,3422,3427,3441,3466,3472,3475,3476,3483,3487,3488,3493,3503,3504,3514,3519,3522,3525,3529,3535,3539,3541,3551,3557,3561,3567,3581,3583,3595,3596,3599,3601,3603,3606,3611,3614,3616,3619,3622,3633,3635,3636,3640,3655,3662,3664,3666,3685,3700,3704,3705,3706,3710,3717,3719,3721,3734,3738,3748,3749,3752,3762,3764,3771,3775,3781,3782,3785,3791,3793,3794,3801,3802,3824,3833,3836,3840,3842,3849,3854,3880,3889,3905,3908,3909,3920,3926,3932,3939,3962,3963,3973,3983,3986,3990,3993,4002,4010,4016,4021,4036,4040,4043,4046,4047,4050,4055,4057,4059,4062,4064,4068,4071,4073,4078,4086,4098,4103,4105,4106,4107,4123,4124,4132,4133,4139,4144,4146,4147,4150,4160,4163,4175,4178,4181,4203,4205,4206,4209,4211,4216,4218,4236,4244,4261,4263,4265,4271,4272,4273,4278,4279,4281,4282,4283,4292,4296,4298,4302,4310,4313,4323,4352,4358,4361,4369,4383,4388,4389,4390,4392,4400,4405,4410,4412,4421,4422,4425,4430,4433,4444,4458,4459,4462,4470,4483,4485,4493,4497,4510,4518,4520,4526,4535,4537,4538,4543,4545,4554,4568,4569,4571,4575,4576,4583,4585,4586,4588,4589,4590,4595,4602,4606,4610,4622,4635,4637,4639,4642,4648,4649,4652,4653,4656,4661,4662,4663,4668,4674,4687,4688,4691,4694,4699,4703,4706,4707,4717,4720,4728,4733,4734,4739,4744,4747,4748,4749,4750,4753,4756,4758,4764,4766,4767,4770,4774,4782,4786,4789,4791,4794,4796,4807,4809,4811,4817,4821,4823,4830,4832,4843,4848,4857,4866,4875,4879,4885,4892,4894,4897,4899,4901,4905,4907,4910,4911,4912,4914,4920,4928,4930,4932,4942,4949,4953,4955,4971,4985,4989,4991,4993,5003,5004,5011,5016,5022,5025,5029,5034,5037,5039,5047,5051,5057,5063,5067,5070,5080,5084,5092,5096,5112,5113,5118,5120,5126,5128,5140,5145,5152,5160,5164,5169,5172,5176,5181,5185,5186,5203,5205,5209,5213,5222,5224,5231,5233,5234,5236,5262,5266,5289,5300,5301,5305,5306,5312,5317,5321,5331,5344,5345,5357,5365,5373,5392,5402,5408,5413,5420,5430,5441,5446,5455,5471,5475,5481,5500] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/rewardsReregistration b/cardano-chain-gen/test/testfiles/fingerprint/rewardsReregistration index c821b5d3d..39f736483 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/rewardsReregistration +++ b/cardano-chain-gen/test/testfiles/fingerprint/rewardsReregistration @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967,971,980,981,983,993,997,1007,1010,1016,1026,1034,1037,1038,1045,1047,1049,1052,1053,1060,1065,1071,1073,1081,1092,1094,1103,1108,1121,1125,1127,1130,1131,1137,1138,1139,1141,1145,1155,1156,1158,1166,1190,1193,1202,1215,1219,1220,1221,1227,1236,1239,1246,1254,1255,1264,1265,1268,1274,1275,1289,1290,1296,1299,1300,1303,1305,1306,1314,1316,1318,1323,1325,1326,1328,1329,1347,1361,1362,1371,1381,1382,1391,1398,1415,1420,1427,1434,1437,1443,1444,1445,1447,1450,1451,1456,1458,1467,1470,1474,1478,1487,1488,1490,1492,1497,1499,1500,1504,1505,1513,1521,1524,1529,1530,1534,1537,1546,1550,1553,1559,1576,1579,1582,1586,1588,1589,1591,1592,1593,1599,1607,1608,1616,1617,1620,1632,1640,1653,1664,1665,1677,1683,1686,1688,1689,1690,1697,1699,1701,1702,1712,1714,1720,1721,1724,1725,1726,1727,1742,1746,1747,1748,1750,1756,1765,1768,1769,1775,1783,1789,1791,1794,1795,1800,1801,1802,1811,1813,1818,1833,1835,1837,1840,1859,1865,1872,1877,1881,1884,1889,1894,1898,1900,1905,1909,1921,1925,1944,1946,1951,1956,1957,1962,1964,1965,1971,1976,1979,1982,1991,1993,1995,1997,1999,2002,2016,2024,2027,2029,2035,2043,2053,2057,2065,2070,2074,2081,2084,2108,2115,2120,2122,2123,2128,2141,2144,2150,2154,2164,2169,2175,2178,2181,2183,2194,2199,2208,2211,2213,2221,2226,2227,2234,2245,2252,2257,2267,2268,2272,2274,2279,2281,2286,2292,2296,2303,2306,2314,2315,2323,2329,2331,2334,2343,2355,2357,2359,2361,2362,2368,2380,2381,2384,2387,2396,2398,2403,2404,2408,2411,2412,2414,2416,2419,2421,2432,2435,2436,2440,2453,2455,2456,2460,2472,2475,2476,2489,2493,2494,2497,2499,2503,2505,2512,2513,2517,2538,2540,2547,2550,2553,2565,2568,2581,2582,2584,2587,2604,2611,2615,2627,2628,2630,2632,2647,2651,2657,2658,2666,2674,2677,2682,2686,2687,2689,2698,2700,2703,2708,2711,2712,2714,2717,2722,2725,2726,2730,2731,2732,2739,2740,2743,2751,2753,2757,2770,2777,2783,2791,2796,2802,2803,2804,2823,2827,2831,2834,2844,2855,2858,2867,2868,2874,2877,2884,2887,2898,2899,2901,2905,2906,2908,2924,2931,2937,2946,2950,2956,2958,2975,2978,2982,2983,2993,3001,3004,3008,3010,3013,3022,3036,3043,3047,3050,3052,3053,3058,3060,3063,3066,3067,3072,3074,3080,3081,3086,3091,3103,3104,3108,3110,3128,3130,3131,3143,3148,3150,3156,3163,3164,3170,3175,3180,3182,3187,3200,3207,3209,3211,3222,3228,3231,3241,3247,3255,3256,3258,3260,3262,3266,3271,3275,3277,3278,3283,3286,3300,3316,3337,3338,3346,3348,3362,3363,3366,3370,3375,3381,3388,3391,3394,3399,3403,3407,3413,3414,3421,3423,3435,3441,3453,3456,3458,3460,3466,3472,3484,3501] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1003,1009,1013,1022,1025,1034,1038,1039,1040,1053,1065,1066,1074,1075,1076,1077,1078,1087,1088,1090,1097,1099,1103,1118,1120,1121,1122,1127,1133,1147,1152,1153,1163,1200,1210,1211,1222,1226,1232,1238,1250,1256,1258,1262,1263,1265,1269,1272,1279,1290,1291,1293,1294,1301,1303,1309,1322,1327,1349,1353,1355,1358,1372,1374,1384,1388,1396,1400,1409,1420,1437,1438,1443,1445,1446,1447,1448,1450,1451,1464,1470,1475,1478,1479,1484,1488,1490,1493,1494,1501,1502,1511,1512,1514,1516,1520,1522,1525,1530,1532,1533,1537,1538,1546,1563,1565,1579,1587,1589,1591,1593,1599,1602,1618,1620,1621,1622,1623,1624,1626,1627,1632,1634,1642,1646,1651,1654,1655,1678,1682,1685,1686,1692,1694,1701,1703,1704,1708,1711,1714,1719,1722,1724,1729,1745,1747,1752,1755,1759,1784,1797,1825,1833,1836,1842,1843,1852,1853,1856,1864,1882,1889,1890,1891,1894,1895,1899,1904,1909,1914,1926,1934,1937,1944,1947,1950,1955,1956,1959,1965,1970,1971,1973,1976,1978,1984,1999,2004,2006,2008,2011,2012,2015,2016,2024,2039,2042,2046,2050,2062,2064,2066,2070,2072,2076,2078,2079,2080,2082,2089,2093,2099,2100,2102,2104,2105,2106,2112,2113,2114,2117,2119,2132,2133,2142,2143,2150,2151,2152,2159,2170,2176,2177,2181,2191,2195,2196,2197,2199,2205,2212,2213,2218,2225,2232,2235,2245,2249,2250,2259,2264,2270,2277,2280,2281,2298,2307,2318,2319,2322,2325,2335,2344,2345,2349,2355,2356,2358,2359,2362,2371,2373,2375,2378,2382,2384,2386,2391,2394,2395,2402,2403,2407,2420,2423,2437,2441,2456,2461,2487,2491,2494,2498,2499,2500,2501,2502,2504,2506,2508,2509,2512,2518,2520,2524,2530,2532,2533,2547,2551,2553,2560,2562,2563,2568,2569,2591,2595,2599,2604,2605,2612,2617,2618,2622,2625,2632,2635,2637,2659,2670,2674,2678,2684,2686,2692,2695,2696,2698,2702,2705,2708,2717,2719,2722,2724,2725,2733,2736,2744,2747,2749,2752,2759,2764,2766,2768,2783,2784,2788,2790,2809,2815,2817,2832,2837,2838,2840,2847,2849,2851,2852,2856,2857,2864,2867,2868,2870,2874,2882,2894,2900,2905,2913,2916,2917,2918,2936,2937,2940,2947,2948,2951,2961,2964,2975,2978,2983,2984,2987,2988,2993,2996,2997,3005,3010,3026,3029,3032,3033,3034,3039,3049,3054,3055,3058,3060,3064,3067,3069,3070,3072,3073,3075,3079,3081,3083,3092,3096,3098,3110,3120,3128,3132,3136,3139,3142,3146,3150,3166,3168,3174,3180,3181,3184,3185,3186,3192,3193,3196,3198,3205,3215,3223,3228,3230,3233,3235,3236,3245,3257,3265,3267,3273,3274,3277,3278,3279,3286,3294,3311,3314,3315,3337,3338,3351,3357,3362,3365,3373,3375,3376,3379,3380,3381,3388,3393,3397,3403,3414,3420,3422,3427,3441,3466,3472,3475,3476,3483,3487,3488,3493,3503] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/rollbackBoundary b/cardano-chain-gen/test/testfiles/fingerprint/rollbackBoundary index 783ab9c34..ff63fd535 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/rollbackBoundary +++ b/cardano-chain-gen/test/testfiles/fingerprint/rollbackBoundary @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967,971,980,981,983,993,997,1006,1009,1010,1011,1027,1033,1041,1044,1057,1063,1064,1065,1070,1072,1074,1075,1079,1082,1086,1090,1093,1095,1097,1117,1119,1120,1127,1142,1143,1154,1156,1157,1163,1167,1183,1189,1193,1197,1201,1209,1212,1218,1224,1228,1230,1241,1244,1245,1246,1247,1250,1252,1254,1258,1261,1265,1270,1277,1282,1286,1287,1296,1297,1300,1304,1305,1313,1329,1341,1343,1344,1353,1355,1357,1363,1365,1366,1378,1380,1384,1386,1389,1390,1397,1399,1400,1404,1405,1410,1411,1412,1428,1434,1437,1439,1441,1444,1450,1453,1454,1455,1462,1466,1468,1479,1504,1506,1509,1515,1519,1525,1529,1546,1552,1554,1560,1563,1566,1584,1585,1590,1597,1620,1622,1627,1632,1642,1648,1649,1652,1654,1656,1659,1663,1664,1666,1667,1669,1671,1679,1695,1698,1702,1703,1706,1710,1712,1717,1722,1727,1741,1755,1757,1762,1771,1772,1774,1776,1787,1788,1791,1804,1805,1811,1814,1816,1819,1820,1821,1826,1827,1833,1844,1849,1851,1860,1862,1863,1870,1873,1876,1877,1881,1891,1893,1897,1898,1900,1912,1913,1916,1917,1919,1921,1936,1941,1943,1945,1946,1953,1958,1963,1964,1969,1974,1979,1991,1994,2001] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1004,1008,1017,1028,1042,1046,1050,1051,1053,1061,1065,1067,1077,1084,1088,1091,1092,1094,1099,1103,1107,1112,1115,1118,1122,1123,1125,1140,1147,1158,1161,1162,1171,1178,1181,1187,1194,1206,1222,1242,1244,1253,1264,1272,1275,1277,1290,1294,1295,1298,1301,1313,1334,1337,1349,1350,1367,1378,1389,1391,1394,1395,1397,1398,1410,1418,1428,1437,1441,1446,1448,1449,1451,1460,1463,1468,1477,1486,1495,1497,1511,1513,1516,1518,1520,1522,1524,1526,1527,1538,1540,1549,1555,1557,1561,1564,1570,1575,1582,1596,1609,1615,1616,1625,1626,1641,1643,1646,1656,1663,1672,1678,1682,1683,1693,1694,1700,1701,1702,1706,1708,1709,1712,1714,1723,1726,1728,1729,1732,1733,1735,1736,1738,1739,1740,1741,1744,1747,1749,1751,1752,1754,1755,1757,1760,1761,1772,1777,1781,1784,1796,1817,1821,1825,1826,1831,1843,1859,1869,1877,1884,1889,1902,1912,1916,1919,1937,1943,1946,1949,1950,1953,1958,1962,1965,1967,1971,1972,1973,1974,1994,2007] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/rollbackChangeTxOrder b/cardano-chain-gen/test/testfiles/fingerprint/rollbackChangeTxOrder index 98249ed2f..b1ccb125b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/rollbackChangeTxOrder +++ b/cardano-chain-gen/test/testfiles/fingerprint/rollbackChangeTxOrder @@ -1 +1 @@ -[1,3,3] \ No newline at end of file +[5,11,11] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/rollbackFullTx b/cardano-chain-gen/test/testfiles/fingerprint/rollbackFullTx index 98249ed2f..b1ccb125b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/rollbackFullTx +++ b/cardano-chain-gen/test/testfiles/fingerprint/rollbackFullTx @@ -1 +1 @@ -[1,3,3] \ No newline at end of file +[5,11,11] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/simpleRewards b/cardano-chain-gen/test/testfiles/fingerprint/simpleRewards index 88a146a7a..90bb52e2a 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/simpleRewards +++ b/cardano-chain-gen/test/testfiles/fingerprint/simpleRewards @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967,971,980,981,983,993,997,1001,1004,1005,1012,1013,1015,1021,1028,1044,1049,1063,1072,1077,1081,1082,1086,1088,1092,1103,1126,1130,1136,1150,1153,1159,1170,1173,1177,1182,1184,1187,1193,1195,1197,1198,1210,1214,1223,1229,1232,1233,1235,1240,1250,1255,1260,1262,1264,1265,1269,1270,1274,1289,1297,1300,1311,1320,1331,1334,1335,1336,1338,1348,1349,1350,1353,1354,1355,1359,1360,1369,1376,1377,1378,1397,1404,1408,1409,1417,1419,1421,1425,1441,1447,1449,1461,1475,1479,1485,1487,1494,1497,1500,1504,1527,1539,1541,1548,1553,1554,1555,1570,1578,1590,1594,1596,1598,1605,1609,1618,1626,1628,1630,1638,1640,1660,1664,1667,1669,1672,1676,1681,1687,1688,1691,1694,1698,1703,1704,1712,1717,1720,1732,1735,1737,1741,1742,1748,1751,1754,1766,1769,1772,1773,1774,1780,1788,1791,1793,1799,1809,1810,1814,1815,1827,1830,1841,1856,1869,1871,1877,1885,1888,1890,1895,1900,1902,1914,1928,1929,1938,1949,1952,1956,1961,1962,1978,1981,1987,1993,1996,1999,2000,2008,2017,2018,2029,2035,2044,2046,2047,2060,2073,2074,2077,2079,2085,2086,2101,2105,2108,2109,2113,2119,2123,2128,2136,2137,2144,2147,2149,2154,2162,2164,2168,2184,2197,2211,2212,2215,2223,2231,2240,2244,2250,2252,2253,2256,2264,2269,2274,2285,2292,2299,2303,2315,2316,2325,2326,2327,2330,2331,2335,2341,2346,2351,2352,2357,2360,2369,2372,2375,2377,2383,2384,2387,2389,2399,2412,2418,2419,2424,2426,2428,2432,2435,2436,2437,2438,2439,2440,2443,2444,2451,2452,2454,2457,2461,2462,2470,2486,2490,2514] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1006,1007,1008,1011,1013,1014,1030,1031,1035,1054,1056,1059,1071,1072,1073,1081,1084,1085,1092,1112,1114,1130,1131,1137,1139,1142,1144,1145,1147,1150,1161,1165,1167,1168,1173,1175,1178,1180,1190,1192,1198,1201,1207,1213,1217,1222,1223,1228,1232,1236,1240,1247,1248,1249,1255,1260,1261,1273,1279,1284,1298,1304,1309,1321,1322,1332,1334,1340,1352,1354,1359,1360,1366,1369,1374,1379,1383,1398,1401,1404,1409,1410,1411,1412,1419,1423,1435,1439,1448,1450,1454,1459,1462,1464,1465,1472,1474,1480,1482,1486,1487,1502,1505,1510,1511,1513,1524,1528,1531,1534,1535,1540,1544,1548,1552,1553,1556,1558,1559,1561,1568,1579,1581,1584,1600,1602,1605,1607,1610,1614,1617,1628,1632,1635,1644,1647,1648,1652,1656,1657,1661,1662,1665,1666,1671,1677,1678,1684,1685,1686,1689,1692,1695,1697,1703,1721,1722,1727,1730,1732,1733,1736,1738,1740,1742,1749,1752,1755,1774,1776,1781,1783,1789,1794,1795,1808,1811,1818,1830,1834,1836,1837,1838,1839,1845,1846,1850,1853,1854,1857,1859,1869,1887,1890,1896,1897,1898,1902,1903,1909,1911,1918,1930,1940,1951,1954,1967,1968,1974,1978,1981,1984,1988,1991,1998,2005,2007,2019,2021,2026,2033,2035,2038,2043,2048,2049,2059,2061,2064,2065,2087,2094,2112,2113,2114,2117,2124,2136,2139,2140,2145,2153,2157,2161,2169,2172,2182,2189,2198,2203,2205,2206,2207,2228,2231,2244,2260,2263,2277,2281,2292,2298,2307,2311,2313,2316,2317,2318,2320,2322,2325,2333,2340,2349,2364,2368,2369,2377,2385,2393,2397,2402,2404,2406,2412,2423,2424,2431,2432,2438,2441,2446,2458,2460,2468,2472,2474,2479,2491,2495,2498,2500] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/simpleRollback b/cardano-chain-gen/test/testfiles/fingerprint/simpleRollback index cc3900548..ee475e707 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/simpleRollback +++ b/cardano-chain-gen/test/testfiles/fingerprint/simpleRollback @@ -1 +1 @@ -[1,8,9] \ No newline at end of file +[28,33,34] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/simpleScript b/cardano-chain-gen/test/testfiles/fingerprint/simpleScript index 0860d13b3..cdd22a6e6 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/simpleScript +++ b/cardano-chain-gen/test/testfiles/fingerprint/simpleScript @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/singleMIRCertMultiOut b/cardano-chain-gen/test/testfiles/fingerprint/singleMIRCertMultiOut index c971dcddd..0970123e7 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/singleMIRCertMultiOut +++ b/cardano-chain-gen/test/testfiles/fingerprint/singleMIRCertMultiOut @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967,971,980,981,983,993,997,1000] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1001] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/spendCollateralOutput b/cardano-chain-gen/test/testfiles/fingerprint/spendCollateralOutput index 5a012a1c3..7d4ea0996 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/spendCollateralOutput +++ b/cardano-chain-gen/test/testfiles/fingerprint/spendCollateralOutput @@ -1 +1 @@ -[1,3,4,7] \ No newline at end of file +[5,11,15,21] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/spendCollateralOutputRollback b/cardano-chain-gen/test/testfiles/fingerprint/spendCollateralOutputRollback index 2a6c826e1..fb668b604 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/spendCollateralOutputRollback +++ b/cardano-chain-gen/test/testfiles/fingerprint/spendCollateralOutputRollback @@ -1 +1 @@ -[1,3,4,7,3,4,7,8] \ No newline at end of file +[5,11,15,21,11,15,21,22] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/spendCollateralOutputSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/spendCollateralOutputSameBlock index 96aa67e91..e51937fbf 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/spendCollateralOutputSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/spendCollateralOutputSameBlock @@ -1 +1 @@ -[1,3] \ No newline at end of file +[5,11] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/spendRefScript b/cardano-chain-gen/test/testfiles/fingerprint/spendRefScript index cc3900548..8721dbe78 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/spendRefScript +++ b/cardano-chain-gen/test/testfiles/fingerprint/spendRefScript @@ -1 +1 @@ -[1,8,9] \ No newline at end of file +[5,15,21] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/spendRefScriptSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/spendRefScriptSameBlock index 76578b168..237dc50a9 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/spendRefScriptSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/spendRefScriptSameBlock @@ -1 +1 @@ -[1,8] \ No newline at end of file +[5,15] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/stakeAddressPtr b/cardano-chain-gen/test/testfiles/fingerprint/stakeAddressPtr index 96aa67e91..e51937fbf 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/stakeAddressPtr +++ b/cardano-chain-gen/test/testfiles/fingerprint/stakeAddressPtr @@ -1 +1 @@ -[1,3] \ No newline at end of file +[5,11] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/stakeAddressPtrDereg b/cardano-chain-gen/test/testfiles/fingerprint/stakeAddressPtrDereg index 6e93ee7ce..874ad16dc 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/stakeAddressPtrDereg +++ b/cardano-chain-gen/test/testfiles/fingerprint/stakeAddressPtrDereg @@ -1 +1 @@ -[1,3,4] \ No newline at end of file +[5,11,15] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/stakeAddressPtrUseBefore b/cardano-chain-gen/test/testfiles/fingerprint/stakeAddressPtrUseBefore index 6e93ee7ce..874ad16dc 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/stakeAddressPtrUseBefore +++ b/cardano-chain-gen/test/testfiles/fingerprint/stakeAddressPtrUseBefore @@ -1 +1 @@ -[1,3,4] \ No newline at end of file +[5,11,15] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/stakeAddressRollback b/cardano-chain-gen/test/testfiles/fingerprint/stakeAddressRollback index f0411f00e..7e384d74c 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/stakeAddressRollback +++ b/cardano-chain-gen/test/testfiles/fingerprint/stakeAddressRollback @@ -1 +1 @@ -[1,3,3,4] \ No newline at end of file +[5,11,11,15] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/stakeDistGenesis b/cardano-chain-gen/test/testfiles/fingerprint/stakeDistGenesis index 8f9837354..846f97f45 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/stakeDistGenesis +++ b/cardano-chain-gen/test/testfiles/fingerprint/stakeDistGenesis @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/supplyScriptsTwoWays b/cardano-chain-gen/test/testfiles/fingerprint/supplyScriptsTwoWays index 6e93ee7ce..874ad16dc 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/supplyScriptsTwoWays +++ b/cardano-chain-gen/test/testfiles/fingerprint/supplyScriptsTwoWays @@ -1 +1 @@ -[1,3,4] \ No newline at end of file +[5,11,15] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/supplyScriptsTwoWaysSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/supplyScriptsTwoWaysSameBlock index 96aa67e91..e51937fbf 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/supplyScriptsTwoWaysSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/supplyScriptsTwoWaysSameBlock @@ -1 +1 @@ -[1,3] \ No newline at end of file +[5,11] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/swapMultiAssets b/cardano-chain-gen/test/testfiles/fingerprint/swapMultiAssets index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/swapMultiAssets +++ b/cardano-chain-gen/test/testfiles/fingerprint/swapMultiAssets @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/unlockDatumOutput b/cardano-chain-gen/test/testfiles/fingerprint/unlockDatumOutput index cc3900548..8721dbe78 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/unlockDatumOutput +++ b/cardano-chain-gen/test/testfiles/fingerprint/unlockDatumOutput @@ -1 +1 @@ -[1,8,9] \ No newline at end of file +[5,15,21] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/unlockDatumOutputSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/unlockDatumOutputSameBlock index 76578b168..237dc50a9 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/unlockDatumOutputSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/unlockDatumOutputSameBlock @@ -1 +1 @@ -[1,8] \ No newline at end of file +[5,15] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/unlockScriptSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/unlockScriptSameBlock index 96aa67e91..e51937fbf 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/unlockScriptSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/unlockScriptSameBlock @@ -1 +1 @@ -[1,3] \ No newline at end of file +[5,11] \ No newline at end of file From 49e8ca0ef04a3a75ffb92cb9502b6d175015ad22 Mon Sep 17 00:00:00 2001 From: Sean D Gillespie Date: Wed, 10 Jan 2024 13:08:39 -0500 Subject: [PATCH 5/6] test(cardano-chain-gen): Add genDelegs to Conway config --- .../test/testfiles/config-conway/genesis.json | 13 +++++++++++-- .../test/testfiles/fingerprint/conwayAddSimple | 2 +- .../test/testfiles/fingerprint/conwayAddSimpleChain | 2 +- .../test/testfiles/fingerprint/conwayAddSimpleTx | 2 +- .../test/testfiles/fingerprint/conwayBigChain | 2 +- .../fingerprint/conwayCLACheckEpochDisabledArg | 2 +- .../testfiles/fingerprint/conwayCLANoPruneSameBlock | 2 +- .../test/testfiles/fingerprint/conwayCLAPrune | 2 +- .../testfiles/fingerprint/conwayCLAPruneAndRollBack | 2 +- .../fingerprint/conwayCLAPruneCorrectAmount | 2 +- .../testfiles/fingerprint/conwayCLAPruneSameBlock | 2 +- .../fingerprint/conwayCLAPruneSimpleRollback | 2 +- .../test/testfiles/fingerprint/conwayCLASimple | 2 +- .../testfiles/fingerprint/conwayConsumeSameBlock | 2 +- .../testfiles/fingerprint/conwayDelegations2000 | 2 +- .../testfiles/fingerprint/conwayDelegations2001 | 2 +- .../testfiles/fingerprint/conwayDelegations8000 | 2 +- .../testfiles/fingerprint/conwayDelegationsMany | 2 +- .../fingerprint/conwayDelegationsManyNotDense | 2 +- .../fingerprint/conwayDeregistrationScriptTx | 2 +- .../fingerprint/conwayDeregistrationsScriptTx' | 2 +- .../fingerprint/conwayDeregistrationsScriptTx'' | 2 +- .../fingerprint/conwayDeregistrationsScriptTxs | 2 +- .../test/testfiles/fingerprint/conwayDoubleRollback | 2 +- .../test/testfiles/fingerprint/conwayFailedScript | 2 +- .../testfiles/fingerprint/conwayFailedScriptFees | 2 +- .../fingerprint/conwayFailedScriptSameBlock | 2 +- .../test/testfiles/fingerprint/conwayForgeBlocks | 2 +- .../test/testfiles/fingerprint/conwayForkParam | 2 +- .../testfiles/fingerprint/conwayInlineDatumCBOR | 2 +- .../test/testfiles/fingerprint/conwayLazyRollback | 2 +- .../testfiles/fingerprint/conwayLazyRollbackRestart | 2 +- .../test/testfiles/fingerprint/conwayMintMultiAsset | 2 +- .../testfiles/fingerprint/conwayMintMultiAssets | 2 +- .../testfiles/fingerprint/conwayMultipleScripts | 2 +- .../fingerprint/conwayMultipleScriptsFailed | 2 +- .../conwayMultipleScriptsFailedSameBlock | 2 +- .../fingerprint/conwayMultipleScriptsRollback | 2 +- .../fingerprint/conwayMultipleScriptsSameBlock | 2 +- .../test/testfiles/fingerprint/conwayNodeRestart | 2 +- .../testfiles/fingerprint/conwayNodeRestartBoundary | 2 +- .../fingerprint/conwayNonexistentPoolQuery | 2 +- .../test/testfiles/fingerprint/conwayPoolDeReg | 2 +- .../test/testfiles/fingerprint/conwayPoolDeRegMany | 2 +- .../test/testfiles/fingerprint/conwayPoolReg | 2 +- .../testfiles/fingerprint/conwayPruneOnFullRollback | 2 +- .../test/testfiles/fingerprint/conwayRefScript | 2 +- .../testfiles/fingerprint/conwayReferenceDelegation | 2 +- .../fingerprint/conwayReferenceInputUnspend | 2 +- .../fingerprint/conwayReferenceMintingScript | 2 +- .../fingerprint/conwayRegistrationScriptTx | 2 +- .../fingerprint/conwayRegistrationsSameBlock | 2 +- .../testfiles/fingerprint/conwayRegistrationsSameTx | 2 +- .../testfiles/fingerprint/conwayRestartAndRollback | 2 +- .../test/testfiles/fingerprint/conwayRestartDBSync | 2 +- .../testfiles/fingerprint/conwayRollbackBoundary | 2 +- .../fingerprint/conwayRollbackChangeTxOrder | 2 +- .../test/testfiles/fingerprint/conwayRollbackFullTx | 2 +- .../test/testfiles/fingerprint/conwaySimpleRewards | 2 +- .../test/testfiles/fingerprint/conwaySimpleRollback | 2 +- .../test/testfiles/fingerprint/conwaySimpleScript | 2 +- .../fingerprint/conwaySpendCollateralOtputRollback | 2 +- .../fingerprint/conwaySpendCollateralOutput | 2 +- .../fingerprint/conwaySpendRefScriptSameBlock | 2 +- .../conwaySpindCollateralOutputSameBlock | 2 +- .../testfiles/fingerprint/conwayStakeAddressPtr | 2 +- .../fingerprint/conwayStakeAddressPtrDereg | 2 +- .../fingerprint/conwayStakeAddressPtrUseBefore | 2 +- .../fingerprint/conwayStakeAddressRollback | 2 +- .../testfiles/fingerprint/conwayStakeDistGenesis | 2 +- .../testfiles/fingerprint/conwaySupplyScriptToWays | 2 +- .../fingerprint/conwaySupplyScriptsTwoWaysSameBlock | 2 +- .../testfiles/fingerprint/conwaySwapMultiAssets | 2 +- .../testfiles/fingerprint/conwayUnlockDatumOutput | 2 +- .../fingerprint/conwayUnlockDatumOutputSameBlock | 2 +- .../fingerprint/conwayUnlockScriptSameBlock | 2 +- 76 files changed, 86 insertions(+), 77 deletions(-) diff --git a/cardano-chain-gen/test/testfiles/config-conway/genesis.json b/cardano-chain-gen/test/testfiles/config-conway/genesis.json index 063b048fd..e25e401f6 100644 --- a/cardano-chain-gen/test/testfiles/config-conway/genesis.json +++ b/cardano-chain-gen/test/testfiles/config-conway/genesis.json @@ -2,7 +2,7 @@ "maxLovelaceSupply": 60000000, "securityParam": 10, "slotsPerKESPeriod": 129600, - "updateQuorum": 5, + "updateQuorum": 2, "activeSlotsCoeff": 0.2, "protocolParams": { "minUTxOValue": 0, @@ -43,7 +43,16 @@ }, "networkId": "Testnet", "maxKESEvolutions": 60, - "genDelegs": { }, + "genDelegs": { + "30c3083efd794227fde2351a04500349d1b467556c30e35d6794a501": { + "delegate": "3af50e522694318e8856d34021140817aa21d47ff62a4d0ddcba1924", + "vrf": "2846ed605f6629976ec92e9e65140c1cb3a95c563c996592c926a2ae7e5a461f" + }, + "471cc34983f6a2fd7b4018e3147532185d69a448d6570d46019e58e6": { + "delegate": "1683652d05e83e25eb648a9543db33cf8ff1f7a2af9129d3a901dd4a", + "vrf": "4df7c5a5b30469756bd09db60cbe9b0cf1b2447e0c41122d130768c179b7d166" + } + }, "slotLength": 1, "systemStart": "2021-11-18T20:22:02Z", "epochLength": 500, diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayAddSimple b/cardano-chain-gen/test/testfiles/fingerprint/conwayAddSimple index bace2a0be..65f2eb4db 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayAddSimple +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayAddSimple @@ -1 +1 @@ -[1] \ No newline at end of file +[28] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayAddSimpleChain b/cardano-chain-gen/test/testfiles/fingerprint/conwayAddSimpleChain index cc3900548..ee475e707 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayAddSimpleChain +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayAddSimpleChain @@ -1 +1 @@ -[1,8,9] \ No newline at end of file +[28,33,34] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayAddSimpleTx b/cardano-chain-gen/test/testfiles/fingerprint/conwayAddSimpleTx index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayAddSimpleTx +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayAddSimpleTx @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayBigChain b/cardano-chain-gen/test/testfiles/fingerprint/conwayBigChain index 328e50f56..a0ecd5454 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayBigChain +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayBigChain @@ -1 +1 @@ -[1,3,11,31,42,44,61,62,76,93,95,102,104,123,149,170,171,190,201,209,227,260,265,272,284,294,296,305,306,318,331,345,347,348,350,375,382,401,411,424,428,471,487,489,492,512,523,526,528,529,537,551,568,573,604,607,615,636,649,672,681,682,698,703,706,708,714,737,768,781,787,801,848,852,857,864,876,899,920,949,957,980,993,999,1041,1050,1061,1074,1076,1094,1109,1120,1126,1130,1136,1142,1168,1174,1182,1197,1200,1216,1221,1270,1298,1307,1327,1346,1347,1386,1407,1415,1434,1444,1479,1484,1504,1521,1580,1608,1611,1616,1653,1670,1686,1696,1709,1736,1742,1748,1800,1810,1823,1827,1831,1869,1877,1878,1894,1898,1941,1967,1971,1996,2006,2011,2026,2072,2090,2098,2108,2179,2204,2221,2222,2227,2249,2289,2316,2382,2384,2418,2419,2425,2438,2439,2463,2464,2470,2482,2483,2499,2518,2547,2571,2580,2591,2592,2597,2640,2656,2695,2702,2712,2717,2738,2739,2743,2763,2803,2807,2832,2869,2882,2940,3021,3036,3039,3043,3068,3071,3097,3099,3110,3146,3191] \ No newline at end of file +[28,42,43,52,62,82,92,106,109,133,161,162,171,195,196,197,206,208,216,222,272,275,282,347,382,392,393,398,414,424,446,448,465,478,485,499,500,506,508,509,513,514,515,518,539,548,566,577,584,589,602,613,626,644,661,664,668,677,725,729,736,746,749,757,773,774,784,810,813,819,828,849,852,866,876,880,886,895,900,924,930,952,964,971,981,987,989,1001,1005,1012,1025,1026,1041,1046,1060,1071,1076,1079,1101,1119,1140,1144,1166,1181,1191,1205,1212,1250,1260,1263,1265,1308,1346,1370,1398,1409,1433,1441,1457,1477,1511,1527,1603,1645,1652,1710,1714,1721,1773,1803,1816,1818,1843,1879,1896,1897,1914,1923,1926,1940,1950,1963,1968,1972,1999,2002,2009,2021,2030,2043,2050,2051,2057,2067,2092,2106,2128,2157,2170,2206,2224,2273,2319,2346,2382,2387,2392,2394,2397,2437,2443,2475,2511,2531,2547,2582,2609,2615,2632,2662,2666,2686,2699,2706,2741,2744,2748,2756,2773,2809,2849,2850,2853,2856,2862,2876,2914,2937,2958,2990,3053,3066,3084,3085,3086,3092] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayCLACheckEpochDisabledArg b/cardano-chain-gen/test/testfiles/fingerprint/conwayCLACheckEpochDisabledArg index 0dcb68766..e559dff63 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayCLACheckEpochDisabledArg +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayCLACheckEpochDisabledArg @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayCLANoPruneSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/conwayCLANoPruneSameBlock index 83f91252b..3961e46fb 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayCLANoPruneSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayCLANoPruneSameBlock @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,453] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,518] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayCLAPrune b/cardano-chain-gen/test/testfiles/fingerprint/conwayCLAPrune index d2f180ebe..d9b4e9721 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayCLAPrune +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayCLAPrune @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayCLAPruneAndRollBack b/cardano-chain-gen/test/testfiles/fingerprint/conwayCLAPruneAndRollBack index 16dd8eebd..7aa05f9e3 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayCLAPruneAndRollBack +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayCLAPruneAndRollBack @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1009,1011,1022,1025,1027,1033] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayCLAPruneCorrectAmount b/cardano-chain-gen/test/testfiles/fingerprint/conwayCLAPruneCorrectAmount index 8c3b4f1f6..3561957ee 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayCLAPruneCorrectAmount +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayCLAPruneCorrectAmount @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967,971,980,981,983,993,997,1007] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1012,1015,1023,1037,1038,1042,1049,1052,1054,1056,1067,1068,1069] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayCLAPruneSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/conwayCLAPruneSameBlock index ff0e20438..d4c70e765 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayCLAPruneSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayCLAPruneSameBlock @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,339] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,418] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayCLAPruneSimpleRollback b/cardano-chain-gen/test/testfiles/fingerprint/conwayCLAPruneSimpleRollback index 023f334d0..93fe0e31a 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayCLAPruneSimpleRollback +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayCLAPruneSimpleRollback @@ -1 +1 @@ -[1,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487] \ No newline at end of file +[28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,510,513,514,519,521,522,523,529,533,536,539,545,549] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayCLASimple b/cardano-chain-gen/test/testfiles/fingerprint/conwayCLASimple index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayCLASimple +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayCLASimple @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayConsumeSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/conwayConsumeSameBlock index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayConsumeSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayConsumeSameBlock @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayDelegations2000 b/cardano-chain-gen/test/testfiles/fingerprint/conwayDelegations2000 index 1ff865456..6f88174d4 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayDelegations2000 +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayDelegations2000 @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayDelegations2001 b/cardano-chain-gen/test/testfiles/fingerprint/conwayDelegations2001 index 1ff865456..6f88174d4 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayDelegations2001 +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayDelegations2001 @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayDelegations8000 b/cardano-chain-gen/test/testfiles/fingerprint/conwayDelegations8000 index 0f5285f79..dd6d31260 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayDelegations8000 +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayDelegations8000 @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967,971,980,981,983,993,997,1002,1004,1012,1020,1033,1035,1048,1049,1051,1052,1058,1060,1063,1065,1069] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1005,1007,1010,1011,1013,1015,1017,1023,1028,1053,1056,1057,1064,1072,1077] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayDelegationsMany b/cardano-chain-gen/test/testfiles/fingerprint/conwayDelegationsMany index 24b118f1b..45f77b123 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayDelegationsMany +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayDelegationsMany @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967,971,980,981,983,993,997,1001,1002,1006,1012,1013,1019,1022,1030,1033,1038,1042,1048,1049,1056,1060,1063,1067,1070,1075,1081,1082,1087,1091,1092,1095,1096,1102,1103,1109,1110,1122,1124,1128,1132,1136,1138,1139,1140,1149,1154,1167,1171,1173,1178,1187,1188,1192,1198,1213,1215,1220,1225,1227,1232,1246,1249,1258,1265,1267,1269,1272,1278,1296,1298,1305,1314,1315,1316,1319,1340,1347,1348,1353,1356,1362,1368,1370,1371,1375,1377,1381,1389,1390,1391,1393,1411,1413,1421,1425,1431,1436,1438,1439,1447,1453,1464,1465,1467,1468,1477,1493,1501,1504,1508,1512,1515,1518,1525,1528,1540,1552,1557,1560,1569,1571,1573,1580,1583,1586,1592,1597,1600,1613,1619,1622,1623,1630,1631,1632,1635,1636,1637,1638,1640,1645,1646,1647,1649,1659,1667,1675,1677,1682,1685,1686,1696,1711,1715,1717,1720,1735,1736,1738,1740,1748,1757,1759,1761,1765,1766,1768,1782,1786,1787,1792,1800,1801,1806,1810,1817,1820,1830,1836,1839,1841,1843,1844,1852,1855,1861,1872,1874,1877,1878,1880,1895,1899,1911,1916,1920,1926,1945,1955,1963,1964,1966,1967,1976,1983,1984,1986,1988,1989,1992,1994,1996,1998,2001,2003,2004,2007,2011,2013,2014,2022,2027,2039,2049,2051,2052,2061,2073,2076,2083,2084,2090,2093,2105,2117,2118,2119,2122,2123,2124,2131,2155,2156,2158,2162,2168,2170,2175,2190,2191,2192,2193,2194,2197,2209,2214,2217,2221,2223,2224,2226,2228,2234,2235,2243,2244,2256,2257,2258,2260,2270,2278,2281,2283,2295,2301,2302,2313,2315,2317,2322,2328,2331,2332,2333,2337,2339,2341,2347,2348,2352,2354,2360,2361,2373,2378,2386,2393,2396,2402,2403,2404,2420,2430,2431,2437,2447,2452,2460,2464,2469,2470,2477,2478,2491,2493,2497,2504,2507,2509,2513,2514,2516,2518,2523,2532,2534,2535,2548,2555,2563,2565,2570,2585,2589,2590,2595,2600,2606,2614,2615,2616,2623,2631,2643,2655,2662,2668,2671,2673,2676,2681,2683,2684,2686,2706,2707,2709,2714,2715,2717,2722,2723,2730,2735,2736,2740,2747,2749,2759,2774,2775,2785,2788,2790,2794,2795,2799,2800,2808,2813,2814,2828,2829,2831,2834,2840,2841,2842,2846,2848,2854,2860,2865,2867,2868,2878,2879,2881,2882,2887,2906,2921,2944,2945,2947,2951,2959,2965,2966,2967,2973,2986,3005,3022,3023,3026,3029,3038,3058,3059,3069,3070,3077,3080,3081] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1002,1005,1012,1019,1025,1036,1040,1048,1052,1055,1056,1060,1065,1070,1077,1080,1084,1089,1090,1093,1095,1097,1098,1109,1114,1119,1121,1122,1127,1132,1135,1138,1140,1144,1146,1150,1156,1157,1165,1168,1169,1170,1172,1173,1174,1175,1181,1193,1194,1195,1199,1204,1210,1213,1216,1223,1238,1246,1249,1251,1253,1255,1258,1268,1272,1276,1277,1281,1288,1291,1312,1324,1328,1329,1330,1338,1352,1355,1356,1359,1360,1364,1366,1367,1374,1383,1395,1397,1400,1403,1405,1410,1415,1416,1422,1435,1445,1448,1454,1456,1458,1463,1467,1471,1473,1479,1485,1486,1495,1503,1507,1525,1528,1536,1540,1542,1556,1561,1572,1580,1584,1585,1590,1591,1592,1610,1614,1618,1630,1638,1642,1644,1652,1658,1661,1662,1663,1664,1665,1668,1673,1676,1679,1688,1689,1693,1694,1696,1697,1704,1705,1707,1715,1716,1725,1727,1729,1731,1741,1742,1749,1751,1753,1756,1766,1768,1769,1771,1775,1777,1780,1782,1785,1791,1814,1820,1822,1824,1826,1836,1843,1847,1850,1851,1854,1858,1862,1864,1875,1884,1895,1896,1897,1899,1907,1915,1935,1939,1945,1948,1950,1959,1963,1964,1968,1981,1983,1990,1996,1998,1999,2008,2019,2022,2023,2029,2035,2046,2047,2052,2055,2061,2062,2066,2067,2084,2088,2091,2102,2103,2105,2114,2115,2121,2126,2130,2133,2139,2141,2143,2145,2149,2160,2161,2162,2166,2173,2187,2195,2198,2199,2202,2213,2217,2220,2227,2232,2240,2242,2255,2263,2264,2266,2273,2274,2277,2280,2292,2297,2305,2310,2317,2319,2323,2330,2332,2351,2354,2355,2359,2361,2370,2372,2379,2388,2404,2405,2410,2411,2419,2430,2433,2436,2443,2455,2468,2480,2484,2487,2508,2529,2530,2553,2554,2555,2567,2569,2570,2572,2573,2574,2578,2581,2584,2595,2597,2602,2613,2620,2629,2635,2639,2651,2656,2658,2673,2679,2683,2689,2693,2694,2698,2702,2704,2708,2711,2718,2722,2724,2728,2731,2735,2740,2744,2751,2768,2769,2772,2780,2781,2789,2793,2802,2806,2808,2812,2818,2828,2836,2838,2839,2842,2844,2854,2858,2862,2865,2866,2867,2877,2879,2883,2886,2893,2897,2911,2915,2923,2951,2955,2958,2963,2967,2972,2976,2982,2986,2989,2992,2997,2998,3002,3009,3011,3013,3019,3020,3030,3032,3043,3050,3073,3091,3106] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayDelegationsManyNotDense b/cardano-chain-gen/test/testfiles/fingerprint/conwayDelegationsManyNotDense index 74ea25a17..86bd82f85 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayDelegationsManyNotDense +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayDelegationsManyNotDense @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967,971,980,981,983,993,997,1001,1002,1006,1012,1013,1019,1022,1030,1033,1038,1042,1048,1049,1056,1060,1063,1067,1070,1075,1081,1082,1087,1091,1092,1095,1096,1102,1103,1109,1110,1122,1124,1128,1132,1136,1138,1139,1140,1149,1154,1167,1171,1173,1178,1187,1188,1192,1198,1213,1215,1220,1225,1227,1232,1246,1249,1258,1265,1267,1269,1272,1278,1296,1298,1305,1314,1315,1316,1319,1340,1347,1348,1353,1356,1362,1368,1370,1371,1375,1377,1381,1389,1390,1391,1393,1411,1413,1421,1425,1431,1436,1438,1439,1447,1453,1464,1465,1467,1468,1477,1493,1501,1504,1508,1512,1515,1518,1525,1528,1540,1552,1557,1560,1569,1571,1573,1580,1583,1586,1592,1597,1600,1613,1619,1622,1623,1630,1631,1632,1635,1636,1637,1638,1640,1645,1646,1647,1649,1659,1667,1675,1677,1682,1685,1686,1696,1711,1715,1717,1720,1735,1736,1738,1740,1748,1757,1759,1761,1765,1766,1768,1782,1786,1787,1792,1800,1801,1806,1810,1817,1820,1830,1836,1839,1841,1843,1844,1852,1855,1861,1872,1874,1877,1878,1880,1895,1899,1911,1916,1920,1926,1945,1955,1963,1964,1966,1967,1976,1983,1984,1986,1988,1989,1992,1994,1996,1998,2001,2003,2004,2007,2011,2013,2014,2022,2027,2039,2049,2051,2052,2061,2073,2076,2083,2084,2090,2093,2105,2117,2118,2119,2122,2123,2124,2131,2155,2156,2158,2162,2168,2170,2175,2190,2191,2192,2193,2194,2197,2209,2214,2217,2221,2223,2224,2226,2228,2234,2235,2243,2244,2256,2257,2258,2260,2270,2278,2281,2283,2295,2301,2302,2313,2315,2317,2322,2328,2331,2332,2333,2337,2339,2341,2347,2348,2352,2354,2360,2361,2373,2378,2386,2393,2396,2402,2403,2404,2420,2430,2431,2437,2447,2452,2460,2464,2469,2470,2477,2478,2491,2493,2497,2504,2507,2509,2513,2514,2516,2518,2523,2532,2534,2535,2548,2555,2563,2565,2570,2585,2589,2590,2595,2600,2606,2614,2615,2616,2623,2631,2643,2655,2662,2668,2671,2673,2676,2681,2683,2684,2686,2706,2707,2709,2714,2715,2717,2722,2723,2730,2735,2736,2740,2747,2749,2759,2774,2775,2785,2788,2790,2794,2795,2799,2800,2808,2813,2814,2828,2829,2831,2834,2840,2841,2842,2846,2848,2854,2860,2865,2867,2868,2878,2879,2881,2882,2887,2906,2921,2944,2945,2947,2951,2959,2965,2966,2967,2973,2986,3005,3022,3023,3026,3029,3038,3058,3059,3069,3070,3077,3094,3113,3135,3152,3168,3185,3207,3223,3241,3259,3275,3298,3314,3330,3347,3364,3380,3404,3426,3442,3458,3480,3502,3518,3539,3555,3571,3590,3607,3627,3649,3666,3687,3710,3726,3746,3762,3783,3800,3818] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1002,1005,1012,1019,1025,1036,1040,1048,1052,1055,1056,1060,1065,1070,1077,1080,1084,1089,1090,1093,1095,1097,1098,1109,1114,1119,1121,1122,1127,1132,1135,1138,1140,1144,1146,1150,1156,1157,1165,1168,1169,1170,1172,1173,1174,1175,1181,1193,1194,1195,1199,1204,1210,1213,1216,1223,1238,1246,1249,1251,1253,1255,1258,1268,1272,1276,1277,1281,1288,1291,1312,1324,1328,1329,1330,1338,1352,1355,1356,1359,1360,1364,1366,1367,1374,1383,1395,1397,1400,1403,1405,1410,1415,1416,1422,1435,1445,1448,1454,1456,1458,1463,1467,1471,1473,1479,1485,1486,1495,1503,1507,1525,1528,1536,1540,1542,1556,1561,1572,1580,1584,1585,1590,1591,1592,1610,1614,1618,1630,1638,1642,1644,1652,1658,1661,1662,1663,1664,1665,1668,1673,1676,1679,1688,1689,1693,1694,1696,1697,1704,1705,1707,1715,1716,1725,1727,1729,1731,1741,1742,1749,1751,1753,1756,1766,1768,1769,1771,1775,1777,1780,1782,1785,1791,1814,1820,1822,1824,1826,1836,1843,1847,1850,1851,1854,1858,1862,1864,1875,1884,1895,1896,1897,1899,1907,1915,1935,1939,1945,1948,1950,1959,1963,1964,1968,1981,1983,1990,1996,1998,1999,2008,2019,2022,2023,2029,2035,2046,2047,2052,2055,2061,2062,2066,2067,2084,2088,2091,2102,2103,2105,2114,2115,2121,2126,2130,2133,2139,2141,2143,2145,2149,2160,2161,2162,2166,2173,2187,2195,2198,2199,2202,2213,2217,2220,2227,2232,2240,2242,2255,2263,2264,2266,2273,2274,2277,2280,2292,2297,2305,2310,2317,2319,2323,2330,2332,2351,2354,2355,2359,2361,2370,2372,2379,2388,2404,2405,2410,2411,2419,2430,2433,2436,2443,2455,2468,2480,2484,2487,2508,2529,2530,2553,2554,2555,2567,2569,2570,2572,2573,2574,2578,2581,2584,2595,2597,2602,2613,2620,2629,2635,2639,2651,2656,2658,2673,2679,2683,2689,2693,2694,2698,2702,2704,2708,2711,2718,2722,2724,2728,2731,2735,2740,2744,2751,2768,2769,2772,2780,2781,2789,2793,2802,2806,2808,2812,2818,2828,2836,2838,2839,2842,2844,2854,2858,2862,2865,2866,2867,2877,2879,2883,2886,2893,2897,2911,2915,2923,2951,2955,2958,2963,2967,2972,2976,2982,2986,2989,2992,2997,2998,3002,3009,3011,3013,3019,3020,3030,3032,3043,3050,3073,3091,3118,3136,3157,3189,3205,3222,3240,3273,3294,3316,3332,3349,3365,3389,3405,3428,3447,3464,3481,3499,3517,3535,3552,3578,3598,3615,3634,3650,3666,3682,3702,3727,3745,3769,3793,3809,3828,3845,3861] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayDeregistrationScriptTx b/cardano-chain-gen/test/testfiles/fingerprint/conwayDeregistrationScriptTx index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayDeregistrationScriptTx +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayDeregistrationScriptTx @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayDeregistrationsScriptTx' b/cardano-chain-gen/test/testfiles/fingerprint/conwayDeregistrationsScriptTx' index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayDeregistrationsScriptTx' +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayDeregistrationsScriptTx' @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayDeregistrationsScriptTx'' b/cardano-chain-gen/test/testfiles/fingerprint/conwayDeregistrationsScriptTx'' index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayDeregistrationsScriptTx'' +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayDeregistrationsScriptTx'' @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayDeregistrationsScriptTxs b/cardano-chain-gen/test/testfiles/fingerprint/conwayDeregistrationsScriptTxs index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayDeregistrationsScriptTxs +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayDeregistrationsScriptTxs @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayDoubleRollback b/cardano-chain-gen/test/testfiles/fingerprint/conwayDoubleRollback index d3c4fcf02..cc522d75d 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayDoubleRollback +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayDoubleRollback @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967,971,980,981,983,993,997,1002,1005,1006,1012,1015,1017,1023,1025,1027,1036,1041,1044,1054,1055,1056,1061,1069,1071,1074,1078,1082,1091,1099,1104,1110,1112,1125,1126,1130,1131,1152,1153,1157,1159,1169,1180,1182,1191,1194,1199,1203,1215,1221,1223,1242,1244,1245,1246,1248,1249,1251,1254,1262,1266,1271,1272,1273,1281,1289,1291,1292,1297,1300,1301,1305,1306,1316,1317,1322,1325,1338,1340,1345,1347,1351,1361,1364,1365,1388,1398,1399,1400,1404,1418,1432,1440,1442,1443,1445,1451,1452,1455,1457,1461,1469,1479,1485,1494,1495,1500,1505,1508,1509,1510,1513,1517,1521,1523,1524,1525,1527,1532,1545,1546,1554,1555,1558,1559,1568,1570,1574,1577,1584,1595,1599,1601,1603,1606,1609,1611,1615,1618,1620,1624,1625,1629,1637,1638,1639,1644,1645,1215,1221,1223,1242,1244,1245,1246,1248,1249,1251,1254,1262,1266,1271,1272,1273,1281,1289,1291,1292,1297,1300,1301,1305,1306,1316,1317,1322,1325,1338,1340,1345,1347,1351,1361,1364,1365,1388,1398,1399,1400,1404,1418,1432,1440,1442,1443,1445,1451,1452,1455,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1009,1011,1022,1025,1027,1033,1035,1036,1037,1042,1043,1045,1052,1065,1077,1082,1088,1102,1103,1105,1106,1109,1128,1137,1143,1156,1167,1169,1172,1177,1178,1180,1189,1193,1197,1198,1201,1208,1212,1214,1217,1218,1223,1225,1229,1232,1233,1246,1248,1253,1256,1267,1278,1284,1289,1290,1305,1307,1308,1312,1316,1326,1329,1334,1349,1361,1366,1368,1369,1372,1377,1382,1383,1386,1387,1390,1392,1401,1406,1409,1412,1413,1416,1419,1421,1423,1431,1433,1438,1442,1453,1466,1479,1485,1491,1493,1495,1502,1507,1510,1522,1524,1528,1537,1540,1542,1556,1561,1563,1568,1573,1575,1580,1588,1591,1595,1600,1622,1623,1625,1629,1633,1634,1637,1639,1640,1647,1651,1653,1659,1660,1671,1672,1675,1682,1698,1702,1707,1713,1714,1724,1728,1732,1736,1740,1741,1744,1751,1753,1754,1757,1760,1765,1284,1289,1290,1305,1307,1308,1312,1316,1326,1329,1334,1349,1361,1366,1368,1369,1372,1377,1382,1383,1386,1387,1390,1392,1401,1406,1409,1412,1413,1416,1419,1421,1423,1431,1433,1438,1442,1453,1466,1479,1485,1491,1493,1495,1502,1507,1510,1522,1524,1528,1537,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1009,1011,1022,1025] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayFailedScript b/cardano-chain-gen/test/testfiles/fingerprint/conwayFailedScript index f996059dd..5945d5d33 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayFailedScript +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayFailedScript @@ -1 +1 @@ -[8,9] \ No newline at end of file +[15,21] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayFailedScriptFees b/cardano-chain-gen/test/testfiles/fingerprint/conwayFailedScriptFees index f996059dd..5945d5d33 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayFailedScriptFees +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayFailedScriptFees @@ -1 +1 @@ -[8,9] \ No newline at end of file +[15,21] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayFailedScriptSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/conwayFailedScriptSameBlock index 96aa67e91..e51937fbf 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayFailedScriptSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayFailedScriptSameBlock @@ -1 +1 @@ -[1,3] \ No newline at end of file +[5,11] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayForgeBlocks b/cardano-chain-gen/test/testfiles/fingerprint/conwayForgeBlocks index cc3900548..ee475e707 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayForgeBlocks +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayForgeBlocks @@ -1 +1 @@ -[1,8,9] \ No newline at end of file +[28,33,34] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayForkParam b/cardano-chain-gen/test/testfiles/fingerprint/conwayForkParam index 53a7dd1a5..cec43665a 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayForkParam +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayForkParam @@ -1 +1 @@ -[2,7,10,12,19,24,26,27,35,37,39,61,70,74,75,84,99,101,103,112,120,125,136,137,138,141,146,151,166,180,188,205,207,215,216,226,234,235,246,253,261,272,275,279,284,285,287,299,307,311,314,315,318,321,341,345,353,355,361,362,366,367,372,377,379,389,391,393,396,401,403,410,427,435,455,460,465,470,484,486,487,488,497,499,506,510,511,512,516,519,520,523,530,532,537,540,550,558,559,571,579,581,583,600,604,605,607,610,613,621,630,631,651,658,665,669,678,679,687,692,693,696,698,699,712,725,728,742,758,765,774,775,778,787,789,792,794,796,801,804,808,815,816,818,821,828,837,841,842,851,853,863,866,873,880,883,885,886,896,901,903,904,909,911,914,915,918,920,927,931,932,938,949,956,966,976,981,983,988,994,996,999,1018,1019] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1013,1021] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayInlineDatumCBOR b/cardano-chain-gen/test/testfiles/fingerprint/conwayInlineDatumCBOR index 76578b168..237dc50a9 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayInlineDatumCBOR +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayInlineDatumCBOR @@ -1 +1 @@ -[1,8] \ No newline at end of file +[5,15] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayLazyRollback b/cardano-chain-gen/test/testfiles/fingerprint/conwayLazyRollback index b3798c4d9..89ed79c70 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayLazyRollback +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayLazyRollback @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967,971,980,981,983,993,997,1002,1005,1006,1012,1015,1017,1023,1025,1027,1036,1041,1044,1054,1055,1056,1061,1069,1071,1074,1078,1082,1091,1099,1104,1110,1112,1125,1126,1130,1131,1152,1153,1157,1159,1169,1180,1182,1191,1194,1199,1203,1215,1221,1223,1242,1244,1245,1246,1248,1249,1251,1254,1262,1266,1271,1272,1273,1281,1289,1291,1292,955,959,967,971,980,981,983,993,997,1002,1005,1006,1012,1015,1017,1023,1025,1027,1036,1041,1044,1054,1055,1056,1061,1069,1071,1074,1078,1082,1091,1099,1104,1110,1112,1125,1126,1130,1131,1152,1153] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1009,1011,1022,1025,1027,1033,1035,1036,1037,1042,1043,1045,1052,1065,1077,1082,1088,1102,1103,1105,1106,1109,1128,1137,1143,1156,1167,1169,1172,1177,1178,1180,1189,1193,1197,1198,1201,1208,1212,1214,1217,1218,1223,1225,1229,1232,1233,1246,1248,1253,1256,1267,1278,1284,1289,1290,1305,1307,1308,1312,1316,1326,1329,1334,1349,1361,1366,1368,1369,1372,1377,1382,1383,1025,1027,1033,1035,1036,1037,1042,1043,1045,1052,1065,1077,1082,1088,1102,1103,1105,1106,1109,1128,1137,1143,1156,1167,1169,1172,1177,1178,1180,1189,1193,1197,1198,1201,1208,1212,1214,1217,1218,1223,1225] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayLazyRollbackRestart b/cardano-chain-gen/test/testfiles/fingerprint/conwayLazyRollbackRestart index d7d7cb4f1..e2f3c1d26 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayLazyRollbackRestart +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayLazyRollbackRestart @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967,971,980,981,983,993,997,1002,1005,1006,1012,1015,1017,1023,1025,1027,1036,1041,1044,1054,1055,1056,1061,1069,1071,1074,1078,1082,1091,1099,1104,1110,1112,1125,1126,1130,1131,1152,1153,1157,1159,1169,1180,1182,1191,1194,1199,1203,1215,1221,1223,1242,1244,1245,1246,1248,1249,1251,1254,1262,1266,1271,1272,1273,1281,1289,1291,1292,1297,1300,1301,1305,1306,1316,1317,1322,1325,1338,1044,1054,1055,1056,1061,1069,1071,1074,1078,1082,1091,1099,1104,1110,1112,1125,1126,1130,1131,1152,1153,1157,1159,1169,1180,1182,1191,1194,1199,1203,1215] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1009,1011,1022,1025,1027,1033,1035,1036,1037,1042,1043,1045,1052,1065,1077,1082,1088,1102,1103,1105,1106,1109,1128,1137,1143,1156,1167,1169,1172,1177,1178,1180,1189,1193,1197,1198,1201,1208,1212,1214,1217,1218,1223,1225,1229,1232,1233,1246,1248,1253,1256,1267,1278,1284,1289,1290,1305,1307,1308,1312,1316,1326,1329,1334,1349,1361,1366,1368,1369,1372,1377,1382,1383,1386,1387,1390,1392,1401,1406,1409,1412,1413,1416,1137,1143,1156,1167,1169,1172,1177,1178,1180,1189,1193,1197,1198,1201,1208,1212,1214,1217,1218,1223,1225,1229,1232,1233,1246,1248,1253,1256,1267,1278,1284] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayMintMultiAsset b/cardano-chain-gen/test/testfiles/fingerprint/conwayMintMultiAsset index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayMintMultiAsset +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayMintMultiAsset @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayMintMultiAssets b/cardano-chain-gen/test/testfiles/fingerprint/conwayMintMultiAssets index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayMintMultiAssets +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayMintMultiAssets @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayMultipleScripts b/cardano-chain-gen/test/testfiles/fingerprint/conwayMultipleScripts index 6479ecbfa..0846df1b9 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayMultipleScripts +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayMultipleScripts @@ -1 +1 @@ -[8,14] \ No newline at end of file +[15,23] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayMultipleScriptsFailed b/cardano-chain-gen/test/testfiles/fingerprint/conwayMultipleScriptsFailed index 6479ecbfa..0846df1b9 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayMultipleScriptsFailed +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayMultipleScriptsFailed @@ -1 +1 @@ -[8,14] \ No newline at end of file +[15,23] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayMultipleScriptsFailedSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/conwayMultipleScriptsFailedSameBlock index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayMultipleScriptsFailedSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayMultipleScriptsFailedSameBlock @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayMultipleScriptsRollback b/cardano-chain-gen/test/testfiles/fingerprint/conwayMultipleScriptsRollback index 935bb7b24..9a1a79291 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayMultipleScriptsRollback +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayMultipleScriptsRollback @@ -1 +1 @@ -[8,14,1,8,14] \ No newline at end of file +[15,23,5,15,23] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayMultipleScriptsSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/conwayMultipleScriptsSameBlock index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayMultipleScriptsSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayMultipleScriptsSameBlock @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayNodeRestart b/cardano-chain-gen/test/testfiles/fingerprint/conwayNodeRestart index d56c4ced0..32ffe96b7 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayNodeRestart +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayNodeRestart @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayNodeRestartBoundary b/cardano-chain-gen/test/testfiles/fingerprint/conwayNodeRestartBoundary index ce0d9fd10..19571d07b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayNodeRestartBoundary +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayNodeRestartBoundary @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayNonexistentPoolQuery b/cardano-chain-gen/test/testfiles/fingerprint/conwayNonexistentPoolQuery index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayNonexistentPoolQuery +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayNonexistentPoolQuery @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayPoolDeReg b/cardano-chain-gen/test/testfiles/fingerprint/conwayPoolDeReg index 8f9837354..846f97f45 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayPoolDeReg +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayPoolDeReg @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayPoolDeRegMany b/cardano-chain-gen/test/testfiles/fingerprint/conwayPoolDeRegMany index 8f9837354..846f97f45 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayPoolDeRegMany +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayPoolDeRegMany @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayPoolReg b/cardano-chain-gen/test/testfiles/fingerprint/conwayPoolReg index 96aa67e91..e51937fbf 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayPoolReg +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayPoolReg @@ -1 +1 @@ -[1,3] \ No newline at end of file +[5,11] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayPruneOnFullRollback b/cardano-chain-gen/test/testfiles/fingerprint/conwayPruneOnFullRollback index 98249ed2f..b1ccb125b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayPruneOnFullRollback +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayPruneOnFullRollback @@ -1 +1 @@ -[1,3,3] \ No newline at end of file +[5,11,11] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayRefScript b/cardano-chain-gen/test/testfiles/fingerprint/conwayRefScript index cc3900548..8721dbe78 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayRefScript +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayRefScript @@ -1 +1 @@ -[1,8,9] \ No newline at end of file +[5,15,21] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayReferenceDelegation b/cardano-chain-gen/test/testfiles/fingerprint/conwayReferenceDelegation index 96aa67e91..e51937fbf 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayReferenceDelegation +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayReferenceDelegation @@ -1 +1 @@ -[1,3] \ No newline at end of file +[5,11] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayReferenceInputUnspend b/cardano-chain-gen/test/testfiles/fingerprint/conwayReferenceInputUnspend index 96aa67e91..e51937fbf 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayReferenceInputUnspend +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayReferenceInputUnspend @@ -1 +1 @@ -[1,3] \ No newline at end of file +[5,11] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayReferenceMintingScript b/cardano-chain-gen/test/testfiles/fingerprint/conwayReferenceMintingScript index 96aa67e91..e51937fbf 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayReferenceMintingScript +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayReferenceMintingScript @@ -1 +1 @@ -[1,3] \ No newline at end of file +[5,11] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayRegistrationScriptTx b/cardano-chain-gen/test/testfiles/fingerprint/conwayRegistrationScriptTx index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayRegistrationScriptTx +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayRegistrationScriptTx @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayRegistrationsSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/conwayRegistrationsSameBlock index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayRegistrationsSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayRegistrationsSameBlock @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayRegistrationsSameTx b/cardano-chain-gen/test/testfiles/fingerprint/conwayRegistrationsSameTx index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayRegistrationsSameTx +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayRegistrationsSameTx @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayRestartAndRollback b/cardano-chain-gen/test/testfiles/fingerprint/conwayRestartAndRollback index c13a63163..20a5c59ac 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayRestartAndRollback +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayRestartAndRollback @@ -1 +1 @@ -[1,3,11,31,42,44,61,62,76,93,95,102,104,123,149,170,171,190,201,209,227,260,265,272,284,294,296,305,306,318,331,345,347,348,350,375,382,401,411,424,428,471,487,489,492,512,523,526,528,529,537,551,568,573,604,607,615,636,649,672,681,682,698,703,706,708,714,737,768,781,787,801,848,852,857,864,876,899,920,949,957,980,993,999,1041,1050,1061,1074,1076,1094,1109,1120,1126,1130,1136,1142,1168,1174,1182,1197,1200,1209,1229,1244,1246,1253,1260,1267,1279,1281,1282,1284,1297,1315,1334,1342,1353,1361,1370,1378,1394,1399,1401,1402,1405,1418,1448,1449,1458,1464,1466,1503,1514,1517,1542,1550,1558,1562,1570,1578,1579,1585,1588,1601,1608,1640,1645,1646,1647,1670,1717,1743,1748,1767,1790,1798,1802,1804,1809,1810,1816,1824,1838,1839,1847,1902,1903,1906,1911,1936,1938,1939,1948,1962,1989,2008,2059,2070,2077,2081,2110,2115,2126,2133,2136,2149,2175,2182,2230,2258,2261,2304,2330,2336,2340,2350,2377,2378,2391,2402,2403,2411,2434,2448,2458,2465] \ No newline at end of file +[28,42,43,52,62,82,92,106,109,133,161,162,171,195,196,197,206,208,216,222,272,275,282,347,382,392,393,398,414,424,446,448,465,478,485,499,500,506,508,509,513,514,515,518,539,548,566,577,584,589,602,613,626,644,661,664,668,677,725,729,736,746,749,757,773,774,784,810,813,819,828,849,852,866,876,880,886,895,900,924,930,952,964,971,981,987,989,1001,1005,1012,1025,1026,1041,1046,1060,1071,1076,1079,1101,1119,1140,1159,1160,1168,1173,1175,1207,1221,1258,1268,1283,1287,1343,1346,1363,1366,1369,1371,1372,1373,1379,1390,1394,1402,1419,1423,1447,1451,1464,1466,1475,1485,1491,1493,1499,1516,1521,1538,1544,1560,1561,1568,1569,1573,1588,1596,1607,1666,1672,1682,1697,1734,1751,1764,1766,1767,1798,1809,1837,1842,1863,1870,1872,1875,1887,1888,1892,1905,1925,1931,1933,1934,1939,1944,1946,1947,1948,1962,1973,1975,1977,1978,1984,1990,1995,2026,2039,2063,2072,2074,2085,2086,2093,2120,2133,2164,2182,2185,2203,2206,2242,2245,2253,2271,2288,2291] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayRestartDBSync b/cardano-chain-gen/test/testfiles/fingerprint/conwayRestartDBSync index bace2a0be..65f2eb4db 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayRestartDBSync +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayRestartDBSync @@ -1 +1 @@ -[1] \ No newline at end of file +[28] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayRollbackBoundary b/cardano-chain-gen/test/testfiles/fingerprint/conwayRollbackBoundary index fa8410f97..5160c7859 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayRollbackBoundary +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayRollbackBoundary @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967,971,980,981,983,993,997,1000,1001,1012,1019,1026,1029,1031,1047,1049,1051,1052,1068,1069,1070,1071,1073,1088,1093,1104,1106,1108,1111,1113,1114,1115,1117,1125,1132,1138,1146,1147,1157,1158,1160,1164,1180,1181,1188,1200,1201,1203,1205,1207,1210,1212,1218,1222,1223,1225,1229,1234,1248,1250,1264,1269,1277,1282,1297,1304,1306,1314,1318,1324,1328,1331,1337,1341,1347,1348,1349,1357,1360,1363,1373,1383,1387,1392,1401,1402,1405,1413,1414,1415,1419,1420,1423,1433,1436,1439,1453,1458,1459,1464,1465,1476,1477,1478,1491,1503,1506,1509,1511,1514,1519,1528,1532,1533,1539,1540,1541,1545,1551,1554,1558,1560,1571,1578,1580,1581,1590,1593,1594,1600,1602,1616,1627,1640,1641,1660,1662,1667,1673,1677,1682,1686,1687,1690,1696,1699,1702,1713,1714,1715,1717,1718,1720,1721,1723,1739,1746,1747,1748,1752,1754,1757,1758,1761,1763,1767,1768,1772,1773,1781,1782,1790,1796,1798,1799,1803,1807,1811,1819,1820,1827,1837,1838,1844,1845,1850,1852,1853,1858,1873,1878,1886,1887,1905,1908,1909,1914,1916,1928,1934,1947,1954,1961,1966,1969,1970,1971,1973,1997,1998,1999,2011] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1003,1009,1016,1018,1023,1025,1026,1045,1055,1057,1059,1063,1074,1086,1091,1093,1108,1129,1136,1152,1153,1167,1168,1169,1177,1181,1183,1184,1193,1201,1205,1207,1208,1216,1217,1223,1229,1232,1240,1243,1248,1262,1263,1264,1266,1270,1273,1279,1286,1287,1289,1290,1299,1301,1303,1306,1308,1309,1315,1317,1323,1335,1351,1367,1380,1382,1390,1392,1395,1400,1401,1403,1404,1407,1413,1415,1424,1425,1430,1447,1450,1456,1457,1461,1467,1476,1477,1480,1488,1490,1491,1495,1497,1500,1519,1526,1535,1545,1555,1559,1563,1567,1573,1582,1583,1593,1597,1599,1604,1606,1607,1608,1609,1623,1628,1631,1641,1658,1663,1674,1680,1681,1689,1694,1712,1713,1714,1715,1720,1721,1722,1725,1731,1735,1736,1738,1739,1740,1741,1745,1750,1754,1765,1769,1782,1783,1793,1797,1798,1811,1812,1820,1822,1826,1832,1833,1836,1842,1845,1846,1853,1859,1868,1872,1877,1880,1882,1889,1897,1902,1911,1921,1925,1927,1928,1933,1938,1946,1951,1954,1963,1969,1975,1983,1986,1994,1995,1996,2010] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayRollbackChangeTxOrder b/cardano-chain-gen/test/testfiles/fingerprint/conwayRollbackChangeTxOrder index 98249ed2f..b1ccb125b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayRollbackChangeTxOrder +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayRollbackChangeTxOrder @@ -1 +1 @@ -[1,3,3] \ No newline at end of file +[5,11,11] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayRollbackFullTx b/cardano-chain-gen/test/testfiles/fingerprint/conwayRollbackFullTx index 98249ed2f..b1ccb125b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayRollbackFullTx +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayRollbackFullTx @@ -1 +1 @@ -[1,3,3] \ No newline at end of file +[5,11,11] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwaySimpleRewards b/cardano-chain-gen/test/testfiles/fingerprint/conwaySimpleRewards index 3ec22abc6..cc39b2ca9 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwaySimpleRewards +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwaySimpleRewards @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519,520,524,528,529,530,531,554,557,567,568,575,576,597,603,615,616,631,637,640,641,643,650,654,656,657,662,668,676,678,688,694,695,698,700,701,702,703,716,725,727,729,730,732,733,738,747,750,771,774,777,778,780,785,796,798,799,805,808,819,821,822,827,831,833,835,838,841,844,847,848,858,859,860,863,864,872,875,889,906,912,913,914,917,942,943,945,948,950,952,954,955,959,967,971,980,981,983,993,997,1002,1004,1005,1023,1033,1037,1038,1039,1040,1042,1043,1044,1054,1056,1062,1063,1066,1076,1083,1085,1086,1091,1093,1096,1102,1106,1111,1116,1128,1135,1139,1141,1144,1147,1155,1160,1164,1173,1178,1179,1187,1199,1201,1203,1220,1223,1224,1241,1242,1258,1262,1266,1273,1276,1277,1278,1279,1289,1293,1294,1303,1317,1320,1324,1329,1337,1339,1340,1353,1355,1362,1364,1366,1371,1376,1394,1395,1399,1401,1405,1406,1407,1408,1412,1414,1422,1423,1426,1429,1431,1434,1437,1439,1443,1445,1453,1459,1460,1464,1465,1466,1468,1474,1485,1488,1490,1492,1496,1497,1505,1508,1512,1519,1521,1526,1532,1534,1536,1544,1549,1557,1563,1565,1567,1572,1579,1584,1589,1592,1598,1603,1613,1618,1621,1624,1627,1632,1639,1648,1649,1655,1657,1659,1660,1661,1663,1668,1673,1684,1689,1693,1698,1705,1707,1716,1730,1732,1739,1752,1753,1756,1762,1764,1767,1771,1776,1777,1780,1785,1788,1789,1790,1793,1813,1819,1824,1829,1840,1841,1845,1855,1870,1882,1887,1889,1896,1902,1905,1932,1936,1939,1949,1957,1961,1965,1967,1968,1973,1980,1982,1996,1997,1998,2001,2003,2005,2006,2008,2013,2017,2025,2027,2034,2039,2040,2041,2042,2046,2059,2061,2062,2063,2067,2068,2077,2079,2089,2096,2097,2098,2103,2106,2117,2121,2129,2131,2133,2134,2135,2138,2141,2144,2164,2171,2174,2180,2182,2187,2192,2195,2203,2204,2209,2220,2222,2226,2245,2247,2260,2267,2268,2269,2277,2279,2284,2288,2292,2296,2297,2298,2303,2315,2321,2329,2337,2339,2348,2349,2355,2356,2357,2359,2364,2367,2371,2375,2384,2389,2391,2392,2397,2401,2408,2410,2414,2418,2422,2423,2424,2425,2432,2433,2452,2454,2455,2462,2464,2469,2489,2501] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506,509,512,515,518,524,526,527,530,541,542,549,556,561,570,576,578,579,583,589,596,597,609,611,615,620,621,627,633,634,644,650,651,654,661,671,675,680,682,687,694,698,703,705,711,716,718,726,728,730,739,748,749,757,761,782,784,785,791,796,798,815,818,823,837,845,846,847,858,862,865,877,879,881,882,884,885,888,890,892,893,895,898,900,904,908,916,921,922,923,929,930,932,934,936,950,956,957,968,969,985,992,993,994,1000,1001,1003,1012,1017,1020,1027,1033,1039,1050,1052,1063,1064,1065,1068,1071,1083,1086,1094,1096,1103,1104,1109,1113,1116,1117,1135,1138,1140,1157,1160,1161,1166,1170,1171,1173,1179,1180,1182,1183,1188,1195,1198,1204,1206,1209,1211,1212,1215,1220,1224,1232,1234,1240,1241,1245,1252,1259,1260,1261,1262,1268,1270,1275,1278,1280,1285,1292,1293,1303,1307,1310,1314,1320,1322,1325,1332,1353,1361,1363,1365,1368,1371,1374,1375,1381,1384,1387,1397,1401,1405,1409,1410,1418,1446,1447,1454,1455,1456,1460,1463,1466,1469,1472,1478,1485,1503,1509,1511,1515,1517,1518,1519,1523,1530,1532,1540,1544,1549,1554,1557,1560,1576,1587,1592,1594,1604,1610,1611,1617,1623,1624,1627,1629,1640,1645,1648,1659,1663,1665,1676,1686,1688,1691,1693,1698,1708,1709,1713,1739,1759,1761,1762,1763,1765,1770,1776,1777,1794,1807,1823,1824,1826,1833,1835,1836,1838,1844,1849,1851,1852,1853,1857,1861,1865,1867,1868,1870,1876,1883,1884,1888,1891,1892,1895,1898,1902,1903,1907,1910,1916,1928,1929,1930,1934,1938,1948,1951,1953,1961,1964,1965,1970,1983,1986,1991,1992,2004,2014,2024,2025,2030,2053,2055,2056,2058,2061,2089,2093,2099,2107,2108,2109,2115,2136,2154,2161,2162,2164,2165,2167,2177,2180,2182,2186,2187,2196,2197,2200,2205,2216,2217,2218,2219,2225,2227,2234,2239,2240,2243,2249,2251,2256,2262,2263,2265,2266,2282,2300,2304,2309,2310,2312,2313,2321,2326,2331,2334,2337,2348,2355,2359,2371,2379,2381,2391,2394,2397,2406,2414,2416,2419,2426,2427,2433,2442,2447,2449,2456,2457,2464,2465,2475,2479,2485,2498,2522] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwaySimpleRollback b/cardano-chain-gen/test/testfiles/fingerprint/conwaySimpleRollback index cc3900548..ee475e707 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwaySimpleRollback +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwaySimpleRollback @@ -1 +1 @@ -[1,8,9] \ No newline at end of file +[28,33,34] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwaySimpleScript b/cardano-chain-gen/test/testfiles/fingerprint/conwaySimpleScript index 0860d13b3..cdd22a6e6 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwaySimpleScript +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwaySimpleScript @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515,519] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503,506] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwaySpendCollateralOtputRollback b/cardano-chain-gen/test/testfiles/fingerprint/conwaySpendCollateralOtputRollback index 2a6c826e1..fb668b604 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwaySpendCollateralOtputRollback +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwaySpendCollateralOtputRollback @@ -1 +1 @@ -[1,3,4,7,3,4,7,8] \ No newline at end of file +[5,11,15,21,11,15,21,22] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwaySpendCollateralOutput b/cardano-chain-gen/test/testfiles/fingerprint/conwaySpendCollateralOutput index 5a012a1c3..7d4ea0996 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwaySpendCollateralOutput +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwaySpendCollateralOutput @@ -1 +1 @@ -[1,3,4,7] \ No newline at end of file +[5,11,15,21] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwaySpendRefScriptSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/conwaySpendRefScriptSameBlock index 76578b168..237dc50a9 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwaySpendRefScriptSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwaySpendRefScriptSameBlock @@ -1 +1 @@ -[1,8] \ No newline at end of file +[5,15] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwaySpindCollateralOutputSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/conwaySpindCollateralOutputSameBlock index 96aa67e91..e51937fbf 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwaySpindCollateralOutputSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwaySpindCollateralOutputSameBlock @@ -1 +1 @@ -[1,3] \ No newline at end of file +[5,11] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayStakeAddressPtr b/cardano-chain-gen/test/testfiles/fingerprint/conwayStakeAddressPtr index 96aa67e91..e51937fbf 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayStakeAddressPtr +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayStakeAddressPtr @@ -1 +1 @@ -[1,3] \ No newline at end of file +[5,11] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayStakeAddressPtrDereg b/cardano-chain-gen/test/testfiles/fingerprint/conwayStakeAddressPtrDereg index 6e93ee7ce..874ad16dc 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayStakeAddressPtrDereg +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayStakeAddressPtrDereg @@ -1 +1 @@ -[1,3,4] \ No newline at end of file +[5,11,15] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayStakeAddressPtrUseBefore b/cardano-chain-gen/test/testfiles/fingerprint/conwayStakeAddressPtrUseBefore index 6e93ee7ce..874ad16dc 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayStakeAddressPtrUseBefore +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayStakeAddressPtrUseBefore @@ -1 +1 @@ -[1,3,4] \ No newline at end of file +[5,11,15] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayStakeAddressRollback b/cardano-chain-gen/test/testfiles/fingerprint/conwayStakeAddressRollback index f0411f00e..7e384d74c 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayStakeAddressRollback +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayStakeAddressRollback @@ -1 +1 @@ -[1,3,3,4] \ No newline at end of file +[5,11,11,15] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayStakeDistGenesis b/cardano-chain-gen/test/testfiles/fingerprint/conwayStakeDistGenesis index 8f9837354..846f97f45 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayStakeDistGenesis +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayStakeDistGenesis @@ -1 +1 @@ -[1,3,4,7,8,9,10,11,14,30,31,33,34,35,40,42,44,61,62,74,76,82,85,88,89,93,95,102,104,106,111,114,120,123,141,143,146,149,158,170,171,178,186,190,198,201,207,209,210,221,223,227,245,249,250,259,260,265,272,276,283,284,294,296,301,305,306,311,312,317,318,321,322,325,331,333,337,339,345,347,348,350,365,375,377,379,382,391,394,401,407,411,413,415,424,428,445,453,467,469,471,474,487,489,490,492,497,498,515] \ No newline at end of file +[5,11,15,21,22,23,28,33,34,36,42,43,48,52,62,82,88,92,102,106,109,111,116,133,134,143,151,153,157,161,162,171,182,183,193,195,196,197,200,206,208,216,219,222,238,245,250,262,271,272,275,282,286,296,301,310,311,314,325,340,347,354,355,365,376,379,382,384,389,390,391,392,393,398,404,407,414,418,419,422,424,446,448,450,457,465,476,478,485,486,488,499,503] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwaySupplyScriptToWays b/cardano-chain-gen/test/testfiles/fingerprint/conwaySupplyScriptToWays index 6e93ee7ce..874ad16dc 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwaySupplyScriptToWays +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwaySupplyScriptToWays @@ -1 +1 @@ -[1,3,4] \ No newline at end of file +[5,11,15] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwaySupplyScriptsTwoWaysSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/conwaySupplyScriptsTwoWaysSameBlock index 96aa67e91..e51937fbf 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwaySupplyScriptsTwoWaysSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwaySupplyScriptsTwoWaysSameBlock @@ -1 +1 @@ -[1,3] \ No newline at end of file +[5,11] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwaySwapMultiAssets b/cardano-chain-gen/test/testfiles/fingerprint/conwaySwapMultiAssets index bace2a0be..4d176701b 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwaySwapMultiAssets +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwaySwapMultiAssets @@ -1 +1 @@ -[1] \ No newline at end of file +[5] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayUnlockDatumOutput b/cardano-chain-gen/test/testfiles/fingerprint/conwayUnlockDatumOutput index cc3900548..8721dbe78 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayUnlockDatumOutput +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayUnlockDatumOutput @@ -1 +1 @@ -[1,8,9] \ No newline at end of file +[5,15,21] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayUnlockDatumOutputSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/conwayUnlockDatumOutputSameBlock index 76578b168..237dc50a9 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayUnlockDatumOutputSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayUnlockDatumOutputSameBlock @@ -1 +1 @@ -[1,8] \ No newline at end of file +[5,15] \ No newline at end of file diff --git a/cardano-chain-gen/test/testfiles/fingerprint/conwayUnlockScriptSameBlock b/cardano-chain-gen/test/testfiles/fingerprint/conwayUnlockScriptSameBlock index 96aa67e91..e51937fbf 100644 --- a/cardano-chain-gen/test/testfiles/fingerprint/conwayUnlockScriptSameBlock +++ b/cardano-chain-gen/test/testfiles/fingerprint/conwayUnlockScriptSameBlock @@ -1 +1 @@ -[1,3] \ No newline at end of file +[5,11] \ No newline at end of file From 26f9243717e0ce68389f7698987808b5099b96c7 Mon Sep 17 00:00:00 2001 From: Sean D Gillespie Date: Wed, 10 Jan 2024 15:10:07 -0500 Subject: [PATCH 6/6] refactor(cardano-chain-gen): Add a Query module --- cardano-chain-gen/cardano-chain-gen.cabal | 3 ++ cardano-chain-gen/src/Cardano/Mock/Query.hs | 43 +++++++++++++++++++ .../Test/Cardano/Db/Mock/Unit/Conway/Other.hs | 41 +++--------------- 3 files changed, 53 insertions(+), 34 deletions(-) create mode 100644 cardano-chain-gen/src/Cardano/Mock/Query.hs diff --git a/cardano-chain-gen/cardano-chain-gen.cabal b/cardano-chain-gen/cardano-chain-gen.cabal index eb0e6d83d..a0227fb5d 100644 --- a/cardano-chain-gen/cardano-chain-gen.cabal +++ b/cardano-chain-gen/cardano-chain-gen.cabal @@ -44,6 +44,7 @@ library Cardano.Mock.ChainDB Cardano.Mock.ChainSync.Server Cardano.Mock.ChainSync.State + Cardano.Mock.Query Cardano.Mock.Forging.Crypto Cardano.Mock.Forging.Interpreter Cardano.Mock.Forging.Tx.Alonzo @@ -63,6 +64,7 @@ library , bytestring , cardano-binary , cardano-crypto-class + , cardano-db , cardano-ledger-allegra , cardano-ledger-alonzo , cardano-ledger-babbage @@ -78,6 +80,7 @@ library , containers , contra-tracer , directory + , esqueleto , extra , mtl , microlens diff --git a/cardano-chain-gen/src/Cardano/Mock/Query.hs b/cardano-chain-gen/src/Cardano/Mock/Query.hs new file mode 100644 index 000000000..982e9c552 --- /dev/null +++ b/cardano-chain-gen/src/Cardano/Mock/Query.hs @@ -0,0 +1,43 @@ +{-# LANGUAGE TypeApplications #-} + +module Cardano.Mock.Query ( + queryVersionMajorFromEpoch, + queryParamProposalFromEpoch, +) where + +import qualified Cardano.Db as Db +import Cardano.Prelude hiding (from) +import Database.Esqueleto.Experimental +import Prelude () + +-- | Query protocol parameters from @EpochParam@ by epoch number. Note that epoch +-- parameters are inserted at the beginning of the next epoch. +-- +-- TODO[sgillespie]: It would probably be better to return @Db.EpochParam@, but +-- persistent seems to be having trouble with the data: +-- +-- PersistMarshalError "Couldn't parse field `govActionLifetime` from table +-- `epoch_param`. Failed to parse Haskell type `Word64`; expected integer from +-- database, but received: PersistRational (0 % 1). +queryVersionMajorFromEpoch :: + MonadIO io => + Word64 -> + ReaderT SqlBackend io (Maybe Word16) +queryVersionMajorFromEpoch epochNo = do + res <- selectOne $ do + prop <- from $ table @Db.EpochParam + where_ (prop ^. Db.EpochParamEpochNo ==. val epochNo) + pure (prop ^. Db.EpochParamProtocolMajor) + pure $ unValue <$> res + +-- | Query protocol parameter proposals from @ParamProposal@ by epoch number. +queryParamProposalFromEpoch :: + MonadIO io => + Word64 -> + ReaderT SqlBackend io (Maybe Db.ParamProposal) +queryParamProposalFromEpoch epochNo = do + res <- selectOne $ do + prop <- from $ table @Db.ParamProposal + where_ $ prop ^. Db.ParamProposalEpochNo ==. val (Just epochNo) + pure prop + pure $ entityVal <$> res diff --git a/cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit/Conway/Other.hs b/cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit/Conway/Other.hs index 3117702bd..71246164a 100644 --- a/cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit/Conway/Other.hs +++ b/cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit/Conway/Other.hs @@ -4,7 +4,6 @@ {-# LANGUAGE NumericUnderscores #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE ScopedTypeVariables #-} -{-# LANGUAGE TypeApplications #-} module Test.Cardano.Db.Mock.Unit.Conway.Other ( -- * Different configs @@ -33,16 +32,16 @@ import Cardano.Ledger.Credential (StakeCredential ()) import Cardano.Ledger.Crypto (StandardCrypto ()) import Cardano.Ledger.Keys (KeyHash (), KeyRole (..)) import Cardano.Mock.ChainSync.Server (IOManager (), addBlock, rollback) -import Cardano.Mock.Forging.Interpreter (Interpreter (), forgeNext, getCurrentEpoch) +import Cardano.Mock.Forging.Interpreter (forgeNext, getCurrentEpoch) import qualified Cardano.Mock.Forging.Tx.Babbage as Babbage import qualified Cardano.Mock.Forging.Tx.Conway as Conway import Cardano.Mock.Forging.Tx.Generic (resolvePool) import Cardano.Mock.Forging.Types +import Cardano.Mock.Query (queryParamProposalFromEpoch, queryVersionMajorFromEpoch) import Cardano.Prelude hiding (from) import Cardano.SMASH.Server.PoolDataLayer (PoolDataLayer (..), dbToServantPoolId) import Cardano.SMASH.Server.Types (DBFail (..)) import Data.List (last) -import Database.Esqueleto.Experimental import Ouroboros.Consensus.Shelley.Eras (StandardConway ()) import Ouroboros.Network.Block (blockPoint) import Test.Cardano.Db.Mock.Config @@ -497,35 +496,9 @@ forkParam = where testLabel = "conwayForkParam" configDir = babbageConfigDir - - queryCurrentMajVer :: - MonadIO m => - Interpreter -> - ReaderT SqlBackend m (Maybe Word16) - queryCurrentMajVer interpreter = do - -- Look up current epoch from ledger - EpochNo currentEpoch <- liftIO $ getCurrentEpoch interpreter - - -- Query epoch params from database - res <- selectOne $ do - param <- from $ table @Db.EpochParam - where_ (param ^. Db.EpochParamEpochNo ==. val currentEpoch) - pure (param ^. Db.EpochParamProtocolMajor) - - pure $ unValue <$> res - - queryMajVerProposal :: - MonadIO m => - Interpreter -> - ReaderT SqlBackend m (Maybe Word16) + queryCurrentMajVer interpreter = queryVersionMajorFromEpoch =<< getEpochNo interpreter queryMajVerProposal interpreter = do - -- Look up current epoch from ledger - EpochNo currentEpoch <- liftIO $ getCurrentEpoch interpreter - - -- Query proposals from database - res <- selectOne $ do - prop <- from $ table @Db.ParamProposal - where_ $ prop ^. Db.ParamProposalEpochNo ==. val (Just currentEpoch) - pure (prop ^. Db.ParamProposalProtocolMajor) - - pure $ join (unValue <$> res) + epochNo <- getEpochNo interpreter + prop <- queryParamProposalFromEpoch epochNo + pure (Db.paramProposalProtocolMajor =<< prop) + getEpochNo = fmap unEpochNo . liftIO . getCurrentEpoch