diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0109554547..b54d218ca5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -294,6 +294,50 @@ files. You should then inspect to see that only the transactions you expected to see change did so. If so, commit the changes as a new set of baselines for future tests. +## Running and updating LedgerCloseMeta checks + +Alongside the TxMeta hashes above, the unit tests can capture the full +`LedgerCloseMeta` XDR of every ledger they close, and check it against golden +data stored in the repository. Where the TxMeta baselines record a hash per +transaction, this records the complete binary meta, so the files also serve as +test data for downstream consumers such as Horizon and RPC. The two modes are: + + * `--capture-lcm` which writes golden files, and + * `--check-lcm ` which checks against them, where `` is the + directory holding the golden trees (the source tree root). + +The golden data lives in `test-lcm-current` (for the current protocol) and +`test-lcm-next` (for the next protocol), one subdirectory per test file, one +file per leaf section, named by a truncated hash of the test and section names. +Each subdirectory's `index.json` maps those hashes back to readable names and +records the protocol version and rng seed that produced the data. Continuous +integration runs `--check-lcm`, which fails fast if those headers do not match +the running binary — so a protocol version bump requires re-capturing the +data, even when no transaction semantics changed. + +To re-capture after an intentional change, or after a protocol bump: + + stellar-core test [tx] --rng-seed 12345 --capture-lcm --prune-stale-lcm + +for a build with only the current protocol enabled, and the same command for a +build configured with `--enable-next-protocol-version-unsafe-for-production`, +which writes the `next` tier instead. Note there is no `--all-versions` here: +the golden data is captured at the default (latest) protocol version only. + +`--prune-stale-lcm` deletes golden files the run did not write and rebuilds +each `index.json` from what it captured, so leaves that are no longer produced +do not accumulate. Pass it only with the full `[tx]` run above: a narrower run +visits only some leaves, and pruning would delete golden data that is still +valid. + +Some tests are automatically skipped, with the reason logged, because their +meta cannot serve as golden data: those that inject ledger entries straight +into the bucket list (the meta never shows the entries being created), those +that run a multi-node `Simulation`, and those using a config whose ledger +content depends on thread scheduling or randomized nomination. If you add a +test that needs a golden vector, close its ledgers through the ordinary +single-node path. + ## Fastdev and non-unified Rust builds As of protocol 20, some components of stellar-core are written in Rust (notably diff --git a/ci-build.sh b/ci-build.sh index 467c1bb70c..fd32a2e35c 100755 --- a/ci-build.sh +++ b/ci-build.sh @@ -217,6 +217,15 @@ export STELLAR_CORE_TEST_PARAMS="--ll fatal -r simple --disable-dots --all-versi export SKIP_SOROBAN_TESTS=true time make check +# Reuse the same build to check the captured LedgerCloseMeta golden data +# under test-lcm-current/ or test-lcm-next/ (the binary picks its tier). +# No --all-versions: the golden data is captured at the default (latest) +# protocol version only. +echo Running fixed check-lcm tests +export TEST_SPEC='[tx]' +export STELLAR_CORE_TEST_PARAMS="--ll fatal -r simple --disable-dots --rng-seed 12345 --check-lcm ${SRC_DIR}" +time make check + echo All done date diff --git a/docs/software/commands.md b/docs/software/commands.md index 9f9ae81eb3..61afe41f03 100644 --- a/docs/software/commands.md +++ b/docs/software/commands.md @@ -232,8 +232,37 @@ Command options can only by placed after command. directory maps hashes back to human-readable names. Each file contains stream-framed `LedgerCloseMeta` entries that can be decoded with `stellar-xdr decode --type LedgerCloseMeta --input stream-framed`. - Meta is normalized (sorted) before writing so that output is - deterministic given a fixed `--rng-seed`. + Non-deterministic diagnostic events are zeroed before writing, but + entries are otherwise written in their original order, which some + downstream consumers depend on. Comparisons — both the skip-rewrite + check during capture and `--check-lcm` — are done on normalized + (sorted) copies, so given a fixed `--rng-seed` files are only + rewritten or flagged on semantic changes. Each `index.json` is stamped + with the protocol version, rng seed and protocol-version list that + produced the data. + * `--prune-stale-lcm` : with `--capture-lcm`, after a clean run rewrite + each touched directory's `index.json` from what the run captured and + delete `.xdr` files it did not write. Use it for a full-corpus + regeneration; without it, leaves that are no longer produced keep their + files and index entries. It is opt-in because a run filtered to a + subset of tests visits only some leaves, so pruning would delete golden + data that is still valid. + * Tests whose `LedgerCloseMeta` cannot serve as golden data are skipped + automatically, with the reason logged: those that inject ledger entries + straight into the bucket list (the meta never shows the entries being + created), run a multi-node `Simulation`, or use a config whose ledger + content depends on thread scheduling or randomized nomination. + `--check-lcm` fails if golden data still exists for such a test. + * `--check-lcm ` : check `LedgerCloseMeta` captured from tests + against the golden files under `DIRNAME/test-lcm-current/` (or + `test-lcm-next/` for vnext builds), where `DIRNAME` is the directory + containing the two trees (typically the source tree root). Fails fast + if the `index.json` headers don't match the running binary — e.g. after + a protocol version bump without regenerating the golden data — and + fails at the end of the run if any captured meta differs from the + corresponding golden file. Continuous integration runs this mode; after + intentional changes, regenerate with `--capture-lcm` under each build + configuration and commit the result. * The network passphrase is set to `(V) (;,,;) (V)` for all captured meta. * For [further info](https://github.com/philsquared/Catch/blob/master/docs/command-line.md) on possible options for test. @@ -244,7 +273,7 @@ Command options can only by placed after command. generated by running the capture under each build configuration (the `next` tier requires a binary built with `--enable-next-protocol-version-unsafe-for-production`): - `stellar-core test --rng-seed 12345 '[tx]' --capture-lcm` + `stellar-core test --rng-seed 12345 '[tx]' --capture-lcm --prune-stale-lcm` * **upgrade-db**: Upgrades local database to current schema version. This is usually done automatically during stellar-core run or other command. * **verify-checkpoints**: Listens to the network until it observes a consensus diff --git a/src/bucket/test/BucketTestUtils.h b/src/bucket/test/BucketTestUtils.h index b5eb8dba46..ba89f8a6f9 100644 --- a/src/bucket/test/BucketTestUtils.h +++ b/src/bucket/test/BucketTestUtils.h @@ -5,6 +5,7 @@ #pragma once #include "test/TestUtils.h" +#include "test/test.h" #include "xdr/Stellar-ledger.h" namespace stellar @@ -85,6 +86,10 @@ class LedgerManagerForBucketTests : public LedgerManagerImpl std::vector const& deadEntries, bool alsoAddActualEntries = false) { + // Entries injected straight into the bucket list appear in the ledger + // without any transaction producing them, so the resulting meta is + // not a faithful record of how the state came to be. + taintLcmCapture("injects ledger entries directly into the bucket list"); mUseTestEntries = true; mAlsoAddActualEntries = alsoAddActualEntries; mTestInitEntries = initEntries; @@ -97,6 +102,9 @@ class LedgerManagerForBucketTests : public LedgerManagerImpl std::vector const& archiveEntries, std::vector const& restoredEntries) { + // As above: injected archive state has no transaction behind it, so + // the meta does not record how that state came to be. + taintLcmCapture("injects ledger entries directly into the bucket list"); mUseTestEntries = true; mTestArchiveEntries = archiveEntries; mTestRestoredEntries = restoredEntries; diff --git a/src/herder/test/HerderTests.cpp b/src/herder/test/HerderTests.cpp index 5d18f1ea63..84b1a50db0 100644 --- a/src/herder/test/HerderTests.cpp +++ b/src/herder/test/HerderTests.cpp @@ -8972,7 +8972,11 @@ TEST_CASE("network externalizes empty-tx-set on missing value", "[herder][tx]") REQUIRE(counter.count() > stopPoint); - // Capture meta for use with --capture-lcm + // Capture meta for use with --capture-lcm. Note that the LCM capture + // eligibility rules currently exclude this test (multi-node simulation + // plus randomized nomination), so no golden data is produced today; if + // the simulation is ever made deterministic the vector comes back for + // free. txtest::captureLastClosedLedgerLcm(*app); } diff --git a/src/simulation/Simulation.cpp b/src/simulation/Simulation.cpp index 98736d72fc..0cda189797 100644 --- a/src/simulation/Simulation.cpp +++ b/src/simulation/Simulation.cpp @@ -41,6 +41,10 @@ Simulation::Simulation(Mode mode, Hash const& networkID, ConfigGen confGen, , mConfigGen(confGen) , mQuorumSetAdjuster(qSetAdjust) { + // A multi-node simulation's ledger progression depends on thread + // scheduling and on how many SCP rounds happen to run, so meta captured + // from one is not reproducible across platforms or runs. + taintLcmCapture("runs a multi-node Simulation"); auto cfg = newConfig(); auto& parallel = cfg.BACKGROUND_OVERLAY_PROCESSING; parallel = parallel && mVirtualClockMode == VirtualClock::REAL_TIME; diff --git a/src/test/TxTests.cpp b/src/test/TxTests.cpp index cd5b853a2d..9f1835c6f9 100644 --- a/src/test/TxTests.cpp +++ b/src/test/TxTests.cpp @@ -73,6 +73,19 @@ captureLastClosedLedgerLcm(Application& app) // then applies the tx directly, so txs never appear in LCM. Fix this // by restructuring applyCheck to use closeLedger(app, {tx}) when // capturing LCM. + if (isLcmCaptureEnabled()) + { + // Configs whose ledger content depends on thread scheduling or on + // randomized nomination cannot produce reproducible golden data. + if (app.getConfig().EXPERIMENTAL_PARALLEL_TX_SET_DOWNLOAD) + { + taintLcmCapture("uses EXPERIMENTAL_PARALLEL_TX_SET_DOWNLOAD"); + } + if (app.getConfig().TESTING_NOMINATE_RANDOM_VALUES) + { + taintLcmCapture("uses TESTING_NOMINATE_RANDOM_VALUES"); + } + } if (isLcmCaptureEnabled() && !app.getConfig().MODE_USES_IN_MEMORY_LEDGER) { auto const& closeMeta = diff --git a/src/test/TxTests.h b/src/test/TxTests.h index b73fd2bb94..6c798f785b 100644 --- a/src/test/TxTests.h +++ b/src/test/TxTests.h @@ -381,7 +381,8 @@ bool isSuccessResult(TransactionResult const& res); TestAccount getGenesisAccount(Application& app, uint32_t accountIndex); // Accumulated LedgerCloseMeta from closeLedger/closeLedgerOn calls. -// Only accumulates when --capture-lcm is passed on the test command line. +// Only accumulates when --capture-lcm or --check-lcm is passed on the test +// command line. // Note: LCM capture does not cover BucketTestUtils::closeLedger or direct // externalizeValue calls (e.g. genesis ledger from app->start()). std::vector const& getAccumulatedLcm(); diff --git a/src/test/test.cpp b/src/test/test.cpp index d8955e4549..147e87b179 100644 --- a/src/test/test.cpp +++ b/src/test/test.cpp @@ -90,11 +90,66 @@ enum class TestTxMetaMode META_TEST_CHECK }; +// Declared here (rather than with the other test globals below) because the +// LCM capture/check code needs them when stamping and validating the header +// keys of index.json files. +static bool gTestAllVersions{false}; +static std::vector gVersionsToTest; + namespace { TestTxMetaMode gTestTxMetaMode{TestTxMetaMode::META_TEST_IGNORE}; bool gLcmCaptureEnabled{false}; +// Root directory containing the test-lcm- trees to check against; +// non-empty when --check-lcm was passed. +std::string gLcmCheckDir; +// Failures accumulated during --check-lcm, reported at end of run. Leaf +// boundaries are reported from a Catch listener where no assertion context +// is active, so failures are collected here and reported by reportLcmCheck, +// mirroring reportTestTxMeta. +std::vector gLcmCheckFailures; +// Source location of each LCM leaf path seen so far, used to detect two +// distinct sections sharing the same test/section name (Catch allows this, +// but it would make two leaves silently write and check the same golden +// file with different content). +std::map gLcmLeafSources; +// In capture mode, the index entries produced by this run, keyed by output +// directory (one directory per test file). Written out at end of run, which +// both truncates stale entries and drives pruning of stale .xdr files. +// Mirrors saveTestTxMeta, which rebuilds each baseline JSON from what the +// run observed rather than merging into the existing file. +std::map> gLcmCapturedIndex; +// Output directories of every test case this run visited, whether or not it +// produced eligible meta. A test file whose leaves have all become +// ineligible contributes no captured entries, but its stale golden files +// still need pruning. +std::set gLcmVisitedDirs; +// True when --prune-stale-lcm was passed. Off by default because a run +// filtered to a subset of tests only visits some leaves, and deleting the +// goldens of tests that simply did not run would be silent data loss. The +// canonical full-corpus regeneration passes it explicitly. +bool gLcmMayPrune{false}; + +// Set when the running test does something that makes its LedgerCloseMeta +// unsuitable as golden data — see taintLcmCapture. Reset per test case. +std::string gLcmTaintReason; + +// Header keys stored in each baseline/index file identifying the +// configuration that produced it; checked on load so that stale golden data +// (e.g. after a protocol version bump) fails fast. +char const* TESTKEY_PROTOCOL_VERSION = "!cfg protocol version"; +char const* TESTKEY_RNG_SEED = "!rng seed"; +char const* TESTKEY_ALL_VERSIONS = "!test all versions"; +char const* TESTKEY_VERSIONS_TO_TEST = "!versions to test"; + +// True when LCM accumulation and leaf-boundary processing is needed, in +// either --capture-lcm or --check-lcm mode. +bool +lcmTrackingEnabled() +{ + return gLcmCaptureEnabled || !gLcmCheckDir.empty(); +} // State tracked per section for automatic LCM capture. struct SectionLcmState @@ -108,7 +163,7 @@ bool needTestCtxTracking() { return gTestTxMetaMode != TestTxMetaMode::META_TEST_IGNORE || - gLcmCaptureEnabled; + lcmTrackingEnabled(); } std::string @@ -145,9 +200,8 @@ buildLcmHumanName(Catch::TestCaseInfo const& tc, } std::string -buildLcmOutputDir(Catch::TestCaseInfo const& tc) +lcmTierDirName() { - std::filesystem::path file(tc.lineInfo.file); // Partition golden data by protocol tier so that a build only ever reads, // writes, and diffs files it can deserialize. A "current" (released) build // must not touch meta captured by a "next" build, which can contain @@ -159,8 +213,18 @@ buildLcmOutputDir(Catch::TestCaseInfo const& tc) #else char const* tier = "current"; #endif - return std::string("test-lcm-") + tier + "/" + - file.filename().stem().string(); + return std::string("test-lcm-") + tier; +} + +std::string +buildLcmOutputDir(Catch::TestCaseInfo const& tc) +{ + std::filesystem::path file(tc.lineInfo.file); + // In check mode the golden data lives under the directory passed to + // --check-lcm (the source tree root when building out-of-tree); in + // capture mode it is written relative to the current directory. + std::string prefix = gLcmCheckDir.empty() ? "" : gLcmCheckDir + "/"; + return prefix + lcmTierDirName() + "/" + file.filename().stem().string(); } int32_t @@ -238,23 +302,65 @@ lcmSemanticallyEqual(std::vector const& a, return true; } +// Write /index.json from the entries this run captured for that +// directory. When pruning, the file is rebuilt from scratch so stale entries +// disappear, the same way saveTestTxMeta rebuilds each baseline JSON. When +// not pruning, existing entries are preserved and merged into: a run that +// visited only some leaves must not drop the mappings of leaves whose .xdr +// files are still on disk. void -updateLcmIndex(std::string const& dir, std::string const& hashHex, - std::string const& humanName) +writeLcmIndex(std::string const& dir, + std::map const& entries, bool replace) { std::string indexPath = dir + "/index.json"; Json::Value root(Json::objectValue); - if (std::filesystem::exists(indexPath)) + if (!replace && std::filesystem::exists(indexPath)) { std::ifstream in(indexPath); - in >> root; + Json::Value existing; + in >> existing; + for (auto it = existing.begin(); it != existing.end(); ++it) + { + auto key = it.key().asString(); + if (key.empty() || key.at(0) != '!') + { + root[key] = *it; + } + } + } + for (auto const& [hashHex, humanName] : entries) + { + root[hashHex] = humanName; + } + + // Stamp the configuration that produced this data so that --check-lcm + // can detect stale golden data (e.g. after a protocol version bump). + // Mirrors the header keys of the test-tx-meta baseline files. + root[TESTKEY_PROTOCOL_VERSION] = Config::CURRENT_LEDGER_PROTOCOL_VERSION; + root[TESTKEY_RNG_SEED] = ReseedPRNGListener::sCommandLineSeed; + root[TESTKEY_ALL_VERSIONS] = gTestAllVersions; + { + Json::Value versions(Json::arrayValue); + for (auto v : gVersionsToTest) + { + versions.append(v); + } + root[TESTKEY_VERSIONS_TO_TEST] = versions; } - root[hashHex] = humanName; - // Json::Value keeps keys sorted, so output is deterministic. + // Json::Value keeps keys sorted, so output is deterministic. Validate + // the stream as saveTestTxMeta does, so a failure to write cannot leave + // a truncated index behind while capture reports success. Json::StyledWriter writer; - std::ofstream out(indexPath); + std::ofstream out(indexPath, std::ios_base::trunc); + if (!out) + { + throw std::runtime_error( + fmt::format("LCM auto-capture: failed to open '{}'", indexPath)); + } + out.exceptions(std::ios::failbit | std::ios::badbit); out << writer.write(root); + out.close(); } void @@ -285,10 +391,11 @@ writeLcmToFile(std::string const& path, std::string const& dir, zeroNonDeterministicDiagnostics(newEntries.back()); } - // Always ensure directory exists and update the index so it stays in sync - // even when the XDR write is skipped. + // Always ensure the directory exists and record the index entry so it + // stays in sync even when the XDR write below is skipped. The index file + // itself is written at end of run, from these accumulated entries. fs::mkpath(dir); - updateLcmIndex(dir, hashHex, humanName); + gLcmCapturedIndex[dir].emplace(hashHex, humanName); // If an existing file is present, compare normalized versions. Skip the // write if the entries are semantically identical — this avoids noisy @@ -320,6 +427,116 @@ writeLcmToFile(std::string const& path, std::string const& dir, } } +// In --check-lcm mode, compare the LCM accumulated for a leaf section (or +// sectionless test case) against the checked-in golden file, accumulating a +// failure if the file is missing or its content differs. +void +checkLcmAgainstFile(std::string const& path, std::string const& humanName, + size_t startIndex) +{ + auto const& allMetas = txtest::getAccumulatedLcm(); + if (startIndex >= allMetas.size()) + { + // Capture mode never writes a file for a leaf with no meta, so an + // existing golden file means this test used to produce LCM and no + // longer does — flag it rather than silently passing. + if (std::filesystem::exists(path)) + { + gLcmCheckFailures.emplace_back(fmt::format( + "golden LCM file '{}' exists but test '{}' produced no " + "LedgerCloseMeta", + path, humanName)); + } + return; + } + + checkLcmSequenceContiguity(allMetas, startIndex, path); + + // Same treatment as capture: zero diagnostics, no normalization. + std::vector newEntries; + newEntries.reserve(allMetas.size() - startIndex); + for (size_t i = startIndex; i < allMetas.size(); ++i) + { + newEntries.push_back(allMetas[i]); + zeroNonDeterministicDiagnostics(newEntries.back()); + } + + if (!std::filesystem::exists(path)) + { + gLcmCheckFailures.emplace_back(fmt::format( + "missing golden LCM file '{}' for test '{}'", path, humanName)); + return; + } + + auto oldEntries = readLcmFromFile(path); + if (!lcmSemanticallyEqual(oldEntries, newEntries)) + { + gLcmCheckFailures.emplace_back(fmt::format( + "LCM mismatch against '{}' for test '{}'", path, humanName)); + } +} + +void +recordOrCheckLcm(std::string const& path, std::string const& dir, + std::string const& hashHex, std::string const& humanName, + size_t startIndex, Catch::SourceLineInfo const& leafSource) +{ + if (gLcmCaptureEnabled) + { + // Record the directory even when this leaf is skipped below, so a + // test file whose leaves are all ineligible still gets its stale + // goldens pruned. + gLcmVisitedDirs.insert(dir); + } + + if (!gLcmTaintReason.empty()) + { + // This test's meta is not suitable as golden data. Capture skips it; + // check flags any golden data that still exists for it, so a stale + // vector from before the test became ineligible cannot linger. + if (gLcmCaptureEnabled) + { + LOG_WARNING(DEFAULT_LOG, "LCM auto-capture: skipping '{}': {}", + humanName, gLcmTaintReason); + } + else if (std::filesystem::exists(path)) + { + gLcmCheckFailures.emplace_back(fmt::format( + "golden LCM file '{}' exists but test '{}' is not eligible " + "for capture: {}", + path, humanName, gLcmTaintReason)); + } + return; + } + + // Detect two distinct sections whose names hash to the same golden file. + // Only leaves that actually accumulated LCM matter: leaves with no meta + // never write or check a file, so a name collision there is harmless. + if (startIndex < txtest::getAccumulatedLcm().size()) + { + auto [it, inserted] = gLcmLeafSources.emplace(path, leafSource); + if (!inserted && (it->second.line != leafSource.line || + std::string(it->second.file) != leafSource.file)) + { + auto msg = fmt::format( + "Duplicate LCM leaf name '{}': sections at {}:{} and {}:{} " + "produce the same golden file '{}'; rename one of them", + humanName, it->second.file, it->second.line, leafSource.file, + leafSource.line, path); + LOG_FATAL(DEFAULT_LOG, "{}", msg); + throw std::runtime_error(msg); + } + } + if (gLcmCaptureEnabled) + { + writeLcmToFile(path, dir, hashHex, humanName, startIndex); + } + else + { + checkLcmAgainstFile(path, humanName, startIndex); + } +} + } // namespace struct TestContextListener : Catch::TestEventListenerBase @@ -343,8 +560,9 @@ struct TestContextListener : Catch::TestEventListenerBase releaseAssert(!sTestCtx.has_value()); sTestCtx.emplace(testInfo); } - if (gLcmCaptureEnabled) + if (lcmTrackingEnabled()) { + gLcmTaintReason.clear(); txtest::clearAccumulatedLcm(); sLcmSectStack.clear(); sTestCaseStartIndex = 0; @@ -354,7 +572,7 @@ struct TestContextListener : Catch::TestEventListenerBase void testCaseEnded(Catch::TestCaseStats const& testCaseStats) override { - if (gLcmCaptureEnabled && !sTestCaseHasSection) + if (lcmTrackingEnabled() && !sTestCaseHasSection) { releaseAssert(sTestCtx.has_value()); auto const& tc = sTestCtx.value(); @@ -363,7 +581,8 @@ struct TestContextListener : Catch::TestEventListenerBase auto hashHex = binToHex(hash).substr(0, 16); auto dir = buildLcmOutputDir(tc); auto path = dir + "/" + hashHex + ".xdr"; - writeLcmToFile(path, dir, hashHex, humanName, sTestCaseStartIndex); + recordOrCheckLcm(path, dir, hashHex, humanName, sTestCaseStartIndex, + tc.lineInfo); } if (needTestCtxTracking()) { @@ -381,7 +600,7 @@ struct TestContextListener : Catch::TestEventListenerBase releaseAssert(threadIsMain()); sSectCtx.emplace_back(sectionInfo); } - if (gLcmCaptureEnabled) + if (lcmTrackingEnabled()) { sTestCaseHasSection = true; if (!sLcmSectStack.empty()) @@ -395,7 +614,7 @@ struct TestContextListener : Catch::TestEventListenerBase void sectionEnded(Catch::SectionStats const& sectionStats) override { - if (gLcmCaptureEnabled && !sLcmSectStack.empty()) + if (lcmTrackingEnabled() && !sLcmSectStack.empty()) { auto state = sLcmSectStack.back(); if (!state.hasChildSection) @@ -414,7 +633,8 @@ struct TestContextListener : Catch::TestEventListenerBase // ran before any SECTION was entered. auto runStart = sLcmSectStack.front().startIndex; sLcmSectStack.pop_back(); - writeLcmToFile(path, dir, hashHex, humanName, runStart); + recordOrCheckLcm(path, dir, hashHex, humanName, runStart, + state.info.lineInfo); } else { @@ -445,8 +665,6 @@ static std::optional gDebugTestTxMeta; static std::vector gTestMetrics; static std::vector> gTestCfg[Config::TESTDB_MODES]; static std::vector gTestRoots; -static bool gTestAllVersions{false}; -static std::vector gVersionsToTest; int gBaseInstance{0}; static bool gMustUseTestVersionsWrapper{false}; static uint32_t gTestingVersion{Config::CURRENT_LEDGER_PROTOCOL_VERSION}; @@ -483,12 +701,25 @@ bool force_sqlite = (std::getenv("STELLAR_FORCE_SQLITE") != nullptr); bool isLcmCaptureEnabled() { - return gLcmCaptureEnabled; + return lcmTrackingEnabled(); +} + +void +taintLcmCapture(std::string const& reason) +{ + if (!lcmTrackingEnabled() || !gLcmTaintReason.empty()) + { + return; + } + gLcmTaintReason = reason; } static void saveTestTxMeta(stdfs::path const& dir); static void loadTestTxMeta(stdfs::path const& dir); static void reportTestTxMeta(); +static void loadLcmHeaders(stdfs::path const& dir); +static void reportLcmCheck(); +static void finalizeLcmCapture(); // if this method is used outside of the catch test cases, gTestRoots needs to // be manually cleared using cleanupTmpDirs. If this isn't done, gTestRoots will @@ -497,6 +728,15 @@ static void reportTestTxMeta(); Config const& getTestConfig(int instanceNumber, Config::TestDbMode mode) { + // The --base-instance offset exists to keep OS-level resources (ports, + // databases, directories) distinct across concurrently running test + // processes. In LCM capture/check mode, NODE_SEED — whose identity ends + // up in signed StellarValues inside captured LedgerCloseMeta headers — + // must instead use the logical (un-offset) instance number, or golden + // data captured at one base instance fails to reproduce under another + // (e.g. partitioned CI runs). Other runs keep the offset-derived seed. + int seedInstance = + lcmTrackingEnabled() ? instanceNumber : instanceNumber + gBaseInstance; instanceNumber += gBaseInstance; if (mode == Config::TESTDB_DEFAULT) { @@ -586,7 +826,7 @@ getTestConfig(int instanceNumber, Config::TestDbMode mode) // seeds the global PRNG might have been seeded with by default (which // could thereby collide). thisConfig.NODE_SEED = SecretKey::pseudoRandomForTestingFromSeed( - 0xFFFF0000 + (instanceNumber ^ getLastGlobalStateSeed().value())); + 0xFFFF0000 + (seedInstance ^ getLastGlobalStateSeed().value())); thisConfig.NODE_IS_VALIDATOR = true; // single node setup @@ -645,7 +885,7 @@ getTestConfig(int instanceNumber, Config::TestDbMode mode) // When capturing LCM, enable Soroban diagnostic events so that // downstream consumers can extract runtime error details and // nested contract calls from the meta. - if (gLcmCaptureEnabled) + if (lcmTrackingEnabled()) { thisConfig.ENABLE_SOROBAN_DIAGNOSTIC_EVENTS = true; } @@ -702,6 +942,8 @@ runTest(CommandLineArgs const& args) std::string recordTestTxMeta; std::string checkTestTxMeta; std::string debugTestTxMeta; + std::string checkLcm; + bool pruneStaleLcm{false}; auto parser = session.cli(); parser |= Catch::clara::Opt( @@ -733,6 +975,14 @@ runTest(CommandLineArgs const& args) "automatically capture LedgerCloseMeta to binary XDR files in " "test-lcm-current/ (or test-lcm-next/ for vnext builds) at leaf " "section boundaries"); + parser |= Catch::clara::Opt(checkLcm, "DIRNAME")["--check-lcm"]( + "check LedgerCloseMeta captured from tests against the golden files " + "under DIRNAME/test-lcm-current/ (or test-lcm-next/ for vnext " + "builds)"); + parser |= Catch::clara::Opt(pruneStaleLcm)["--prune-stale-lcm"]( + "with --capture-lcm, delete golden LCM files and index entries that " + "this run did not write; only meaningful for a full-corpus " + "regeneration"); session.cli(parser); @@ -789,6 +1039,24 @@ runTest(CommandLineArgs const& args) gTestTxMetaMode = TestTxMetaMode::META_TEST_CHECK; loadTestTxMeta(checkTestTxMeta); } + if (!checkLcm.empty()) + { + if (gLcmCaptureEnabled) + { + LOG_ERROR(DEFAULT_LOG, "Options --capture-lcm and --check-lcm " + "are mutually exclusive"); + return 1; + } + gLcmCheckDir = checkLcm; + loadLcmHeaders(checkLcm); + } + if (pruneStaleLcm && !gLcmCaptureEnabled) + { + LOG_ERROR(DEFAULT_LOG, + "Option --prune-stale-lcm requires --capture-lcm"); + return 1; + } + gLcmMayPrune = pruneStaleLcm; if (!debugTestTxMeta.empty()) { gDebugTestTxMeta.emplace(debugTestTxMeta); @@ -833,6 +1101,17 @@ runTest(CommandLineArgs const& args) { reportTestTxMeta(); } + if (!gLcmCheckDir.empty()) + { + reportLcmCheck(); + } + else if (gLcmCaptureEnabled && r == 0) + { + // Only finalize a clean run: an aborted or failing run may not have + // visited every leaf, so its captured set is not a safe basis for + // rewriting indexes or pruning. + finalizeLcmCapture(); + } return r; } @@ -1081,11 +1360,6 @@ recordOrCheckGlobalTestTxMetadata(TransactionMeta const& txMetaIn) namespace { -char const* TESTKEY_PROTOCOL_VERSION = "!cfg protocol version"; -char const* TESTKEY_RNG_SEED = "!rng seed"; -char const* TESTKEY_ALL_VERSIONS = "!test all versions"; -char const* TESTKEY_VERSIONS_TO_TEST = "!versions to test"; - template void checkTestKeyVal(std::string const& k, T const& expected, T const& got, @@ -1278,4 +1552,181 @@ reportTestTxMeta() hashes, nonempty, contexts)); } } + +// Validate the header keys of every index.json under /test-lcm-/ +// before running the suite, so stale golden data (e.g. a protocol version +// bump without regeneration, or data captured with a different seed) fails +// fast. Mirrors the header validation in loadTestTxMeta, but header keys +// must be present here: absence means the data predates them and needs +// regeneration. +static void +loadLcmHeaders(stdfs::path const& dir) +{ + stdfs::path tierDir = dir / lcmTierDirName(); + if (!stdfs::is_directory(tierDir)) + { + logFatalAndThrow(fmt::format("{} is not a directory", tierDir)); + } + size_t n = 0; + for (auto const& dirent : stdfs::directory_iterator{tierDir}) + { + if (!dirent.is_directory()) + { + continue; + } + auto indexPath = dirent.path() / "index.json"; + std::ifstream in(indexPath); + if (!in) + { + logFatalAndThrow(fmt::format("Failed to open {}", indexPath)); + } + in.exceptions(std::ios::failbit | std::ios::badbit); + Json::Value root; + in >> root; + for (auto const* key : {TESTKEY_PROTOCOL_VERSION, TESTKEY_RNG_SEED, + TESTKEY_ALL_VERSIONS, TESTKEY_VERSIONS_TO_TEST}) + { + if (!root.isMember(key)) + { + logFatalAndThrow( + fmt::format("Missing '{}' in {}; regenerate the golden " + "data with --capture-lcm", + key, indexPath)); + } + } + checkTestKeyVal(std::string(TESTKEY_PROTOCOL_VERSION), + Config::CURRENT_LEDGER_PROTOCOL_VERSION, + root[TESTKEY_PROTOCOL_VERSION].asUInt(), indexPath); + checkTestKeyVal(std::string(TESTKEY_RNG_SEED), + ReseedPRNGListener::sCommandLineSeed, + root[TESTKEY_RNG_SEED].asUInt(), indexPath); + checkTestKeyVal(std::string(TESTKEY_ALL_VERSIONS), gTestAllVersions, + root[TESTKEY_ALL_VERSIONS].asBool(), indexPath); + { + std::vector versions; + for (auto const& v : root[TESTKEY_VERSIONS_TO_TEST]) + { + versions.emplace_back(v.asUInt()); + } + checkTestKeyVals(std::string(TESTKEY_VERSIONS_TO_TEST), + gVersionsToTest, versions, indexPath); + } + ++n; + } + LOG_INFO(DEFAULT_LOG, "Validated headers of {} LCM index files in {}", n, + tierDir); +} + +// Write the index of every directory this capture run touched, and prune +// golden .xdr files in those directories that the run did not write. Only +// touched directories are considered, so capturing a subset of the test +// files leaves other directories alone — the same granularity as +// saveTestTxMeta, which rewrites only the baseline files whose test files +// recorded something. Within a touched directory, a filtered run would look +// indistinguishable from deleted leaves, so pruning is skipped entirely +// unless the run was unfiltered. +static void +finalizeLcmCapture() +{ + size_t pruned = 0; + size_t indexes = 0; + for (auto const& dir : gLcmVisitedDirs) + { + if (!std::filesystem::is_directory(dir)) + { + continue; + } + auto it = gLcmCapturedIndex.find(dir); + std::map const empty; + auto const& entries = + it == gLcmCapturedIndex.end() ? empty : it->second; + if (!gLcmMayPrune) + { + // Merge this run's entries into whatever is already recorded; + // a run that captured nothing here leaves the file untouched. + if (!entries.empty()) + { + writeLcmIndex(dir, entries, /*replace=*/false); + ++indexes; + } + continue; + } + std::set keep; + for (auto const& [hashHex, humanName] : entries) + { + keep.insert(dir + "/" + hashHex + ".xdr"); + } + std::vector stale; + for (auto const& dirent : stdfs::directory_iterator{dir}) + { + auto p = dirent.path(); + if (p.extension() == ".xdr" && keep.find(p.string()) == keep.end()) + { + stale.emplace_back(p.string()); + } + } + for (auto const& p : stale) + { + LOG_INFO(DEFAULT_LOG, "LCM auto-capture: pruning stale golden {}", + p); + if (!fs::removeWithLog(p)) + { + throw std::runtime_error(fmt::format( + "LCM auto-capture: failed to prune stale file '{}'", p)); + } + ++pruned; + } + if (entries.empty()) + { + // Every leaf this test file used to contribute is gone (the + // tests became ineligible, or stopped closing ledgers), so drop + // the index and the directory rather than leaving a file holding + // nothing but header keys. + std::string indexPath = dir + "/index.json"; + if (std::filesystem::exists(indexPath) && + !fs::removeWithLog(indexPath)) + { + throw std::runtime_error(fmt::format( + "LCM auto-capture: failed to remove '{}'", indexPath)); + } + std::error_code ec; + std::filesystem::remove(dir, ec); + LOG_INFO(DEFAULT_LOG, + "LCM auto-capture: removed '{}', which no longer has any " + "eligible leaves", + dir); + } + else + { + writeLcmIndex(dir, entries, /*replace=*/true); + ++indexes; + } + } + LOG_INFO(DEFAULT_LOG, + "LCM auto-capture: wrote {} index files, pruned {} stale golden " + "files{}", + indexes, pruned, + gLcmMayPrune ? "" + : " (pruning skipped: --prune-stale-lcm not " + "passed)"); +} + +static void +reportLcmCheck() +{ + if (gLcmCheckFailures.empty()) + { + LOG_INFO(DEFAULT_LOG, "Checked all captured LCM against golden files."); + return; + } + for (auto const& f : gLcmCheckFailures) + { + LOG_FATAL(DEFAULT_LOG, "{}", f); + } + logFatalAndThrow(fmt::format( + "Found {} LCM golden file mismatches; if the changes are " + "intentional, regenerate with: stellar-core test '[tx]' " + "--rng-seed {} --capture-lcm", + gLcmCheckFailures.size(), ReseedPRNGListener::sCommandLineSeed)); +} } diff --git a/src/test/test.h b/src/test/test.h index 2775877708..e266449799 100644 --- a/src/test/test.h +++ b/src/test/test.h @@ -35,17 +35,27 @@ int runTest(CommandLineArgs const& args); extern int gBaseInstance; extern bool force_sqlite; -// Returns true if --capture-lcm was passed to the test command. -// When enabled, LedgerCloseMeta from closeLedger/closeLedgerOn is -// automatically written to binary XDR files under a protocol-tiered -// directory: test-lcm-next// when the binary is built with -// --enable-next-protocol-version-unsafe-for-production, otherwise -// test-lcm-current//. Files are written at leaf section -// boundaries (or test case end for tests without sections). File names -// are SHA-256 hashes of the human-readable test name; each directory -// also contains an index.json mapping hashes to test names. +// Returns true if --capture-lcm or --check-lcm was passed to the test +// command. When enabled, LedgerCloseMeta from closeLedger/closeLedgerOn is +// accumulated and, at leaf section boundaries (or test case end for tests +// without sections), either written to or checked against binary XDR files +// under a protocol-tiered directory: test-lcm-next// when the +// binary is built with --enable-next-protocol-version-unsafe-for-production, +// otherwise test-lcm-current//. File names are SHA-256 hashes of +// the human-readable test name; each directory also contains an index.json +// mapping hashes to test names, stamped with the protocol version and rng +// seed that produced the data. bool isLcmCaptureEnabled(); +// Marks the running test as unsuitable for LedgerCloseMeta golden data, +// naming the reason (e.g. injecting ledger entries straight into the bucket +// list, or running a multi-node simulation whose progression depends on +// thread scheduling). Capture skips such a test's leaves and logs the +// reason; --check-lcm fails if golden data for them still exists, so a +// stale or misleading vector cannot linger. Calling this when LCM tracking +// is off is free, so hooks may call it unconditionally. +void taintLcmCapture(std::string const& reason); + void test_versions_wrapper(std::function f); #define TEST_BODY_NAME_INT2(line) testInternalBody##line diff --git a/src/transactions/test/InvokeHostFunctionTests.cpp b/src/transactions/test/InvokeHostFunctionTests.cpp index 18cfe946f2..a7315d7add 100644 --- a/src/transactions/test/InvokeHostFunctionTests.cpp +++ b/src/transactions/test/InvokeHostFunctionTests.cpp @@ -6331,18 +6331,6 @@ TEST_CASE("Soroban classic account authentication", "[tx][soroban]") REQUIRE(singleInvocation(signer, baseCredentials) == InvokeHostFunctionResultCode::INVOKE_HOST_FUNCTION_TRAPPED); } - SECTION("missing signature field") - { - baseCredentials.address() - .signature.vec() - .activate()[0] - .map() - .activate() - .pop_back(); - REQUIRE(singleInvocation(signer, baseCredentials) == - InvokeHostFunctionResultCode::INVOKE_HOST_FUNCTION_TRAPPED); - } - SECTION("missing signature field") { fieldsMap.pop_back(); @@ -6374,7 +6362,7 @@ TEST_CASE("Soroban classic account authentication", "[tx][soroban]") REQUIRE(singleInvocation(signer, baseCredentials) == InvokeHostFunctionResultCode::INVOKE_HOST_FUNCTION_TRAPPED); } - SECTION("wrong key type") + SECTION("wrong signature key type") { fieldsMap[1].key = makeBytesSCVal(std::string("signature")); REQUIRE(singleInvocation(signer, baseCredentials) == diff --git a/test-lcm-next/BeginSponsoringFutureReservesTests/02426fcd1b6a0dbe.xdr b/test-lcm-current/BeginSponsoringFutureReservesTests/02426fcd1b6a0dbe.xdr similarity index 100% rename from test-lcm-next/BeginSponsoringFutureReservesTests/02426fcd1b6a0dbe.xdr rename to test-lcm-current/BeginSponsoringFutureReservesTests/02426fcd1b6a0dbe.xdr diff --git a/test-lcm-next/BeginSponsoringFutureReservesTests/124577e8c014e46f.xdr b/test-lcm-current/BeginSponsoringFutureReservesTests/124577e8c014e46f.xdr similarity index 100% rename from test-lcm-next/BeginSponsoringFutureReservesTests/124577e8c014e46f.xdr rename to test-lcm-current/BeginSponsoringFutureReservesTests/124577e8c014e46f.xdr diff --git a/test-lcm-current/BeginSponsoringFutureReservesTests/159d83dfa9d0ce2a.xdr b/test-lcm-current/BeginSponsoringFutureReservesTests/159d83dfa9d0ce2a.xdr deleted file mode 100644 index 2c3f31e7d4..0000000000 Binary files a/test-lcm-current/BeginSponsoringFutureReservesTests/159d83dfa9d0ce2a.xdr and /dev/null differ diff --git a/test-lcm-current/BeginSponsoringFutureReservesTests/1cc8d1e738987c0f.xdr b/test-lcm-current/BeginSponsoringFutureReservesTests/1cc8d1e738987c0f.xdr deleted file mode 100644 index be010721f8..0000000000 Binary files a/test-lcm-current/BeginSponsoringFutureReservesTests/1cc8d1e738987c0f.xdr and /dev/null differ diff --git a/test-lcm-current/BeginSponsoringFutureReservesTests/27d44fa537d6e50d.xdr b/test-lcm-current/BeginSponsoringFutureReservesTests/27d44fa537d6e50d.xdr deleted file mode 100644 index f8e79cb269..0000000000 Binary files a/test-lcm-current/BeginSponsoringFutureReservesTests/27d44fa537d6e50d.xdr and /dev/null differ diff --git a/test-lcm-current/BeginSponsoringFutureReservesTests/290f483246862549.xdr b/test-lcm-current/BeginSponsoringFutureReservesTests/290f483246862549.xdr deleted file mode 100644 index 9e7a5ed9bf..0000000000 Binary files a/test-lcm-current/BeginSponsoringFutureReservesTests/290f483246862549.xdr and /dev/null differ diff --git a/test-lcm-next/BeginSponsoringFutureReservesTests/2f7cc6c5797d6418.xdr b/test-lcm-current/BeginSponsoringFutureReservesTests/2f7cc6c5797d6418.xdr similarity index 100% rename from test-lcm-next/BeginSponsoringFutureReservesTests/2f7cc6c5797d6418.xdr rename to test-lcm-current/BeginSponsoringFutureReservesTests/2f7cc6c5797d6418.xdr diff --git a/test-lcm-current/BeginSponsoringFutureReservesTests/3b6d924921f59f9f.xdr b/test-lcm-current/BeginSponsoringFutureReservesTests/3b6d924921f59f9f.xdr deleted file mode 100644 index c4071f8bd1..0000000000 Binary files a/test-lcm-current/BeginSponsoringFutureReservesTests/3b6d924921f59f9f.xdr and /dev/null differ diff --git a/test-lcm-next/BeginSponsoringFutureReservesTests/3ca9bd46788ce395.xdr b/test-lcm-current/BeginSponsoringFutureReservesTests/3ca9bd46788ce395.xdr similarity index 100% rename from test-lcm-next/BeginSponsoringFutureReservesTests/3ca9bd46788ce395.xdr rename to test-lcm-current/BeginSponsoringFutureReservesTests/3ca9bd46788ce395.xdr diff --git a/test-lcm-current/BeginSponsoringFutureReservesTests/3cb8cdd0c21fcfb1.xdr b/test-lcm-current/BeginSponsoringFutureReservesTests/3cb8cdd0c21fcfb1.xdr deleted file mode 100644 index dafe2119ae..0000000000 Binary files a/test-lcm-current/BeginSponsoringFutureReservesTests/3cb8cdd0c21fcfb1.xdr and /dev/null differ diff --git a/test-lcm-next/BeginSponsoringFutureReservesTests/476ba4fadb58a1ac.xdr b/test-lcm-current/BeginSponsoringFutureReservesTests/476ba4fadb58a1ac.xdr similarity index 100% rename from test-lcm-next/BeginSponsoringFutureReservesTests/476ba4fadb58a1ac.xdr rename to test-lcm-current/BeginSponsoringFutureReservesTests/476ba4fadb58a1ac.xdr diff --git a/test-lcm-current/BeginSponsoringFutureReservesTests/5a61e6aac9038144.xdr b/test-lcm-current/BeginSponsoringFutureReservesTests/5a61e6aac9038144.xdr deleted file mode 100644 index 09c2543d9f..0000000000 Binary files a/test-lcm-current/BeginSponsoringFutureReservesTests/5a61e6aac9038144.xdr and /dev/null differ diff --git a/test-lcm-current/BeginSponsoringFutureReservesTests/810737d7a4e635c4.xdr b/test-lcm-current/BeginSponsoringFutureReservesTests/810737d7a4e635c4.xdr deleted file mode 100644 index 64b538b76a..0000000000 Binary files a/test-lcm-current/BeginSponsoringFutureReservesTests/810737d7a4e635c4.xdr and /dev/null differ diff --git a/test-lcm-current/BeginSponsoringFutureReservesTests/9bc0a679d6d62183.xdr b/test-lcm-current/BeginSponsoringFutureReservesTests/9bc0a679d6d62183.xdr deleted file mode 100644 index 16c313e8f3..0000000000 Binary files a/test-lcm-current/BeginSponsoringFutureReservesTests/9bc0a679d6d62183.xdr and /dev/null differ diff --git a/test-lcm-next/BeginSponsoringFutureReservesTests/aec15f4898b342da.xdr b/test-lcm-current/BeginSponsoringFutureReservesTests/aec15f4898b342da.xdr similarity index 100% rename from test-lcm-next/BeginSponsoringFutureReservesTests/aec15f4898b342da.xdr rename to test-lcm-current/BeginSponsoringFutureReservesTests/aec15f4898b342da.xdr diff --git a/test-lcm-current/BeginSponsoringFutureReservesTests/bc338724a90e6148.xdr b/test-lcm-current/BeginSponsoringFutureReservesTests/bc338724a90e6148.xdr deleted file mode 100644 index d5e30c7a8b..0000000000 Binary files a/test-lcm-current/BeginSponsoringFutureReservesTests/bc338724a90e6148.xdr and /dev/null differ diff --git a/test-lcm-current/BeginSponsoringFutureReservesTests/e55c615e3d4d0fb9.xdr b/test-lcm-current/BeginSponsoringFutureReservesTests/e55c615e3d4d0fb9.xdr deleted file mode 100644 index 3cc650740d..0000000000 Binary files a/test-lcm-current/BeginSponsoringFutureReservesTests/e55c615e3d4d0fb9.xdr and /dev/null differ diff --git a/test-lcm-next/BeginSponsoringFutureReservesTests/e657a64b555a35d5.xdr b/test-lcm-current/BeginSponsoringFutureReservesTests/e657a64b555a35d5.xdr similarity index 100% rename from test-lcm-next/BeginSponsoringFutureReservesTests/e657a64b555a35d5.xdr rename to test-lcm-current/BeginSponsoringFutureReservesTests/e657a64b555a35d5.xdr diff --git a/test-lcm-current/BeginSponsoringFutureReservesTests/e9b0303fe49e8211.xdr b/test-lcm-current/BeginSponsoringFutureReservesTests/e9b0303fe49e8211.xdr deleted file mode 100644 index ac2be4c21e..0000000000 Binary files a/test-lcm-current/BeginSponsoringFutureReservesTests/e9b0303fe49e8211.xdr and /dev/null differ diff --git a/test-lcm-current/BeginSponsoringFutureReservesTests/index.json b/test-lcm-current/BeginSponsoringFutureReservesTests/index.json index 9b278d6438..c04b471462 100644 --- a/test-lcm-current/BeginSponsoringFutureReservesTests/index.json +++ b/test-lcm-current/BeginSponsoringFutureReservesTests/index.json @@ -1,16 +1,13 @@ { - "159d83dfa9d0ce2a" : "sponsor_future_reserves-protocol_version_27-sponsoring_account_is_sponsored", - "1cc8d1e738987c0f" : "sponsor_future_reserves-protocol_version_27-sponsored_account_is_sponsoring", - "27d44fa537d6e50d" : "sponsor_future_reserves-protocol_version_27-already_sponsored", - "290f483246862549" : "sponsor_future_reserves-protocol_version_27-sponsorships_with_precondition_that_uses_v3_extension", - "3b6d924921f59f9f" : "sponsor_future_reserves-protocol_version_26-add_sponsored_entry_before_adding_first_sponsored_signer", - "3cb8cdd0c21fcfb1" : "sponsor_future_reserves-protocol_version_26-sponsoring_account_is_sponsored", - "507604981827c989" : "sponsor_future_reserves-protocol_version_26-already_sponsored", - "5a61e6aac9038144" : "sponsor_future_reserves-protocol_version_26-success", - "810737d7a4e635c4" : "sponsor_future_reserves-protocol_version_27-bad_sponsorship", - "9bc0a679d6d62183" : "sponsor_future_reserves-protocol_version_26-bad_sponsorship", - "bc338724a90e6148" : "sponsor_future_reserves-protocol_version_27-add_sponsored_entry_before_adding_first_sponsored_signer", - "d97fe15b2aa04c9f" : "sponsor_future_reserves-protocol_version_27-success", - "e55c615e3d4d0fb9" : "sponsor_future_reserves-protocol_version_26-sponsored_account_is_sponsoring", - "e9b0303fe49e8211" : "sponsor_future_reserves-protocol_version_26-sponsorships_with_precondition_that_uses_v3_extension" + "!cfg protocol version" : 28, + "!rng seed" : 12345, + "!test all versions" : false, + "!versions to test" : [ 28 ], + "02426fcd1b6a0dbe" : "sponsor_future_reserves-protocol_version_28-already_sponsored", + "124577e8c014e46f" : "sponsor_future_reserves-protocol_version_28-add_sponsored_entry_before_adding_first_sponsored_signer", + "2f7cc6c5797d6418" : "sponsor_future_reserves-protocol_version_28-sponsorships_with_precondition_that_uses_v3_extension", + "3ca9bd46788ce395" : "sponsor_future_reserves-protocol_version_28-sponsoring_account_is_sponsored", + "476ba4fadb58a1ac" : "sponsor_future_reserves-protocol_version_28-success", + "aec15f4898b342da" : "sponsor_future_reserves-protocol_version_28-sponsored_account_is_sponsoring", + "e657a64b555a35d5" : "sponsor_future_reserves-protocol_version_28-bad_sponsorship" } diff --git a/test-lcm-current/FrozenLedgerKeysTests/0130d32614dbc252.xdr b/test-lcm-current/FrozenLedgerKeysTests/0130d32614dbc252.xdr index 30db36cdd8..136e79ecb9 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/0130d32614dbc252.xdr and b/test-lcm-current/FrozenLedgerKeysTests/0130d32614dbc252.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/0269778d4c3c115b.xdr b/test-lcm-current/FrozenLedgerKeysTests/0269778d4c3c115b.xdr index 30db36cdd8..136e79ecb9 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/0269778d4c3c115b.xdr and b/test-lcm-current/FrozenLedgerKeysTests/0269778d4c3c115b.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/03768f1cbe0eed0d.xdr b/test-lcm-current/FrozenLedgerKeysTests/03768f1cbe0eed0d.xdr index c10b4d7aea..ef0d8577fb 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/03768f1cbe0eed0d.xdr and b/test-lcm-current/FrozenLedgerKeysTests/03768f1cbe0eed0d.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/0450c26d5d536a6e.xdr b/test-lcm-current/FrozenLedgerKeysTests/0450c26d5d536a6e.xdr index 2beadebbbc..e24eb3ec2e 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/0450c26d5d536a6e.xdr and b/test-lcm-current/FrozenLedgerKeysTests/0450c26d5d536a6e.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/05d2d1b6ad2f25b9.xdr b/test-lcm-current/FrozenLedgerKeysTests/05d2d1b6ad2f25b9.xdr index 30db36cdd8..136e79ecb9 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/05d2d1b6ad2f25b9.xdr and b/test-lcm-current/FrozenLedgerKeysTests/05d2d1b6ad2f25b9.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/09bc2d8793dcee32.xdr b/test-lcm-current/FrozenLedgerKeysTests/09bc2d8793dcee32.xdr index b43487a04d..b6e7a9c45d 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/09bc2d8793dcee32.xdr and b/test-lcm-current/FrozenLedgerKeysTests/09bc2d8793dcee32.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/0ee7224ee3fe8e71.xdr b/test-lcm-current/FrozenLedgerKeysTests/0ee7224ee3fe8e71.xdr index b6560648de..68f13ea25e 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/0ee7224ee3fe8e71.xdr and b/test-lcm-current/FrozenLedgerKeysTests/0ee7224ee3fe8e71.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/0feb6c306147fd3a.xdr b/test-lcm-current/FrozenLedgerKeysTests/0feb6c306147fd3a.xdr index 4040e81e82..04c7534966 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/0feb6c306147fd3a.xdr and b/test-lcm-current/FrozenLedgerKeysTests/0feb6c306147fd3a.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/104f5d62fa026b98.xdr b/test-lcm-current/FrozenLedgerKeysTests/104f5d62fa026b98.xdr index 3fbcaf9359..0e8659e523 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/104f5d62fa026b98.xdr and b/test-lcm-current/FrozenLedgerKeysTests/104f5d62fa026b98.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/11196eb4ceadfd80.xdr b/test-lcm-current/FrozenLedgerKeysTests/11196eb4ceadfd80.xdr index 79c3a6faad..9c033ceac0 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/11196eb4ceadfd80.xdr and b/test-lcm-current/FrozenLedgerKeysTests/11196eb4ceadfd80.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/12a1f394aac5f093.xdr b/test-lcm-current/FrozenLedgerKeysTests/12a1f394aac5f093.xdr index 93a7561f29..a966d443d9 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/12a1f394aac5f093.xdr and b/test-lcm-current/FrozenLedgerKeysTests/12a1f394aac5f093.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/12dc44e49c5507a9.xdr b/test-lcm-current/FrozenLedgerKeysTests/12dc44e49c5507a9.xdr index 1d4eb903c2..55572f35f2 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/12dc44e49c5507a9.xdr and b/test-lcm-current/FrozenLedgerKeysTests/12dc44e49c5507a9.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/137b73a35107c4c5.xdr b/test-lcm-current/FrozenLedgerKeysTests/137b73a35107c4c5.xdr index 904f51b615..4d2687b57a 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/137b73a35107c4c5.xdr and b/test-lcm-current/FrozenLedgerKeysTests/137b73a35107c4c5.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/1c2cdf10f2e47111.xdr b/test-lcm-current/FrozenLedgerKeysTests/1c2cdf10f2e47111.xdr index 93a7561f29..a966d443d9 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/1c2cdf10f2e47111.xdr and b/test-lcm-current/FrozenLedgerKeysTests/1c2cdf10f2e47111.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/1d6ae312fba487bb.xdr b/test-lcm-current/FrozenLedgerKeysTests/1d6ae312fba487bb.xdr index 1e0851d06f..e32b8e8f5f 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/1d6ae312fba487bb.xdr and b/test-lcm-current/FrozenLedgerKeysTests/1d6ae312fba487bb.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/1e016cd08d89d64c.xdr b/test-lcm-current/FrozenLedgerKeysTests/1e016cd08d89d64c.xdr index 2bbcdf9c17..f905b3a19b 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/1e016cd08d89d64c.xdr and b/test-lcm-current/FrozenLedgerKeysTests/1e016cd08d89d64c.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/22c18bc7dafd431d.xdr b/test-lcm-current/FrozenLedgerKeysTests/22c18bc7dafd431d.xdr index 4160269719..887f0e7de2 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/22c18bc7dafd431d.xdr and b/test-lcm-current/FrozenLedgerKeysTests/22c18bc7dafd431d.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/233d74d8369feacb.xdr b/test-lcm-current/FrozenLedgerKeysTests/233d74d8369feacb.xdr index eb65b479d5..fdd4720936 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/233d74d8369feacb.xdr and b/test-lcm-current/FrozenLedgerKeysTests/233d74d8369feacb.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/27e094a33ea270ce.xdr b/test-lcm-current/FrozenLedgerKeysTests/27e094a33ea270ce.xdr index 56c48bd07d..32c0b1fef2 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/27e094a33ea270ce.xdr and b/test-lcm-current/FrozenLedgerKeysTests/27e094a33ea270ce.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/2c135153a34652ed.xdr b/test-lcm-current/FrozenLedgerKeysTests/2c135153a34652ed.xdr index 43fbbee7b8..c86d22cb4b 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/2c135153a34652ed.xdr and b/test-lcm-current/FrozenLedgerKeysTests/2c135153a34652ed.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/2cc7de6ca7052b69.xdr b/test-lcm-current/FrozenLedgerKeysTests/2cc7de6ca7052b69.xdr index a7d4b4a240..e7fce0cce9 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/2cc7de6ca7052b69.xdr and b/test-lcm-current/FrozenLedgerKeysTests/2cc7de6ca7052b69.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/2d300368c9082831.xdr b/test-lcm-current/FrozenLedgerKeysTests/2d300368c9082831.xdr index 4370321c2b..c408c3376f 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/2d300368c9082831.xdr and b/test-lcm-current/FrozenLedgerKeysTests/2d300368c9082831.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/2ecd5ac1d64a632a.xdr b/test-lcm-current/FrozenLedgerKeysTests/2ecd5ac1d64a632a.xdr index 5c55d32a54..ca4e9cc8d9 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/2ecd5ac1d64a632a.xdr and b/test-lcm-current/FrozenLedgerKeysTests/2ecd5ac1d64a632a.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/33d3622012e7482d.xdr b/test-lcm-current/FrozenLedgerKeysTests/33d3622012e7482d.xdr index 7e02efd7ee..9e11302402 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/33d3622012e7482d.xdr and b/test-lcm-current/FrozenLedgerKeysTests/33d3622012e7482d.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/352575440c65c590.xdr b/test-lcm-current/FrozenLedgerKeysTests/352575440c65c590.xdr index 11fe753f67..88c90b5394 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/352575440c65c590.xdr and b/test-lcm-current/FrozenLedgerKeysTests/352575440c65c590.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/37c2d3c744db057c.xdr b/test-lcm-current/FrozenLedgerKeysTests/37c2d3c744db057c.xdr index f5b9eb88d0..620cc374ea 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/37c2d3c744db057c.xdr and b/test-lcm-current/FrozenLedgerKeysTests/37c2d3c744db057c.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/37dc6f1b853351d3.xdr b/test-lcm-current/FrozenLedgerKeysTests/37dc6f1b853351d3.xdr index e7a844654b..eba4b8eac9 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/37dc6f1b853351d3.xdr and b/test-lcm-current/FrozenLedgerKeysTests/37dc6f1b853351d3.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/395da6fd76d7d649.xdr b/test-lcm-current/FrozenLedgerKeysTests/395da6fd76d7d649.xdr index 91a04902a6..f46c1fcd25 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/395da6fd76d7d649.xdr and b/test-lcm-current/FrozenLedgerKeysTests/395da6fd76d7d649.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/3d6e5e32a6b48567.xdr b/test-lcm-current/FrozenLedgerKeysTests/3d6e5e32a6b48567.xdr index ad66122c2e..322b8a2e26 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/3d6e5e32a6b48567.xdr and b/test-lcm-current/FrozenLedgerKeysTests/3d6e5e32a6b48567.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/3dc9dab4e5a340ba.xdr b/test-lcm-current/FrozenLedgerKeysTests/3dc9dab4e5a340ba.xdr index 30db36cdd8..136e79ecb9 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/3dc9dab4e5a340ba.xdr and b/test-lcm-current/FrozenLedgerKeysTests/3dc9dab4e5a340ba.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/3dd2b1f80c573d23.xdr b/test-lcm-current/FrozenLedgerKeysTests/3dd2b1f80c573d23.xdr index 5655e48a53..df255330f1 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/3dd2b1f80c573d23.xdr and b/test-lcm-current/FrozenLedgerKeysTests/3dd2b1f80c573d23.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/3dd600739a73c9cd.xdr b/test-lcm-current/FrozenLedgerKeysTests/3dd600739a73c9cd.xdr index c2f06822d3..93debaa2d0 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/3dd600739a73c9cd.xdr and b/test-lcm-current/FrozenLedgerKeysTests/3dd600739a73c9cd.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/3e53ab37c0265962.xdr b/test-lcm-current/FrozenLedgerKeysTests/3e53ab37c0265962.xdr index 0a292f74c8..b8fd09985c 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/3e53ab37c0265962.xdr and b/test-lcm-current/FrozenLedgerKeysTests/3e53ab37c0265962.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/4e7a95b40ba45ec4.xdr b/test-lcm-current/FrozenLedgerKeysTests/4e7a95b40ba45ec4.xdr index 13f1fddf96..6ba31cdc8e 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/4e7a95b40ba45ec4.xdr and b/test-lcm-current/FrozenLedgerKeysTests/4e7a95b40ba45ec4.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/4f462cc49f7a3568.xdr b/test-lcm-current/FrozenLedgerKeysTests/4f462cc49f7a3568.xdr index 799bc29df4..875229b881 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/4f462cc49f7a3568.xdr and b/test-lcm-current/FrozenLedgerKeysTests/4f462cc49f7a3568.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/59ef7f546d376c85.xdr b/test-lcm-current/FrozenLedgerKeysTests/59ef7f546d376c85.xdr index fadb9d1250..9d20a82757 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/59ef7f546d376c85.xdr and b/test-lcm-current/FrozenLedgerKeysTests/59ef7f546d376c85.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/5b465c56327dab17.xdr b/test-lcm-current/FrozenLedgerKeysTests/5b465c56327dab17.xdr index ab7c9cd46b..4e97b5f05f 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/5b465c56327dab17.xdr and b/test-lcm-current/FrozenLedgerKeysTests/5b465c56327dab17.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/5dd915bcf807a0c3.xdr b/test-lcm-current/FrozenLedgerKeysTests/5dd915bcf807a0c3.xdr index ab7c9cd46b..4e97b5f05f 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/5dd915bcf807a0c3.xdr and b/test-lcm-current/FrozenLedgerKeysTests/5dd915bcf807a0c3.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/5e98f6024777fd63.xdr b/test-lcm-current/FrozenLedgerKeysTests/5e98f6024777fd63.xdr index 0af1a65f01..a517ac3ab4 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/5e98f6024777fd63.xdr and b/test-lcm-current/FrozenLedgerKeysTests/5e98f6024777fd63.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/5f5d524416da196a.xdr b/test-lcm-current/FrozenLedgerKeysTests/5f5d524416da196a.xdr index 1e3280c7d6..788e8e30cf 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/5f5d524416da196a.xdr and b/test-lcm-current/FrozenLedgerKeysTests/5f5d524416da196a.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/5f9dc515f9af2b30.xdr b/test-lcm-current/FrozenLedgerKeysTests/5f9dc515f9af2b30.xdr index 61e29bf779..955217ef90 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/5f9dc515f9af2b30.xdr and b/test-lcm-current/FrozenLedgerKeysTests/5f9dc515f9af2b30.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/61a97d20a77d2460.xdr b/test-lcm-current/FrozenLedgerKeysTests/61a97d20a77d2460.xdr index 0a292f74c8..b8fd09985c 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/61a97d20a77d2460.xdr and b/test-lcm-current/FrozenLedgerKeysTests/61a97d20a77d2460.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/66bd677986a05b7d.xdr b/test-lcm-current/FrozenLedgerKeysTests/66bd677986a05b7d.xdr index 23c4d6a07f..8931a54373 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/66bd677986a05b7d.xdr and b/test-lcm-current/FrozenLedgerKeysTests/66bd677986a05b7d.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/693594ca2a8ed1db.xdr b/test-lcm-current/FrozenLedgerKeysTests/693594ca2a8ed1db.xdr index 99aa7c9869..6ec3fef826 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/693594ca2a8ed1db.xdr and b/test-lcm-current/FrozenLedgerKeysTests/693594ca2a8ed1db.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/6a558ed58db514ee.xdr b/test-lcm-current/FrozenLedgerKeysTests/6a558ed58db514ee.xdr index 3d19d37864..89dfd2f2fa 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/6a558ed58db514ee.xdr and b/test-lcm-current/FrozenLedgerKeysTests/6a558ed58db514ee.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/6a5abe9a6365c9b2.xdr b/test-lcm-current/FrozenLedgerKeysTests/6a5abe9a6365c9b2.xdr index 487eb107c3..484f4bd14c 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/6a5abe9a6365c9b2.xdr and b/test-lcm-current/FrozenLedgerKeysTests/6a5abe9a6365c9b2.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/6c91038331995c3f.xdr b/test-lcm-current/FrozenLedgerKeysTests/6c91038331995c3f.xdr index b114c40ea4..ca47dee956 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/6c91038331995c3f.xdr and b/test-lcm-current/FrozenLedgerKeysTests/6c91038331995c3f.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/6fa3cd786ce04dd9.xdr b/test-lcm-current/FrozenLedgerKeysTests/6fa3cd786ce04dd9.xdr index 7363c4fc08..1cee6f7429 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/6fa3cd786ce04dd9.xdr and b/test-lcm-current/FrozenLedgerKeysTests/6fa3cd786ce04dd9.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/6fae3a68c806ec2d.xdr b/test-lcm-current/FrozenLedgerKeysTests/6fae3a68c806ec2d.xdr index a5effe7db5..5aaf4ab53a 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/6fae3a68c806ec2d.xdr and b/test-lcm-current/FrozenLedgerKeysTests/6fae3a68c806ec2d.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/74c8bfeabe26560a.xdr b/test-lcm-current/FrozenLedgerKeysTests/74c8bfeabe26560a.xdr index 8d0f6cbc2b..8df0935d03 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/74c8bfeabe26560a.xdr and b/test-lcm-current/FrozenLedgerKeysTests/74c8bfeabe26560a.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/7832644d33f07016.xdr b/test-lcm-current/FrozenLedgerKeysTests/7832644d33f07016.xdr index 4e52447bec..547d5aae0c 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/7832644d33f07016.xdr and b/test-lcm-current/FrozenLedgerKeysTests/7832644d33f07016.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/7c60bd0a8e0d39a0.xdr b/test-lcm-current/FrozenLedgerKeysTests/7c60bd0a8e0d39a0.xdr index 5803f9193b..ecfa3637f9 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/7c60bd0a8e0d39a0.xdr and b/test-lcm-current/FrozenLedgerKeysTests/7c60bd0a8e0d39a0.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/7d4cbe380503bd78.xdr b/test-lcm-current/FrozenLedgerKeysTests/7d4cbe380503bd78.xdr index 5ef4d99800..d5c7dda758 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/7d4cbe380503bd78.xdr and b/test-lcm-current/FrozenLedgerKeysTests/7d4cbe380503bd78.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/7e60b33e97cf0d0a.xdr b/test-lcm-current/FrozenLedgerKeysTests/7e60b33e97cf0d0a.xdr index 9cf3a065dd..5c4c4351fe 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/7e60b33e97cf0d0a.xdr and b/test-lcm-current/FrozenLedgerKeysTests/7e60b33e97cf0d0a.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/7e9cb3eb7498b526.xdr b/test-lcm-current/FrozenLedgerKeysTests/7e9cb3eb7498b526.xdr index 30db36cdd8..136e79ecb9 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/7e9cb3eb7498b526.xdr and b/test-lcm-current/FrozenLedgerKeysTests/7e9cb3eb7498b526.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/7ea017ea5bfde3f5.xdr b/test-lcm-current/FrozenLedgerKeysTests/7ea017ea5bfde3f5.xdr index b3cd21806e..fd69e4827b 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/7ea017ea5bfde3f5.xdr and b/test-lcm-current/FrozenLedgerKeysTests/7ea017ea5bfde3f5.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/82e842e08727efde.xdr b/test-lcm-current/FrozenLedgerKeysTests/82e842e08727efde.xdr index d4653a196f..0372973024 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/82e842e08727efde.xdr and b/test-lcm-current/FrozenLedgerKeysTests/82e842e08727efde.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/84cef76b68d93cc9.xdr b/test-lcm-current/FrozenLedgerKeysTests/84cef76b68d93cc9.xdr index 32362c6408..65e9fa4311 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/84cef76b68d93cc9.xdr and b/test-lcm-current/FrozenLedgerKeysTests/84cef76b68d93cc9.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/88686096bda31fb9.xdr b/test-lcm-current/FrozenLedgerKeysTests/88686096bda31fb9.xdr index 342e6891f9..4a1023ceb6 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/88686096bda31fb9.xdr and b/test-lcm-current/FrozenLedgerKeysTests/88686096bda31fb9.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/8b16614bc082b932.xdr b/test-lcm-current/FrozenLedgerKeysTests/8b16614bc082b932.xdr index 3819dcda01..3a887be7ff 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/8b16614bc082b932.xdr and b/test-lcm-current/FrozenLedgerKeysTests/8b16614bc082b932.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/90d52c9f9531509f.xdr b/test-lcm-current/FrozenLedgerKeysTests/90d52c9f9531509f.xdr index df726d788c..eb6fa063aa 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/90d52c9f9531509f.xdr and b/test-lcm-current/FrozenLedgerKeysTests/90d52c9f9531509f.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/92c3ac2898780b73.xdr b/test-lcm-current/FrozenLedgerKeysTests/92c3ac2898780b73.xdr index 6b97cf866e..60f47a582b 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/92c3ac2898780b73.xdr and b/test-lcm-current/FrozenLedgerKeysTests/92c3ac2898780b73.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/94dfaaeec842ae02.xdr b/test-lcm-current/FrozenLedgerKeysTests/94dfaaeec842ae02.xdr index e50cc6165d..3126cf3a8d 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/94dfaaeec842ae02.xdr and b/test-lcm-current/FrozenLedgerKeysTests/94dfaaeec842ae02.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/95c3de7b21facafb.xdr b/test-lcm-current/FrozenLedgerKeysTests/95c3de7b21facafb.xdr index 4f8a806788..f14bdead85 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/95c3de7b21facafb.xdr and b/test-lcm-current/FrozenLedgerKeysTests/95c3de7b21facafb.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/968502a58dcf1de3.xdr b/test-lcm-current/FrozenLedgerKeysTests/968502a58dcf1de3.xdr index dd1b9ffb7f..d6b211160a 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/968502a58dcf1de3.xdr and b/test-lcm-current/FrozenLedgerKeysTests/968502a58dcf1de3.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/971412d60c95c2db.xdr b/test-lcm-current/FrozenLedgerKeysTests/971412d60c95c2db.xdr index 79865d075f..2367e85089 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/971412d60c95c2db.xdr and b/test-lcm-current/FrozenLedgerKeysTests/971412d60c95c2db.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/97b646ed2e8eda2c.xdr b/test-lcm-current/FrozenLedgerKeysTests/97b646ed2e8eda2c.xdr index 82ec9dfcb3..7094c47a60 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/97b646ed2e8eda2c.xdr and b/test-lcm-current/FrozenLedgerKeysTests/97b646ed2e8eda2c.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/97d8d6bf78ee1cbb.xdr b/test-lcm-current/FrozenLedgerKeysTests/97d8d6bf78ee1cbb.xdr index 5477c10654..d8eff2e6db 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/97d8d6bf78ee1cbb.xdr and b/test-lcm-current/FrozenLedgerKeysTests/97d8d6bf78ee1cbb.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/9b73d1cab44af790.xdr b/test-lcm-current/FrozenLedgerKeysTests/9b73d1cab44af790.xdr index 722a5ee398..de8c91d42e 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/9b73d1cab44af790.xdr and b/test-lcm-current/FrozenLedgerKeysTests/9b73d1cab44af790.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/9de21df1739fe25b.xdr b/test-lcm-current/FrozenLedgerKeysTests/9de21df1739fe25b.xdr index 302e42b6d7..cd9e6293c6 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/9de21df1739fe25b.xdr and b/test-lcm-current/FrozenLedgerKeysTests/9de21df1739fe25b.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/9f2fb4fd2d09521f.xdr b/test-lcm-current/FrozenLedgerKeysTests/9f2fb4fd2d09521f.xdr index 30db36cdd8..136e79ecb9 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/9f2fb4fd2d09521f.xdr and b/test-lcm-current/FrozenLedgerKeysTests/9f2fb4fd2d09521f.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/9f45874d5e43989d.xdr b/test-lcm-current/FrozenLedgerKeysTests/9f45874d5e43989d.xdr index 183093be9a..5ae2075ddc 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/9f45874d5e43989d.xdr and b/test-lcm-current/FrozenLedgerKeysTests/9f45874d5e43989d.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/9fdee40b4a6bf39b.xdr b/test-lcm-current/FrozenLedgerKeysTests/9fdee40b4a6bf39b.xdr index 9a73cbd8ac..ee49e575d7 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/9fdee40b4a6bf39b.xdr and b/test-lcm-current/FrozenLedgerKeysTests/9fdee40b4a6bf39b.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/9ffa8716dcb286c0.xdr b/test-lcm-current/FrozenLedgerKeysTests/9ffa8716dcb286c0.xdr index b2343f5218..0c8e948c9d 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/9ffa8716dcb286c0.xdr and b/test-lcm-current/FrozenLedgerKeysTests/9ffa8716dcb286c0.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/a52d069eff3b6fc1.xdr b/test-lcm-current/FrozenLedgerKeysTests/a52d069eff3b6fc1.xdr index ed44840dc6..a08f360480 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/a52d069eff3b6fc1.xdr and b/test-lcm-current/FrozenLedgerKeysTests/a52d069eff3b6fc1.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/a6cf4357be0adade.xdr b/test-lcm-current/FrozenLedgerKeysTests/a6cf4357be0adade.xdr index 0a292f74c8..b8fd09985c 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/a6cf4357be0adade.xdr and b/test-lcm-current/FrozenLedgerKeysTests/a6cf4357be0adade.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/a7277d96a361ea72.xdr b/test-lcm-current/FrozenLedgerKeysTests/a7277d96a361ea72.xdr index 7e0da58bd3..92c251ffbe 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/a7277d96a361ea72.xdr and b/test-lcm-current/FrozenLedgerKeysTests/a7277d96a361ea72.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/a83e38c7dc6324a6.xdr b/test-lcm-current/FrozenLedgerKeysTests/a83e38c7dc6324a6.xdr index 65bdbdc148..9b035116c8 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/a83e38c7dc6324a6.xdr and b/test-lcm-current/FrozenLedgerKeysTests/a83e38c7dc6324a6.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/a90b9e3d0747fc24.xdr b/test-lcm-current/FrozenLedgerKeysTests/a90b9e3d0747fc24.xdr index ab7c9cd46b..4e97b5f05f 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/a90b9e3d0747fc24.xdr and b/test-lcm-current/FrozenLedgerKeysTests/a90b9e3d0747fc24.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/a99193a97590525a.xdr b/test-lcm-current/FrozenLedgerKeysTests/a99193a97590525a.xdr index 4f5229af59..c18b7452a7 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/a99193a97590525a.xdr and b/test-lcm-current/FrozenLedgerKeysTests/a99193a97590525a.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/aed719c9f3cffe43.xdr b/test-lcm-current/FrozenLedgerKeysTests/aed719c9f3cffe43.xdr index fac622f9ee..8758bb94c4 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/aed719c9f3cffe43.xdr and b/test-lcm-current/FrozenLedgerKeysTests/aed719c9f3cffe43.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/b0eee42015a2800e.xdr b/test-lcm-current/FrozenLedgerKeysTests/b0eee42015a2800e.xdr index 9aa518f414..959721e2c4 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/b0eee42015a2800e.xdr and b/test-lcm-current/FrozenLedgerKeysTests/b0eee42015a2800e.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/b1412f5ef3c6844a.xdr b/test-lcm-current/FrozenLedgerKeysTests/b1412f5ef3c6844a.xdr index 79bcfaee52..fa86f988ba 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/b1412f5ef3c6844a.xdr and b/test-lcm-current/FrozenLedgerKeysTests/b1412f5ef3c6844a.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/b17d186e3b574cc9.xdr b/test-lcm-current/FrozenLedgerKeysTests/b17d186e3b574cc9.xdr index a4d02a5647..51cbfd37b9 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/b17d186e3b574cc9.xdr and b/test-lcm-current/FrozenLedgerKeysTests/b17d186e3b574cc9.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/b56fb200a9935407.xdr b/test-lcm-current/FrozenLedgerKeysTests/b56fb200a9935407.xdr index c774b77bb6..77f299874c 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/b56fb200a9935407.xdr and b/test-lcm-current/FrozenLedgerKeysTests/b56fb200a9935407.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/b76397dcb0e46f93.xdr b/test-lcm-current/FrozenLedgerKeysTests/b76397dcb0e46f93.xdr index 5b671e4a15..64408e86e8 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/b76397dcb0e46f93.xdr and b/test-lcm-current/FrozenLedgerKeysTests/b76397dcb0e46f93.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/b871f9e66b3df4a4.xdr b/test-lcm-current/FrozenLedgerKeysTests/b871f9e66b3df4a4.xdr index db229cc26b..a22f67582e 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/b871f9e66b3df4a4.xdr and b/test-lcm-current/FrozenLedgerKeysTests/b871f9e66b3df4a4.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/be86f12c1a3c4428.xdr b/test-lcm-current/FrozenLedgerKeysTests/be86f12c1a3c4428.xdr index eb65b479d5..fdd4720936 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/be86f12c1a3c4428.xdr and b/test-lcm-current/FrozenLedgerKeysTests/be86f12c1a3c4428.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/bf172f61f0f1bf37.xdr b/test-lcm-current/FrozenLedgerKeysTests/bf172f61f0f1bf37.xdr index 93a7561f29..a966d443d9 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/bf172f61f0f1bf37.xdr and b/test-lcm-current/FrozenLedgerKeysTests/bf172f61f0f1bf37.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/c1da25bdd5f37532.xdr b/test-lcm-current/FrozenLedgerKeysTests/c1da25bdd5f37532.xdr index 30db36cdd8..136e79ecb9 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/c1da25bdd5f37532.xdr and b/test-lcm-current/FrozenLedgerKeysTests/c1da25bdd5f37532.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/c56e571da1b376c9.xdr b/test-lcm-current/FrozenLedgerKeysTests/c56e571da1b376c9.xdr index 382564a302..3a29732797 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/c56e571da1b376c9.xdr and b/test-lcm-current/FrozenLedgerKeysTests/c56e571da1b376c9.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/c981497abd448c3f.xdr b/test-lcm-current/FrozenLedgerKeysTests/c981497abd448c3f.xdr index 8f4c5fd756..645e497181 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/c981497abd448c3f.xdr and b/test-lcm-current/FrozenLedgerKeysTests/c981497abd448c3f.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/cbfd70c53b96ff0c.xdr b/test-lcm-current/FrozenLedgerKeysTests/cbfd70c53b96ff0c.xdr index ab7c9cd46b..4e97b5f05f 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/cbfd70c53b96ff0c.xdr and b/test-lcm-current/FrozenLedgerKeysTests/cbfd70c53b96ff0c.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/cd95267fadf7bb22.xdr b/test-lcm-current/FrozenLedgerKeysTests/cd95267fadf7bb22.xdr index a40ca8372a..997ae1807a 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/cd95267fadf7bb22.xdr and b/test-lcm-current/FrozenLedgerKeysTests/cd95267fadf7bb22.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/ce3d2b256f805a34.xdr b/test-lcm-current/FrozenLedgerKeysTests/ce3d2b256f805a34.xdr index ee96933262..86bff5ee72 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/ce3d2b256f805a34.xdr and b/test-lcm-current/FrozenLedgerKeysTests/ce3d2b256f805a34.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/cfbae9c5c8b66206.xdr b/test-lcm-current/FrozenLedgerKeysTests/cfbae9c5c8b66206.xdr index e4eae157b7..501fb4a8f1 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/cfbae9c5c8b66206.xdr and b/test-lcm-current/FrozenLedgerKeysTests/cfbae9c5c8b66206.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/d4abe4b07bba98dd.xdr b/test-lcm-current/FrozenLedgerKeysTests/d4abe4b07bba98dd.xdr index bd7322e939..039dd04074 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/d4abe4b07bba98dd.xdr and b/test-lcm-current/FrozenLedgerKeysTests/d4abe4b07bba98dd.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/d55bb5b0991f7f30.xdr b/test-lcm-current/FrozenLedgerKeysTests/d55bb5b0991f7f30.xdr index f0926e1871..c953162791 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/d55bb5b0991f7f30.xdr and b/test-lcm-current/FrozenLedgerKeysTests/d55bb5b0991f7f30.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/d62a40e1e6c94407.xdr b/test-lcm-current/FrozenLedgerKeysTests/d62a40e1e6c94407.xdr index 494c3822c4..f87b96465a 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/d62a40e1e6c94407.xdr and b/test-lcm-current/FrozenLedgerKeysTests/d62a40e1e6c94407.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/d7889dabf9db8ae0.xdr b/test-lcm-current/FrozenLedgerKeysTests/d7889dabf9db8ae0.xdr index 10516c4792..50ba80a581 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/d7889dabf9db8ae0.xdr and b/test-lcm-current/FrozenLedgerKeysTests/d7889dabf9db8ae0.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/d8ed7e56f9a5fa9a.xdr b/test-lcm-current/FrozenLedgerKeysTests/d8ed7e56f9a5fa9a.xdr index a43423d32c..94cd1a31dc 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/d8ed7e56f9a5fa9a.xdr and b/test-lcm-current/FrozenLedgerKeysTests/d8ed7e56f9a5fa9a.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/d9197ac0364b429d.xdr b/test-lcm-current/FrozenLedgerKeysTests/d9197ac0364b429d.xdr index ab7c9cd46b..4e97b5f05f 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/d9197ac0364b429d.xdr and b/test-lcm-current/FrozenLedgerKeysTests/d9197ac0364b429d.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/d9a26f74c76ec5fe.xdr b/test-lcm-current/FrozenLedgerKeysTests/d9a26f74c76ec5fe.xdr index 6482e5eff7..ac74aabe73 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/d9a26f74c76ec5fe.xdr and b/test-lcm-current/FrozenLedgerKeysTests/d9a26f74c76ec5fe.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/dda5baf59d9d24fa.xdr b/test-lcm-current/FrozenLedgerKeysTests/dda5baf59d9d24fa.xdr index eaba620d52..9fa5f3eead 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/dda5baf59d9d24fa.xdr and b/test-lcm-current/FrozenLedgerKeysTests/dda5baf59d9d24fa.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/dfaa9a4ba1d5bac8.xdr b/test-lcm-current/FrozenLedgerKeysTests/dfaa9a4ba1d5bac8.xdr index bf185509a3..58a23751ca 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/dfaa9a4ba1d5bac8.xdr and b/test-lcm-current/FrozenLedgerKeysTests/dfaa9a4ba1d5bac8.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/e54f97e007f28f3a.xdr b/test-lcm-current/FrozenLedgerKeysTests/e54f97e007f28f3a.xdr index 7c5cf36592..b6446520c9 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/e54f97e007f28f3a.xdr and b/test-lcm-current/FrozenLedgerKeysTests/e54f97e007f28f3a.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/eb07a254c1f6d187.xdr b/test-lcm-current/FrozenLedgerKeysTests/eb07a254c1f6d187.xdr index 2149b8595c..70d0252f27 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/eb07a254c1f6d187.xdr and b/test-lcm-current/FrozenLedgerKeysTests/eb07a254c1f6d187.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/eb5978da5a37cd47.xdr b/test-lcm-current/FrozenLedgerKeysTests/eb5978da5a37cd47.xdr index 93a7561f29..a966d443d9 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/eb5978da5a37cd47.xdr and b/test-lcm-current/FrozenLedgerKeysTests/eb5978da5a37cd47.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/f00ec39cd6781faf.xdr b/test-lcm-current/FrozenLedgerKeysTests/f00ec39cd6781faf.xdr index 0334536450..f66b61af5b 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/f00ec39cd6781faf.xdr and b/test-lcm-current/FrozenLedgerKeysTests/f00ec39cd6781faf.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/f1c47fc06e54b090.xdr b/test-lcm-current/FrozenLedgerKeysTests/f1c47fc06e54b090.xdr index 390767b450..cbde5cfa18 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/f1c47fc06e54b090.xdr and b/test-lcm-current/FrozenLedgerKeysTests/f1c47fc06e54b090.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/f4bb246ec9780039.xdr b/test-lcm-current/FrozenLedgerKeysTests/f4bb246ec9780039.xdr index dcf7ff73e8..93ab5f9cea 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/f4bb246ec9780039.xdr and b/test-lcm-current/FrozenLedgerKeysTests/f4bb246ec9780039.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/f58a584ef5d545bb.xdr b/test-lcm-current/FrozenLedgerKeysTests/f58a584ef5d545bb.xdr index 30db36cdd8..136e79ecb9 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/f58a584ef5d545bb.xdr and b/test-lcm-current/FrozenLedgerKeysTests/f58a584ef5d545bb.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/f5cc954b49f207f0.xdr b/test-lcm-current/FrozenLedgerKeysTests/f5cc954b49f207f0.xdr index 1ac1b8cf78..f262c40ef9 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/f5cc954b49f207f0.xdr and b/test-lcm-current/FrozenLedgerKeysTests/f5cc954b49f207f0.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/f790a9565ea4b914.xdr b/test-lcm-current/FrozenLedgerKeysTests/f790a9565ea4b914.xdr index c34884987d..a28aef13d4 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/f790a9565ea4b914.xdr and b/test-lcm-current/FrozenLedgerKeysTests/f790a9565ea4b914.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/f792ea98a5b2057e.xdr b/test-lcm-current/FrozenLedgerKeysTests/f792ea98a5b2057e.xdr index ab7c9cd46b..4e97b5f05f 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/f792ea98a5b2057e.xdr and b/test-lcm-current/FrozenLedgerKeysTests/f792ea98a5b2057e.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/f84821960123588e.xdr b/test-lcm-current/FrozenLedgerKeysTests/f84821960123588e.xdr index 0f7095d0a1..0374a1bbeb 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/f84821960123588e.xdr and b/test-lcm-current/FrozenLedgerKeysTests/f84821960123588e.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/fd5da6cc6e5623a5.xdr b/test-lcm-current/FrozenLedgerKeysTests/fd5da6cc6e5623a5.xdr index cbf5587491..d1d3112f4d 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/fd5da6cc6e5623a5.xdr and b/test-lcm-current/FrozenLedgerKeysTests/fd5da6cc6e5623a5.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/fe99942900ae7d38.xdr b/test-lcm-current/FrozenLedgerKeysTests/fe99942900ae7d38.xdr index ae01afb2b5..8418ea58f9 100644 Binary files a/test-lcm-current/FrozenLedgerKeysTests/fe99942900ae7d38.xdr and b/test-lcm-current/FrozenLedgerKeysTests/fe99942900ae7d38.xdr differ diff --git a/test-lcm-current/FrozenLedgerKeysTests/index.json b/test-lcm-current/FrozenLedgerKeysTests/index.json index a1aa219356..0a55f60879 100644 --- a/test-lcm-current/FrozenLedgerKeysTests/index.json +++ b/test-lcm-current/FrozenLedgerKeysTests/index.json @@ -1,4 +1,8 @@ { + "!cfg protocol version" : 28, + "!rng seed" : 12345, + "!test all versions" : false, + "!versions to test" : [ 28 ], "0130d32614dbc252" : "source_trustline_frozen-ManageSellOffer_selling_trustline_frozen", "0269778d4c3c115b" : "source_trustline_frozen-ChangeTrustOp_trustline_frozen", "03768f1cbe0eed0d" : "frozen_ledger_keys_DEX_offer_operations-second_offer_frozen_[create-passive-sell][credit-native][selling-frozen]", diff --git a/test-lcm-current/InvokeHostFunctionTests/0046300f950c0211.xdr b/test-lcm-current/InvokeHostFunctionTests/0046300f950c0211.xdr index 512d277c4f..1e223f867d 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/0046300f950c0211.xdr and b/test-lcm-current/InvokeHostFunctionTests/0046300f950c0211.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/00e76ef8f869401f.xdr b/test-lcm-current/InvokeHostFunctionTests/00e76ef8f869401f.xdr index d7de5aa68a..71e9a5b257 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/00e76ef8f869401f.xdr and b/test-lcm-current/InvokeHostFunctionTests/00e76ef8f869401f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/014fcfa4f59b51d4.xdr b/test-lcm-current/InvokeHostFunctionTests/014fcfa4f59b51d4.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/014fcfa4f59b51d4.xdr and b/test-lcm-current/InvokeHostFunctionTests/014fcfa4f59b51d4.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/018599ef4068218e.xdr b/test-lcm-current/InvokeHostFunctionTests/018599ef4068218e.xdr index 1c4ac82d57..0ff51624da 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/018599ef4068218e.xdr and b/test-lcm-current/InvokeHostFunctionTests/018599ef4068218e.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/02fb5ff643f4c29b.xdr b/test-lcm-current/InvokeHostFunctionTests/02fb5ff643f4c29b.xdr deleted file mode 100644 index a1db5db7b7..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/02fb5ff643f4c29b.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/03560ea94d548ceb.xdr b/test-lcm-current/InvokeHostFunctionTests/03560ea94d548ceb.xdr index b697ecf69d..11d290b846 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/03560ea94d548ceb.xdr and b/test-lcm-current/InvokeHostFunctionTests/03560ea94d548ceb.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/03a5e8d5ea1d3a10.xdr b/test-lcm-current/InvokeHostFunctionTests/03a5e8d5ea1d3a10.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/03a5e8d5ea1d3a10.xdr and b/test-lcm-current/InvokeHostFunctionTests/03a5e8d5ea1d3a10.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/03df1dc73d71eb00.xdr b/test-lcm-current/InvokeHostFunctionTests/03df1dc73d71eb00.xdr index 62c38119d8..b66130f9ee 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/03df1dc73d71eb00.xdr and b/test-lcm-current/InvokeHostFunctionTests/03df1dc73d71eb00.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/03f6b69ffc36df5a.xdr b/test-lcm-current/InvokeHostFunctionTests/03f6b69ffc36df5a.xdr deleted file mode 100644 index 73349f7659..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/03f6b69ffc36df5a.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/04530f6112a41176.xdr b/test-lcm-current/InvokeHostFunctionTests/04530f6112a41176.xdr index c1430292ca..2d08e73f4d 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/04530f6112a41176.xdr and b/test-lcm-current/InvokeHostFunctionTests/04530f6112a41176.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/0470c77e04ef179a.xdr b/test-lcm-current/InvokeHostFunctionTests/0470c77e04ef179a.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/0470c77e04ef179a.xdr rename to test-lcm-current/InvokeHostFunctionTests/0470c77e04ef179a.xdr index 1295a53317..19768dbef0 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/0470c77e04ef179a.xdr and b/test-lcm-current/InvokeHostFunctionTests/0470c77e04ef179a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/048c93e37abb62ea.xdr b/test-lcm-current/InvokeHostFunctionTests/048c93e37abb62ea.xdr index f9f71a5be1..75f3af3ddd 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/048c93e37abb62ea.xdr and b/test-lcm-current/InvokeHostFunctionTests/048c93e37abb62ea.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/04b00b08d10222a3.xdr b/test-lcm-current/InvokeHostFunctionTests/04b00b08d10222a3.xdr deleted file mode 100644 index e7736f9e92..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/04b00b08d10222a3.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/0525df1061c74b13.xdr b/test-lcm-current/InvokeHostFunctionTests/0525df1061c74b13.xdr index d1552dc8e7..51280dbd31 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/0525df1061c74b13.xdr and b/test-lcm-current/InvokeHostFunctionTests/0525df1061c74b13.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/0540c58d02f9c06b.xdr b/test-lcm-current/InvokeHostFunctionTests/0540c58d02f9c06b.xdr deleted file mode 100644 index baed0fc27b..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/0540c58d02f9c06b.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/05c88cab546ce496.xdr b/test-lcm-current/InvokeHostFunctionTests/05c88cab546ce496.xdr similarity index 92% rename from test-lcm-next/InvokeHostFunctionTests/05c88cab546ce496.xdr rename to test-lcm-current/InvokeHostFunctionTests/05c88cab546ce496.xdr index f946f28eaf..1dbbc5706c 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/05c88cab546ce496.xdr and b/test-lcm-current/InvokeHostFunctionTests/05c88cab546ce496.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/068bb21d88974e0d.xdr b/test-lcm-current/InvokeHostFunctionTests/068bb21d88974e0d.xdr index 00f3b2c5a6..5956b559cf 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/068bb21d88974e0d.xdr and b/test-lcm-current/InvokeHostFunctionTests/068bb21d88974e0d.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/06cbc0fe2a3f8280.xdr b/test-lcm-current/InvokeHostFunctionTests/06cbc0fe2a3f8280.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/06cbc0fe2a3f8280.xdr and b/test-lcm-current/InvokeHostFunctionTests/06cbc0fe2a3f8280.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/06dbcdf735c773cd.xdr b/test-lcm-current/InvokeHostFunctionTests/06dbcdf735c773cd.xdr deleted file mode 100644 index 22948245f8..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/06dbcdf735c773cd.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/0706b7146a33b84a.xdr b/test-lcm-current/InvokeHostFunctionTests/0706b7146a33b84a.xdr deleted file mode 100644 index 4a68097e07..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/0706b7146a33b84a.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/075b4bea01d35444.xdr b/test-lcm-current/InvokeHostFunctionTests/075b4bea01d35444.xdr index 2c7aadabed..518a4479cc 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/075b4bea01d35444.xdr and b/test-lcm-current/InvokeHostFunctionTests/075b4bea01d35444.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/07c78b13b19c1cca.xdr b/test-lcm-current/InvokeHostFunctionTests/07c78b13b19c1cca.xdr index 9ff62068c9..8b8f95ae02 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/07c78b13b19c1cca.xdr and b/test-lcm-current/InvokeHostFunctionTests/07c78b13b19c1cca.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/090b6171bc887479.xdr b/test-lcm-current/InvokeHostFunctionTests/090b6171bc887479.xdr index f7df911129..ec67485455 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/090b6171bc887479.xdr and b/test-lcm-current/InvokeHostFunctionTests/090b6171bc887479.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/091f6d22b48f7501.xdr b/test-lcm-current/InvokeHostFunctionTests/091f6d22b48f7501.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/091f6d22b48f7501.xdr and b/test-lcm-current/InvokeHostFunctionTests/091f6d22b48f7501.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/09b571acb76aa819.xdr b/test-lcm-current/InvokeHostFunctionTests/09b571acb76aa819.xdr index 8aad4ed1d4..a50d14b462 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/09b571acb76aa819.xdr and b/test-lcm-current/InvokeHostFunctionTests/09b571acb76aa819.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/09e3525781c1197d.xdr b/test-lcm-current/InvokeHostFunctionTests/09e3525781c1197d.xdr index 50b93596cb..ab6c1d603d 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/09e3525781c1197d.xdr and b/test-lcm-current/InvokeHostFunctionTests/09e3525781c1197d.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/09efa855e6310bd6.xdr b/test-lcm-current/InvokeHostFunctionTests/09efa855e6310bd6.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/09efa855e6310bd6.xdr and b/test-lcm-current/InvokeHostFunctionTests/09efa855e6310bd6.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/0a490b46a65b3382.xdr b/test-lcm-current/InvokeHostFunctionTests/0a490b46a65b3382.xdr index d638256db3..e9ef70f347 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/0a490b46a65b3382.xdr and b/test-lcm-current/InvokeHostFunctionTests/0a490b46a65b3382.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/0a50a6fd01fac663.xdr b/test-lcm-current/InvokeHostFunctionTests/0a50a6fd01fac663.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/0a50a6fd01fac663.xdr and b/test-lcm-current/InvokeHostFunctionTests/0a50a6fd01fac663.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/0a5c74765d1481ad.xdr b/test-lcm-current/InvokeHostFunctionTests/0a5c74765d1481ad.xdr index ad045673dd..0042006f11 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/0a5c74765d1481ad.xdr and b/test-lcm-current/InvokeHostFunctionTests/0a5c74765d1481ad.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/0a7c39ca98f1ae85.xdr b/test-lcm-current/InvokeHostFunctionTests/0a7c39ca98f1ae85.xdr index d1239377da..123d0931fb 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/0a7c39ca98f1ae85.xdr and b/test-lcm-current/InvokeHostFunctionTests/0a7c39ca98f1ae85.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/0a9a9e7662e8f5b0.xdr b/test-lcm-current/InvokeHostFunctionTests/0a9a9e7662e8f5b0.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/0a9a9e7662e8f5b0.xdr and b/test-lcm-current/InvokeHostFunctionTests/0a9a9e7662e8f5b0.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/0b38afb8b9aaa794.xdr b/test-lcm-current/InvokeHostFunctionTests/0b38afb8b9aaa794.xdr index 7f3ba738bf..4c4cd66458 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/0b38afb8b9aaa794.xdr and b/test-lcm-current/InvokeHostFunctionTests/0b38afb8b9aaa794.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/0bb6a273d7e63e28.xdr b/test-lcm-current/InvokeHostFunctionTests/0bb6a273d7e63e28.xdr deleted file mode 100644 index 18131c3e78..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/0bb6a273d7e63e28.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/0c35da322a33f3c2.xdr b/test-lcm-current/InvokeHostFunctionTests/0c35da322a33f3c2.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/0c35da322a33f3c2.xdr and b/test-lcm-current/InvokeHostFunctionTests/0c35da322a33f3c2.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/0c43ba995c341a31.xdr b/test-lcm-current/InvokeHostFunctionTests/0c43ba995c341a31.xdr index 5900d24ebf..6a3d411f95 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/0c43ba995c341a31.xdr and b/test-lcm-current/InvokeHostFunctionTests/0c43ba995c341a31.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/0c775185679f70cb.xdr b/test-lcm-current/InvokeHostFunctionTests/0c775185679f70cb.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/0c775185679f70cb.xdr rename to test-lcm-current/InvokeHostFunctionTests/0c775185679f70cb.xdr index ac6cf65eaf..4e3da6ac23 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/0c775185679f70cb.xdr and b/test-lcm-current/InvokeHostFunctionTests/0c775185679f70cb.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/0c92eb78da37bfdd.xdr b/test-lcm-current/InvokeHostFunctionTests/0c92eb78da37bfdd.xdr index 2aaf62d81d..27afc68ad5 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/0c92eb78da37bfdd.xdr and b/test-lcm-current/InvokeHostFunctionTests/0c92eb78da37bfdd.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/0cb06b7800ce099c.xdr b/test-lcm-current/InvokeHostFunctionTests/0cb06b7800ce099c.xdr index 4268acf8a9..4d14c5828b 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/0cb06b7800ce099c.xdr and b/test-lcm-current/InvokeHostFunctionTests/0cb06b7800ce099c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/0cfa6a9a348ad29f.xdr b/test-lcm-current/InvokeHostFunctionTests/0cfa6a9a348ad29f.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/0cfa6a9a348ad29f.xdr and b/test-lcm-current/InvokeHostFunctionTests/0cfa6a9a348ad29f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/0d6e850f5668faef.xdr b/test-lcm-current/InvokeHostFunctionTests/0d6e850f5668faef.xdr index 711cafda9f..ee2d946686 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/0d6e850f5668faef.xdr and b/test-lcm-current/InvokeHostFunctionTests/0d6e850f5668faef.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/0e54ece7b7219a81.xdr b/test-lcm-current/InvokeHostFunctionTests/0e54ece7b7219a81.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/0e54ece7b7219a81.xdr and b/test-lcm-current/InvokeHostFunctionTests/0e54ece7b7219a81.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/0f97452228eac10a.xdr b/test-lcm-current/InvokeHostFunctionTests/0f97452228eac10a.xdr index 119b04ce72..63cc80338d 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/0f97452228eac10a.xdr and b/test-lcm-current/InvokeHostFunctionTests/0f97452228eac10a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/102ec8047ba9b73e.xdr b/test-lcm-current/InvokeHostFunctionTests/102ec8047ba9b73e.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/102ec8047ba9b73e.xdr and b/test-lcm-current/InvokeHostFunctionTests/102ec8047ba9b73e.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/11db6d39fd0eae58.xdr b/test-lcm-current/InvokeHostFunctionTests/11db6d39fd0eae58.xdr deleted file mode 100644 index 7c45a69b61..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/11db6d39fd0eae58.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/12400eda8720567b.xdr b/test-lcm-current/InvokeHostFunctionTests/12400eda8720567b.xdr index 321ce57498..9221da02bd 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/12400eda8720567b.xdr and b/test-lcm-current/InvokeHostFunctionTests/12400eda8720567b.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/12b1e74d406d16ee.xdr b/test-lcm-current/InvokeHostFunctionTests/12b1e74d406d16ee.xdr deleted file mode 100644 index e50819680a..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/12b1e74d406d16ee.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/12e5bf578c813325.xdr b/test-lcm-current/InvokeHostFunctionTests/12e5bf578c813325.xdr index 6dc8bca74c..b8c71f535c 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/12e5bf578c813325.xdr and b/test-lcm-current/InvokeHostFunctionTests/12e5bf578c813325.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/133235aeb624b4fb.xdr b/test-lcm-current/InvokeHostFunctionTests/133235aeb624b4fb.xdr index 5e53df97ce..0ccc50ec45 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/133235aeb624b4fb.xdr and b/test-lcm-current/InvokeHostFunctionTests/133235aeb624b4fb.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/1395745c935c8a14.xdr b/test-lcm-current/InvokeHostFunctionTests/1395745c935c8a14.xdr index 469269c62d..a5d5d347cd 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/1395745c935c8a14.xdr and b/test-lcm-current/InvokeHostFunctionTests/1395745c935c8a14.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/13ddfbcd91340230.xdr b/test-lcm-current/InvokeHostFunctionTests/13ddfbcd91340230.xdr index a344d830c5..fc69b400fd 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/13ddfbcd91340230.xdr and b/test-lcm-current/InvokeHostFunctionTests/13ddfbcd91340230.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/13f416a9b53c779a.xdr b/test-lcm-current/InvokeHostFunctionTests/13f416a9b53c779a.xdr index 3c6555768d..033f10110e 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/13f416a9b53c779a.xdr and b/test-lcm-current/InvokeHostFunctionTests/13f416a9b53c779a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/14407acab9b18289.xdr b/test-lcm-current/InvokeHostFunctionTests/14407acab9b18289.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/14407acab9b18289.xdr and b/test-lcm-current/InvokeHostFunctionTests/14407acab9b18289.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/1452c35fbbe6c3ab.xdr b/test-lcm-current/InvokeHostFunctionTests/1452c35fbbe6c3ab.xdr index 1271ff3b57..54bc333b20 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/1452c35fbbe6c3ab.xdr and b/test-lcm-current/InvokeHostFunctionTests/1452c35fbbe6c3ab.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/1484cd9b56513ed7.xdr b/test-lcm-current/InvokeHostFunctionTests/1484cd9b56513ed7.xdr index a0484090d4..ad6c939bbd 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/1484cd9b56513ed7.xdr and b/test-lcm-current/InvokeHostFunctionTests/1484cd9b56513ed7.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/1538a12625fd25fb.xdr b/test-lcm-current/InvokeHostFunctionTests/1538a12625fd25fb.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/1538a12625fd25fb.xdr rename to test-lcm-current/InvokeHostFunctionTests/1538a12625fd25fb.xdr index a3f39c0bc7..4cc84c9ef6 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/1538a12625fd25fb.xdr and b/test-lcm-current/InvokeHostFunctionTests/1538a12625fd25fb.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/15a4d85f5dd2fd3b.xdr b/test-lcm-current/InvokeHostFunctionTests/15a4d85f5dd2fd3b.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/15a4d85f5dd2fd3b.xdr rename to test-lcm-current/InvokeHostFunctionTests/15a4d85f5dd2fd3b.xdr index 1fc2b17e07..9ec918dba4 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/15a4d85f5dd2fd3b.xdr and b/test-lcm-current/InvokeHostFunctionTests/15a4d85f5dd2fd3b.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/15bc83b6792d6072.xdr b/test-lcm-current/InvokeHostFunctionTests/15bc83b6792d6072.xdr index ea5a4ac50b..9efca96283 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/15bc83b6792d6072.xdr and b/test-lcm-current/InvokeHostFunctionTests/15bc83b6792d6072.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/15ecaba55fd111cc.xdr b/test-lcm-current/InvokeHostFunctionTests/15ecaba55fd111cc.xdr index 23eb658e98..76c8ca4f9c 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/15ecaba55fd111cc.xdr and b/test-lcm-current/InvokeHostFunctionTests/15ecaba55fd111cc.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/1648891cd7b9ac4f.xdr b/test-lcm-current/InvokeHostFunctionTests/1648891cd7b9ac4f.xdr index c2ada89447..97b2ce027f 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/1648891cd7b9ac4f.xdr and b/test-lcm-current/InvokeHostFunctionTests/1648891cd7b9ac4f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/165a1612aefb1f12.xdr b/test-lcm-current/InvokeHostFunctionTests/165a1612aefb1f12.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/165a1612aefb1f12.xdr and b/test-lcm-current/InvokeHostFunctionTests/165a1612aefb1f12.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/169611b4e9b946c9.xdr b/test-lcm-current/InvokeHostFunctionTests/169611b4e9b946c9.xdr index 0f4ee2bbd6..9c624684b6 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/169611b4e9b946c9.xdr and b/test-lcm-current/InvokeHostFunctionTests/169611b4e9b946c9.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/169eaf7fc82af3dc.xdr b/test-lcm-current/InvokeHostFunctionTests/169eaf7fc82af3dc.xdr index a7d2ae2cd1..b023eced9e 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/169eaf7fc82af3dc.xdr and b/test-lcm-current/InvokeHostFunctionTests/169eaf7fc82af3dc.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/16b5f93e30d64633.xdr b/test-lcm-current/InvokeHostFunctionTests/16b5f93e30d64633.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/16b5f93e30d64633.xdr rename to test-lcm-current/InvokeHostFunctionTests/16b5f93e30d64633.xdr index 39ab0a9fa8..ea145c785b 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/16b5f93e30d64633.xdr and b/test-lcm-current/InvokeHostFunctionTests/16b5f93e30d64633.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/16bac056666df725.xdr b/test-lcm-current/InvokeHostFunctionTests/16bac056666df725.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/16bac056666df725.xdr and b/test-lcm-current/InvokeHostFunctionTests/16bac056666df725.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/17ee1ab07947fa54.xdr b/test-lcm-current/InvokeHostFunctionTests/17ee1ab07947fa54.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/17ee1ab07947fa54.xdr rename to test-lcm-current/InvokeHostFunctionTests/17ee1ab07947fa54.xdr index 19505dc4b2..1c0f70ab7a 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/17ee1ab07947fa54.xdr and b/test-lcm-current/InvokeHostFunctionTests/17ee1ab07947fa54.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/192dc34906478ab9.xdr b/test-lcm-current/InvokeHostFunctionTests/192dc34906478ab9.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/192dc34906478ab9.xdr and b/test-lcm-current/InvokeHostFunctionTests/192dc34906478ab9.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/193297e2240649fc.xdr b/test-lcm-current/InvokeHostFunctionTests/193297e2240649fc.xdr index 6f4ad5177d..23af8345a9 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/193297e2240649fc.xdr and b/test-lcm-current/InvokeHostFunctionTests/193297e2240649fc.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/1967a2d9962bb619.xdr b/test-lcm-current/InvokeHostFunctionTests/1967a2d9962bb619.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/1967a2d9962bb619.xdr and b/test-lcm-current/InvokeHostFunctionTests/1967a2d9962bb619.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/198ad94ac0412a8b.xdr b/test-lcm-current/InvokeHostFunctionTests/198ad94ac0412a8b.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/198ad94ac0412a8b.xdr and b/test-lcm-current/InvokeHostFunctionTests/198ad94ac0412a8b.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/1a8c5902e4afd03e.xdr b/test-lcm-current/InvokeHostFunctionTests/1a8c5902e4afd03e.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/1a8c5902e4afd03e.xdr and b/test-lcm-current/InvokeHostFunctionTests/1a8c5902e4afd03e.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/1adc68cc7a5cf88e.xdr b/test-lcm-current/InvokeHostFunctionTests/1adc68cc7a5cf88e.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/1adc68cc7a5cf88e.xdr and b/test-lcm-current/InvokeHostFunctionTests/1adc68cc7a5cf88e.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/1b18e4016bfdf294.xdr b/test-lcm-current/InvokeHostFunctionTests/1b18e4016bfdf294.xdr index 25a80da3af..4ec6659bc4 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/1b18e4016bfdf294.xdr and b/test-lcm-current/InvokeHostFunctionTests/1b18e4016bfdf294.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/1c3d83a0318651b9.xdr b/test-lcm-current/InvokeHostFunctionTests/1c3d83a0318651b9.xdr index 5f1836b485..b249ab2ef2 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/1c3d83a0318651b9.xdr and b/test-lcm-current/InvokeHostFunctionTests/1c3d83a0318651b9.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/1d5bfe4be2ebaacb.xdr b/test-lcm-current/InvokeHostFunctionTests/1d5bfe4be2ebaacb.xdr deleted file mode 100644 index 83477f81e5..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/1d5bfe4be2ebaacb.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/1d8e86ddd8b11e7b.xdr b/test-lcm-current/InvokeHostFunctionTests/1d8e86ddd8b11e7b.xdr deleted file mode 100644 index 2c53d85038..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/1d8e86ddd8b11e7b.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/1dd0d92b94ce7c6f.xdr b/test-lcm-current/InvokeHostFunctionTests/1dd0d92b94ce7c6f.xdr index 81a9d01c2e..f397df6258 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/1dd0d92b94ce7c6f.xdr and b/test-lcm-current/InvokeHostFunctionTests/1dd0d92b94ce7c6f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/1e3c70b0ecdbfb4f.xdr b/test-lcm-current/InvokeHostFunctionTests/1e3c70b0ecdbfb4f.xdr index 0d68904ab1..13263df6d0 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/1e3c70b0ecdbfb4f.xdr and b/test-lcm-current/InvokeHostFunctionTests/1e3c70b0ecdbfb4f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/1ec1111288c846ad.xdr b/test-lcm-current/InvokeHostFunctionTests/1ec1111288c846ad.xdr index 52ddd7d136..9c91811abe 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/1ec1111288c846ad.xdr and b/test-lcm-current/InvokeHostFunctionTests/1ec1111288c846ad.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/1f52ba0b7c5a13f0.xdr b/test-lcm-current/InvokeHostFunctionTests/1f52ba0b7c5a13f0.xdr similarity index 93% rename from test-lcm-next/InvokeHostFunctionTests/1f52ba0b7c5a13f0.xdr rename to test-lcm-current/InvokeHostFunctionTests/1f52ba0b7c5a13f0.xdr index 1774292dcf..50bb9690e7 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/1f52ba0b7c5a13f0.xdr and b/test-lcm-current/InvokeHostFunctionTests/1f52ba0b7c5a13f0.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/1f62f6743bb52550.xdr b/test-lcm-current/InvokeHostFunctionTests/1f62f6743bb52550.xdr index ba8450242a..ca57ca40eb 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/1f62f6743bb52550.xdr and b/test-lcm-current/InvokeHostFunctionTests/1f62f6743bb52550.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/2000b9cc2809a1b4.xdr b/test-lcm-current/InvokeHostFunctionTests/2000b9cc2809a1b4.xdr deleted file mode 100644 index 9d5d551264..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/2000b9cc2809a1b4.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/2055896750cd175f.xdr b/test-lcm-current/InvokeHostFunctionTests/2055896750cd175f.xdr new file mode 100644 index 0000000000..b5f9998c89 Binary files /dev/null and b/test-lcm-current/InvokeHostFunctionTests/2055896750cd175f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/2076a51f648569cd.xdr b/test-lcm-current/InvokeHostFunctionTests/2076a51f648569cd.xdr deleted file mode 100644 index c35f240bda..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/2076a51f648569cd.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/20868c9e218c2273.xdr b/test-lcm-current/InvokeHostFunctionTests/20868c9e218c2273.xdr deleted file mode 100644 index 0cfad3bf5b..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/20868c9e218c2273.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/20a6a4892d5acc69.xdr b/test-lcm-current/InvokeHostFunctionTests/20a6a4892d5acc69.xdr index 0dc37caf35..1241399137 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/20a6a4892d5acc69.xdr and b/test-lcm-current/InvokeHostFunctionTests/20a6a4892d5acc69.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/20b9b462d5735ae2.xdr b/test-lcm-current/InvokeHostFunctionTests/20b9b462d5735ae2.xdr index 96a62acfe2..27a575d061 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/20b9b462d5735ae2.xdr and b/test-lcm-current/InvokeHostFunctionTests/20b9b462d5735ae2.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/20c2b0f439ace889.xdr b/test-lcm-current/InvokeHostFunctionTests/20c2b0f439ace889.xdr index 13b083df6c..9522975cbe 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/20c2b0f439ace889.xdr and b/test-lcm-current/InvokeHostFunctionTests/20c2b0f439ace889.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/211f4a93951f94b4.xdr b/test-lcm-current/InvokeHostFunctionTests/211f4a93951f94b4.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/211f4a93951f94b4.xdr and b/test-lcm-current/InvokeHostFunctionTests/211f4a93951f94b4.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/21938ae254995cd4.xdr b/test-lcm-current/InvokeHostFunctionTests/21938ae254995cd4.xdr index b02a1cfb6e..4d747ead6c 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/21938ae254995cd4.xdr and b/test-lcm-current/InvokeHostFunctionTests/21938ae254995cd4.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/21ac7793688994ad.xdr b/test-lcm-current/InvokeHostFunctionTests/21ac7793688994ad.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/21ac7793688994ad.xdr and b/test-lcm-current/InvokeHostFunctionTests/21ac7793688994ad.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/21c43b92b819267f.xdr b/test-lcm-current/InvokeHostFunctionTests/21c43b92b819267f.xdr deleted file mode 100644 index 012661aba8..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/21c43b92b819267f.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/21e553dd1071721a.xdr b/test-lcm-current/InvokeHostFunctionTests/21e553dd1071721a.xdr index c830d57d23..7dbf6299bf 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/21e553dd1071721a.xdr and b/test-lcm-current/InvokeHostFunctionTests/21e553dd1071721a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/221f1cad327fb891.xdr b/test-lcm-current/InvokeHostFunctionTests/221f1cad327fb891.xdr index 8f2b072570..80a4ec16b6 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/221f1cad327fb891.xdr and b/test-lcm-current/InvokeHostFunctionTests/221f1cad327fb891.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/227f785ddbb9ab40.xdr b/test-lcm-current/InvokeHostFunctionTests/227f785ddbb9ab40.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/227f785ddbb9ab40.xdr and b/test-lcm-current/InvokeHostFunctionTests/227f785ddbb9ab40.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/2287bf75d44d6db2.xdr b/test-lcm-current/InvokeHostFunctionTests/2287bf75d44d6db2.xdr index a3eed99218..13074185b3 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/2287bf75d44d6db2.xdr and b/test-lcm-current/InvokeHostFunctionTests/2287bf75d44d6db2.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/229eca4a5af3b3cd.xdr b/test-lcm-current/InvokeHostFunctionTests/229eca4a5af3b3cd.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/229eca4a5af3b3cd.xdr rename to test-lcm-current/InvokeHostFunctionTests/229eca4a5af3b3cd.xdr index 4b6f0b1259..dcc51f07a9 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/229eca4a5af3b3cd.xdr and b/test-lcm-current/InvokeHostFunctionTests/229eca4a5af3b3cd.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/22c6c1fecdd3222c.xdr b/test-lcm-current/InvokeHostFunctionTests/22c6c1fecdd3222c.xdr index dd87cebe0a..1a8de8234d 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/22c6c1fecdd3222c.xdr and b/test-lcm-current/InvokeHostFunctionTests/22c6c1fecdd3222c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/22df21f5f58e57ba.xdr b/test-lcm-current/InvokeHostFunctionTests/22df21f5f58e57ba.xdr index f97ae2aa0f..42acd94dbc 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/22df21f5f58e57ba.xdr and b/test-lcm-current/InvokeHostFunctionTests/22df21f5f58e57ba.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/2342772cbe3d3e0c.xdr b/test-lcm-current/InvokeHostFunctionTests/2342772cbe3d3e0c.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/2342772cbe3d3e0c.xdr and b/test-lcm-current/InvokeHostFunctionTests/2342772cbe3d3e0c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/23733e3ae41a70ad.xdr b/test-lcm-current/InvokeHostFunctionTests/23733e3ae41a70ad.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/23733e3ae41a70ad.xdr and b/test-lcm-current/InvokeHostFunctionTests/23733e3ae41a70ad.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/23900da58ed1ec25.xdr b/test-lcm-current/InvokeHostFunctionTests/23900da58ed1ec25.xdr index 78838217f7..b5c9f52e3d 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/23900da58ed1ec25.xdr and b/test-lcm-current/InvokeHostFunctionTests/23900da58ed1ec25.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/23a89388bfb65808.xdr b/test-lcm-current/InvokeHostFunctionTests/23a89388bfb65808.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/23a89388bfb65808.xdr and b/test-lcm-current/InvokeHostFunctionTests/23a89388bfb65808.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/246b195d9beac8d6.xdr b/test-lcm-current/InvokeHostFunctionTests/246b195d9beac8d6.xdr index 271ee2eb66..1316b58199 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/246b195d9beac8d6.xdr and b/test-lcm-current/InvokeHostFunctionTests/246b195d9beac8d6.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/24bce78365780bb1.xdr b/test-lcm-current/InvokeHostFunctionTests/24bce78365780bb1.xdr deleted file mode 100644 index 0519cc6a30..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/24bce78365780bb1.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2567ee7cb82c415f.xdr b/test-lcm-current/InvokeHostFunctionTests/2567ee7cb82c415f.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/2567ee7cb82c415f.xdr rename to test-lcm-current/InvokeHostFunctionTests/2567ee7cb82c415f.xdr index 014278cfe4..1f03a29bf8 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/2567ee7cb82c415f.xdr and b/test-lcm-current/InvokeHostFunctionTests/2567ee7cb82c415f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/266b724000b97eb7.xdr b/test-lcm-current/InvokeHostFunctionTests/266b724000b97eb7.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/266b724000b97eb7.xdr and b/test-lcm-current/InvokeHostFunctionTests/266b724000b97eb7.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/2703a3e0e62612e8.xdr b/test-lcm-current/InvokeHostFunctionTests/2703a3e0e62612e8.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/2703a3e0e62612e8.xdr and b/test-lcm-current/InvokeHostFunctionTests/2703a3e0e62612e8.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/275035785578c436.xdr b/test-lcm-current/InvokeHostFunctionTests/275035785578c436.xdr similarity index 96% rename from test-lcm-next/InvokeHostFunctionTests/275035785578c436.xdr rename to test-lcm-current/InvokeHostFunctionTests/275035785578c436.xdr index bfac56fe62..e1732e0bf9 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/275035785578c436.xdr and b/test-lcm-current/InvokeHostFunctionTests/275035785578c436.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/28480490bc8a3fae.xdr b/test-lcm-current/InvokeHostFunctionTests/28480490bc8a3fae.xdr index e297e67dac..ca52e617e4 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/28480490bc8a3fae.xdr and b/test-lcm-current/InvokeHostFunctionTests/28480490bc8a3fae.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/285f5877a54deb4e.xdr b/test-lcm-current/InvokeHostFunctionTests/285f5877a54deb4e.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/285f5877a54deb4e.xdr and b/test-lcm-current/InvokeHostFunctionTests/285f5877a54deb4e.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/28e6a6a32da1fb63.xdr b/test-lcm-current/InvokeHostFunctionTests/28e6a6a32da1fb63.xdr index dbc0bf15d5..3fba8e61f3 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/28e6a6a32da1fb63.xdr and b/test-lcm-current/InvokeHostFunctionTests/28e6a6a32da1fb63.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/291ec7f3dd23aed8.xdr b/test-lcm-current/InvokeHostFunctionTests/291ec7f3dd23aed8.xdr similarity index 96% rename from test-lcm-next/InvokeHostFunctionTests/291ec7f3dd23aed8.xdr rename to test-lcm-current/InvokeHostFunctionTests/291ec7f3dd23aed8.xdr index 7113dfa838..208d34bb12 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/291ec7f3dd23aed8.xdr and b/test-lcm-current/InvokeHostFunctionTests/291ec7f3dd23aed8.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/293f7ed0e476294c.xdr b/test-lcm-current/InvokeHostFunctionTests/293f7ed0e476294c.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/293f7ed0e476294c.xdr and b/test-lcm-current/InvokeHostFunctionTests/293f7ed0e476294c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2944621c12e38c82.xdr b/test-lcm-current/InvokeHostFunctionTests/2944621c12e38c82.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/2944621c12e38c82.xdr rename to test-lcm-current/InvokeHostFunctionTests/2944621c12e38c82.xdr index eb3a2cc055..0580bf7434 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/2944621c12e38c82.xdr and b/test-lcm-current/InvokeHostFunctionTests/2944621c12e38c82.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/2951f9e3e0241cc4.xdr b/test-lcm-current/InvokeHostFunctionTests/2951f9e3e0241cc4.xdr index 3cdaa179bc..bbc68e91a5 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/2951f9e3e0241cc4.xdr and b/test-lcm-current/InvokeHostFunctionTests/2951f9e3e0241cc4.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/2963054aff2cd923.xdr b/test-lcm-current/InvokeHostFunctionTests/2963054aff2cd923.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/2963054aff2cd923.xdr and b/test-lcm-current/InvokeHostFunctionTests/2963054aff2cd923.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/299b1de69721232a.xdr b/test-lcm-current/InvokeHostFunctionTests/299b1de69721232a.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/299b1de69721232a.xdr rename to test-lcm-current/InvokeHostFunctionTests/299b1de69721232a.xdr index a9791d9233..2f46f3298f 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/299b1de69721232a.xdr and b/test-lcm-current/InvokeHostFunctionTests/299b1de69721232a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/2ace299730fbdd52.xdr b/test-lcm-current/InvokeHostFunctionTests/2ace299730fbdd52.xdr deleted file mode 100644 index b2f54ecdbc..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/2ace299730fbdd52.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/2af87dc6245a802c.xdr b/test-lcm-current/InvokeHostFunctionTests/2af87dc6245a802c.xdr index 1a87b444b0..32db73a89d 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/2af87dc6245a802c.xdr and b/test-lcm-current/InvokeHostFunctionTests/2af87dc6245a802c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/2b19e70a8b41485f.xdr b/test-lcm-current/InvokeHostFunctionTests/2b19e70a8b41485f.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/2b19e70a8b41485f.xdr and b/test-lcm-current/InvokeHostFunctionTests/2b19e70a8b41485f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/2c26a7ba5b931a86.xdr b/test-lcm-current/InvokeHostFunctionTests/2c26a7ba5b931a86.xdr index 605d2d6288..a6174ba9a5 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/2c26a7ba5b931a86.xdr and b/test-lcm-current/InvokeHostFunctionTests/2c26a7ba5b931a86.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/2ce02d45eeb17f14.xdr b/test-lcm-current/InvokeHostFunctionTests/2ce02d45eeb17f14.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/2ce02d45eeb17f14.xdr and b/test-lcm-current/InvokeHostFunctionTests/2ce02d45eeb17f14.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/2d96d9114eebd574.xdr b/test-lcm-current/InvokeHostFunctionTests/2d96d9114eebd574.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/2d96d9114eebd574.xdr and b/test-lcm-current/InvokeHostFunctionTests/2d96d9114eebd574.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/2df8d3e47d3c0bbd.xdr b/test-lcm-current/InvokeHostFunctionTests/2df8d3e47d3c0bbd.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/2df8d3e47d3c0bbd.xdr and b/test-lcm-current/InvokeHostFunctionTests/2df8d3e47d3c0bbd.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/2e8a9747bf075ec1.xdr b/test-lcm-current/InvokeHostFunctionTests/2e8a9747bf075ec1.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/2e8a9747bf075ec1.xdr and b/test-lcm-current/InvokeHostFunctionTests/2e8a9747bf075ec1.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/2e93251358cac25c.xdr b/test-lcm-current/InvokeHostFunctionTests/2e93251358cac25c.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/2e93251358cac25c.xdr and b/test-lcm-current/InvokeHostFunctionTests/2e93251358cac25c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/2ea8bcb3f8d6be16.xdr b/test-lcm-current/InvokeHostFunctionTests/2ea8bcb3f8d6be16.xdr index 5c512e3f9b..4e5cfd0114 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/2ea8bcb3f8d6be16.xdr and b/test-lcm-current/InvokeHostFunctionTests/2ea8bcb3f8d6be16.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2eb004014053b494.xdr b/test-lcm-current/InvokeHostFunctionTests/2eb004014053b494.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/2eb004014053b494.xdr rename to test-lcm-current/InvokeHostFunctionTests/2eb004014053b494.xdr index 1fd956d42a..9224960583 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/2eb004014053b494.xdr and b/test-lcm-current/InvokeHostFunctionTests/2eb004014053b494.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/2eb7c4a770d05ab6.xdr b/test-lcm-current/InvokeHostFunctionTests/2eb7c4a770d05ab6.xdr index 8315154b7c..7712152be5 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/2eb7c4a770d05ab6.xdr and b/test-lcm-current/InvokeHostFunctionTests/2eb7c4a770d05ab6.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/2f05b787de3b1118.xdr b/test-lcm-current/InvokeHostFunctionTests/2f05b787de3b1118.xdr deleted file mode 100644 index e3d41af302..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/2f05b787de3b1118.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/2f06a14dfcb5cd88.xdr b/test-lcm-current/InvokeHostFunctionTests/2f06a14dfcb5cd88.xdr index 32afcfdd58..c74f4eb190 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/2f06a14dfcb5cd88.xdr and b/test-lcm-current/InvokeHostFunctionTests/2f06a14dfcb5cd88.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2f1ef83ec6a30e47.xdr b/test-lcm-current/InvokeHostFunctionTests/2f1ef83ec6a30e47.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/2f1ef83ec6a30e47.xdr rename to test-lcm-current/InvokeHostFunctionTests/2f1ef83ec6a30e47.xdr index 2661e3b671..9439f6fd21 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/2f1ef83ec6a30e47.xdr and b/test-lcm-current/InvokeHostFunctionTests/2f1ef83ec6a30e47.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2faf63148d9c990e.xdr b/test-lcm-current/InvokeHostFunctionTests/2faf63148d9c990e.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/2faf63148d9c990e.xdr rename to test-lcm-current/InvokeHostFunctionTests/2faf63148d9c990e.xdr index ce4d1d72f4..311e9e6da5 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/2faf63148d9c990e.xdr and b/test-lcm-current/InvokeHostFunctionTests/2faf63148d9c990e.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/300159c9b981f5a9.xdr b/test-lcm-current/InvokeHostFunctionTests/300159c9b981f5a9.xdr deleted file mode 100644 index 5425c5db55..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/300159c9b981f5a9.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/302126e9bbf11954.xdr b/test-lcm-current/InvokeHostFunctionTests/302126e9bbf11954.xdr deleted file mode 100644 index 8137fd075d..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/302126e9bbf11954.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/303dce5b05111d4b.xdr b/test-lcm-current/InvokeHostFunctionTests/303dce5b05111d4b.xdr index c91f6a0acc..dd0bfda82d 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/303dce5b05111d4b.xdr and b/test-lcm-current/InvokeHostFunctionTests/303dce5b05111d4b.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/30f874adb24456b1.xdr b/test-lcm-current/InvokeHostFunctionTests/30f874adb24456b1.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/30f874adb24456b1.xdr rename to test-lcm-current/InvokeHostFunctionTests/30f874adb24456b1.xdr index f05a847bd8..5c97c52a47 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/30f874adb24456b1.xdr and b/test-lcm-current/InvokeHostFunctionTests/30f874adb24456b1.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/311f3f548207d5d6.xdr b/test-lcm-current/InvokeHostFunctionTests/311f3f548207d5d6.xdr index cdee073c72..e7595d5fcb 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/311f3f548207d5d6.xdr and b/test-lcm-current/InvokeHostFunctionTests/311f3f548207d5d6.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/3152146ae3e1601f.xdr b/test-lcm-current/InvokeHostFunctionTests/3152146ae3e1601f.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/3152146ae3e1601f.xdr and b/test-lcm-current/InvokeHostFunctionTests/3152146ae3e1601f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/3279e450f885436a.xdr b/test-lcm-current/InvokeHostFunctionTests/3279e450f885436a.xdr index 92b8fc90ae..c976ab8e1d 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/3279e450f885436a.xdr and b/test-lcm-current/InvokeHostFunctionTests/3279e450f885436a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/328148b03f51b78c.xdr b/test-lcm-current/InvokeHostFunctionTests/328148b03f51b78c.xdr deleted file mode 100644 index 03aba9b148..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/328148b03f51b78c.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/329c8076e0ba5976.xdr b/test-lcm-current/InvokeHostFunctionTests/329c8076e0ba5976.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/329c8076e0ba5976.xdr and b/test-lcm-current/InvokeHostFunctionTests/329c8076e0ba5976.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/32e313f52f20cae1.xdr b/test-lcm-current/InvokeHostFunctionTests/32e313f52f20cae1.xdr index 224b3a6369..d68cd61053 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/32e313f52f20cae1.xdr and b/test-lcm-current/InvokeHostFunctionTests/32e313f52f20cae1.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/3304ede4be3e7951.xdr b/test-lcm-current/InvokeHostFunctionTests/3304ede4be3e7951.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/3304ede4be3e7951.xdr and b/test-lcm-current/InvokeHostFunctionTests/3304ede4be3e7951.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/333dd414de3cff58.xdr b/test-lcm-current/InvokeHostFunctionTests/333dd414de3cff58.xdr index 300a7d87ad..8a0b7fc61b 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/333dd414de3cff58.xdr and b/test-lcm-current/InvokeHostFunctionTests/333dd414de3cff58.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/3344d57a6c44b645.xdr b/test-lcm-current/InvokeHostFunctionTests/3344d57a6c44b645.xdr index 71c5a87854..781c5b2a61 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/3344d57a6c44b645.xdr and b/test-lcm-current/InvokeHostFunctionTests/3344d57a6c44b645.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/3351d4c3d6daa80b.xdr b/test-lcm-current/InvokeHostFunctionTests/3351d4c3d6daa80b.xdr index 5e97b46919..312604f033 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/3351d4c3d6daa80b.xdr and b/test-lcm-current/InvokeHostFunctionTests/3351d4c3d6daa80b.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/33541948d53d210f.xdr b/test-lcm-current/InvokeHostFunctionTests/33541948d53d210f.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/33541948d53d210f.xdr and b/test-lcm-current/InvokeHostFunctionTests/33541948d53d210f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/33f7502a4490dbc8.xdr b/test-lcm-current/InvokeHostFunctionTests/33f7502a4490dbc8.xdr index 1c0c03e5f8..2d47b1346d 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/33f7502a4490dbc8.xdr and b/test-lcm-current/InvokeHostFunctionTests/33f7502a4490dbc8.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/343cb2cb92cd8aca.xdr b/test-lcm-current/InvokeHostFunctionTests/343cb2cb92cd8aca.xdr index 3d0da5b8f2..2039ba3bba 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/343cb2cb92cd8aca.xdr and b/test-lcm-current/InvokeHostFunctionTests/343cb2cb92cd8aca.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/3468dbd89e1d09e5.xdr b/test-lcm-current/InvokeHostFunctionTests/3468dbd89e1d09e5.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/3468dbd89e1d09e5.xdr rename to test-lcm-current/InvokeHostFunctionTests/3468dbd89e1d09e5.xdr index 8dccab96c8..12c1354e69 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/3468dbd89e1d09e5.xdr and b/test-lcm-current/InvokeHostFunctionTests/3468dbd89e1d09e5.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/34bb302b64ca6cea.xdr b/test-lcm-current/InvokeHostFunctionTests/34bb302b64ca6cea.xdr deleted file mode 100644 index 0eee7af019..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/34bb302b64ca6cea.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/34bda29a61241c80.xdr b/test-lcm-current/InvokeHostFunctionTests/34bda29a61241c80.xdr similarity index 88% rename from test-lcm-next/InvokeHostFunctionTests/34bda29a61241c80.xdr rename to test-lcm-current/InvokeHostFunctionTests/34bda29a61241c80.xdr index e0e155302b..f67fb7935b 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/34bda29a61241c80.xdr and b/test-lcm-current/InvokeHostFunctionTests/34bda29a61241c80.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/34c4629e4bafa2dd.xdr b/test-lcm-current/InvokeHostFunctionTests/34c4629e4bafa2dd.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/34c4629e4bafa2dd.xdr rename to test-lcm-current/InvokeHostFunctionTests/34c4629e4bafa2dd.xdr index 42ee049fd5..ce8306a28e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/34c4629e4bafa2dd.xdr and b/test-lcm-current/InvokeHostFunctionTests/34c4629e4bafa2dd.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/35117649a10b863c.xdr b/test-lcm-current/InvokeHostFunctionTests/35117649a10b863c.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/35117649a10b863c.xdr and b/test-lcm-current/InvokeHostFunctionTests/35117649a10b863c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/35b99a95ff36fd47.xdr b/test-lcm-current/InvokeHostFunctionTests/35b99a95ff36fd47.xdr index ea8a10c6c5..60d32df481 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/35b99a95ff36fd47.xdr and b/test-lcm-current/InvokeHostFunctionTests/35b99a95ff36fd47.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/36193429a9fd13f9.xdr b/test-lcm-current/InvokeHostFunctionTests/36193429a9fd13f9.xdr index 67313c5794..80f8f469c3 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/36193429a9fd13f9.xdr and b/test-lcm-current/InvokeHostFunctionTests/36193429a9fd13f9.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/3670ca64370e86e7.xdr b/test-lcm-current/InvokeHostFunctionTests/3670ca64370e86e7.xdr index 224bc8bd7d..15b35f408e 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/3670ca64370e86e7.xdr and b/test-lcm-current/InvokeHostFunctionTests/3670ca64370e86e7.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/369cf252c2e22d4e.xdr b/test-lcm-current/InvokeHostFunctionTests/369cf252c2e22d4e.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/369cf252c2e22d4e.xdr and b/test-lcm-current/InvokeHostFunctionTests/369cf252c2e22d4e.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/36cdfb826504ca41.xdr b/test-lcm-current/InvokeHostFunctionTests/36cdfb826504ca41.xdr index 70f9cdc75c..695ce2f719 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/36cdfb826504ca41.xdr and b/test-lcm-current/InvokeHostFunctionTests/36cdfb826504ca41.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/36d1886765b0101c.xdr b/test-lcm-current/InvokeHostFunctionTests/36d1886765b0101c.xdr index bcd278053e..2aa162aeef 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/36d1886765b0101c.xdr and b/test-lcm-current/InvokeHostFunctionTests/36d1886765b0101c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/370b65bf45bf359a.xdr b/test-lcm-current/InvokeHostFunctionTests/370b65bf45bf359a.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/370b65bf45bf359a.xdr and b/test-lcm-current/InvokeHostFunctionTests/370b65bf45bf359a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/372873b046d26a73.xdr b/test-lcm-current/InvokeHostFunctionTests/372873b046d26a73.xdr index 7691200c01..50bb9690e7 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/372873b046d26a73.xdr and b/test-lcm-current/InvokeHostFunctionTests/372873b046d26a73.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/375e418b328316a8.xdr b/test-lcm-current/InvokeHostFunctionTests/375e418b328316a8.xdr index 7e568f09c9..2e0555addf 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/375e418b328316a8.xdr and b/test-lcm-current/InvokeHostFunctionTests/375e418b328316a8.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/389a0818b81bb84d.xdr b/test-lcm-current/InvokeHostFunctionTests/389a0818b81bb84d.xdr deleted file mode 100644 index 527e0681ef..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/389a0818b81bb84d.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/38cfd148d6296478.xdr b/test-lcm-current/InvokeHostFunctionTests/38cfd148d6296478.xdr deleted file mode 100644 index 58be8c0733..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/38cfd148d6296478.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/38d9c5df4335cbbf.xdr b/test-lcm-current/InvokeHostFunctionTests/38d9c5df4335cbbf.xdr index fab9c30b7a..880c9978f8 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/38d9c5df4335cbbf.xdr and b/test-lcm-current/InvokeHostFunctionTests/38d9c5df4335cbbf.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/393bdca30f6cfe37.xdr b/test-lcm-current/InvokeHostFunctionTests/393bdca30f6cfe37.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/393bdca30f6cfe37.xdr rename to test-lcm-current/InvokeHostFunctionTests/393bdca30f6cfe37.xdr index 97ecce65b3..33de0d7a60 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/393bdca30f6cfe37.xdr and b/test-lcm-current/InvokeHostFunctionTests/393bdca30f6cfe37.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/394272a31b2f42f9.xdr b/test-lcm-current/InvokeHostFunctionTests/394272a31b2f42f9.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/394272a31b2f42f9.xdr and b/test-lcm-current/InvokeHostFunctionTests/394272a31b2f42f9.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/39cb1e990e856d1d.xdr b/test-lcm-current/InvokeHostFunctionTests/39cb1e990e856d1d.xdr deleted file mode 100644 index 8fe311ad5b..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/39cb1e990e856d1d.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/3abe7e7946b3a3aa.xdr b/test-lcm-current/InvokeHostFunctionTests/3abe7e7946b3a3aa.xdr index e6feea338c..2ff72c73a0 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/3abe7e7946b3a3aa.xdr and b/test-lcm-current/InvokeHostFunctionTests/3abe7e7946b3a3aa.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/3ae3a09a2ac1bace.xdr b/test-lcm-current/InvokeHostFunctionTests/3ae3a09a2ac1bace.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/3ae3a09a2ac1bace.xdr and b/test-lcm-current/InvokeHostFunctionTests/3ae3a09a2ac1bace.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/3b0802ffb3b76400.xdr b/test-lcm-current/InvokeHostFunctionTests/3b0802ffb3b76400.xdr index 26f2b68e8c..5cb0999b6a 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/3b0802ffb3b76400.xdr and b/test-lcm-current/InvokeHostFunctionTests/3b0802ffb3b76400.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/3b91093ca60bf8ca.xdr b/test-lcm-current/InvokeHostFunctionTests/3b91093ca60bf8ca.xdr similarity index 93% rename from test-lcm-next/InvokeHostFunctionTests/3b91093ca60bf8ca.xdr rename to test-lcm-current/InvokeHostFunctionTests/3b91093ca60bf8ca.xdr index 2dfbee0095..6e9efcf843 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/3b91093ca60bf8ca.xdr and b/test-lcm-current/InvokeHostFunctionTests/3b91093ca60bf8ca.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/3be02d8253170239.xdr b/test-lcm-current/InvokeHostFunctionTests/3be02d8253170239.xdr deleted file mode 100644 index 6dfeb17104..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/3be02d8253170239.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/3c1ebb13484322b9.xdr b/test-lcm-current/InvokeHostFunctionTests/3c1ebb13484322b9.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/3c1ebb13484322b9.xdr and b/test-lcm-current/InvokeHostFunctionTests/3c1ebb13484322b9.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/3c84ec0cd4e29a9e.xdr b/test-lcm-current/InvokeHostFunctionTests/3c84ec0cd4e29a9e.xdr index 119f18051c..b25bbc1cfa 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/3c84ec0cd4e29a9e.xdr and b/test-lcm-current/InvokeHostFunctionTests/3c84ec0cd4e29a9e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/3da98fc3d352b14a.xdr b/test-lcm-current/InvokeHostFunctionTests/3da98fc3d352b14a.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/3da98fc3d352b14a.xdr rename to test-lcm-current/InvokeHostFunctionTests/3da98fc3d352b14a.xdr index fa6218c55b..339005a316 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/3da98fc3d352b14a.xdr and b/test-lcm-current/InvokeHostFunctionTests/3da98fc3d352b14a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/3db91544d5ae2281.xdr b/test-lcm-current/InvokeHostFunctionTests/3db91544d5ae2281.xdr index 953a96da0e..74d902bb9b 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/3db91544d5ae2281.xdr and b/test-lcm-current/InvokeHostFunctionTests/3db91544d5ae2281.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/3e658e0ecfc377ad.xdr b/test-lcm-current/InvokeHostFunctionTests/3e658e0ecfc377ad.xdr deleted file mode 100644 index 2fde023a90..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/3e658e0ecfc377ad.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/3ebb523abd74e1c1.xdr b/test-lcm-current/InvokeHostFunctionTests/3ebb523abd74e1c1.xdr index 2525096675..3379b68b57 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/3ebb523abd74e1c1.xdr and b/test-lcm-current/InvokeHostFunctionTests/3ebb523abd74e1c1.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/3ed1bb2f1af2ea38.xdr b/test-lcm-current/InvokeHostFunctionTests/3ed1bb2f1af2ea38.xdr index 2ac538e165..21346d7fca 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/3ed1bb2f1af2ea38.xdr and b/test-lcm-current/InvokeHostFunctionTests/3ed1bb2f1af2ea38.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/3ef1fb92602e14d5.xdr b/test-lcm-current/InvokeHostFunctionTests/3ef1fb92602e14d5.xdr index 6920166c0a..cb62904d6e 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/3ef1fb92602e14d5.xdr and b/test-lcm-current/InvokeHostFunctionTests/3ef1fb92602e14d5.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/3f41a40a5611b7d8.xdr b/test-lcm-current/InvokeHostFunctionTests/3f41a40a5611b7d8.xdr index 8ff419b3eb..ac42d186b2 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/3f41a40a5611b7d8.xdr and b/test-lcm-current/InvokeHostFunctionTests/3f41a40a5611b7d8.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/402edcc32b71876e.xdr b/test-lcm-current/InvokeHostFunctionTests/402edcc32b71876e.xdr deleted file mode 100644 index 4c96e2a15e..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/402edcc32b71876e.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/40cc10c2a3fe22f0.xdr b/test-lcm-current/InvokeHostFunctionTests/40cc10c2a3fe22f0.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/40cc10c2a3fe22f0.xdr and b/test-lcm-current/InvokeHostFunctionTests/40cc10c2a3fe22f0.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/40fc1592b7b8d9a7.xdr b/test-lcm-current/InvokeHostFunctionTests/40fc1592b7b8d9a7.xdr index c4122bf2ff..57ba18a08e 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/40fc1592b7b8d9a7.xdr and b/test-lcm-current/InvokeHostFunctionTests/40fc1592b7b8d9a7.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/41a75a802c103130.xdr b/test-lcm-current/InvokeHostFunctionTests/41a75a802c103130.xdr index 48efefe109..2053495a3d 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/41a75a802c103130.xdr and b/test-lcm-current/InvokeHostFunctionTests/41a75a802c103130.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/41b156d3fa61a392.xdr b/test-lcm-current/InvokeHostFunctionTests/41b156d3fa61a392.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/41b156d3fa61a392.xdr rename to test-lcm-current/InvokeHostFunctionTests/41b156d3fa61a392.xdr index b9a7e31629..4b1774731c 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/41b156d3fa61a392.xdr and b/test-lcm-current/InvokeHostFunctionTests/41b156d3fa61a392.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/4257d5b49a04ee9a.xdr b/test-lcm-current/InvokeHostFunctionTests/4257d5b49a04ee9a.xdr deleted file mode 100644 index 9bc4928f2b..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/4257d5b49a04ee9a.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/426bf7e8fc76eaea.xdr b/test-lcm-current/InvokeHostFunctionTests/426bf7e8fc76eaea.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/426bf7e8fc76eaea.xdr rename to test-lcm-current/InvokeHostFunctionTests/426bf7e8fc76eaea.xdr index 4785751fd0..d60cf27613 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/426bf7e8fc76eaea.xdr and b/test-lcm-current/InvokeHostFunctionTests/426bf7e8fc76eaea.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/429b2f1e9f48bfe9.xdr b/test-lcm-current/InvokeHostFunctionTests/429b2f1e9f48bfe9.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/429b2f1e9f48bfe9.xdr rename to test-lcm-current/InvokeHostFunctionTests/429b2f1e9f48bfe9.xdr index edbda94279..445ad93ab5 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/429b2f1e9f48bfe9.xdr and b/test-lcm-current/InvokeHostFunctionTests/429b2f1e9f48bfe9.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/432866f9e4658727.xdr b/test-lcm-current/InvokeHostFunctionTests/432866f9e4658727.xdr index f4d1b31a75..48af01962d 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/432866f9e4658727.xdr and b/test-lcm-current/InvokeHostFunctionTests/432866f9e4658727.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/43509a8017a394ec.xdr b/test-lcm-current/InvokeHostFunctionTests/43509a8017a394ec.xdr index 74e12d1d4d..8f7b4a25e7 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/43509a8017a394ec.xdr and b/test-lcm-current/InvokeHostFunctionTests/43509a8017a394ec.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/4387bc73975627a6.xdr b/test-lcm-current/InvokeHostFunctionTests/4387bc73975627a6.xdr deleted file mode 100644 index b3489f8f12..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/4387bc73975627a6.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/43aa6585c53544c0.xdr b/test-lcm-current/InvokeHostFunctionTests/43aa6585c53544c0.xdr index 364c4d877f..91643a2e2b 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/43aa6585c53544c0.xdr and b/test-lcm-current/InvokeHostFunctionTests/43aa6585c53544c0.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/43ab812359d242e5.xdr b/test-lcm-current/InvokeHostFunctionTests/43ab812359d242e5.xdr deleted file mode 100644 index b8d8e8a354..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/43ab812359d242e5.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/43d0750bf32a8142.xdr b/test-lcm-current/InvokeHostFunctionTests/43d0750bf32a8142.xdr index 5282de9661..f39137b808 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/43d0750bf32a8142.xdr and b/test-lcm-current/InvokeHostFunctionTests/43d0750bf32a8142.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/4403f2717365f3f1.xdr b/test-lcm-current/InvokeHostFunctionTests/4403f2717365f3f1.xdr index 76d5037bab..02053ec5eb 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/4403f2717365f3f1.xdr and b/test-lcm-current/InvokeHostFunctionTests/4403f2717365f3f1.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/444e7910e5721658.xdr b/test-lcm-current/InvokeHostFunctionTests/444e7910e5721658.xdr index 12fa4d3040..adbee9191a 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/444e7910e5721658.xdr and b/test-lcm-current/InvokeHostFunctionTests/444e7910e5721658.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/44ed42af0c335da0.xdr b/test-lcm-current/InvokeHostFunctionTests/44ed42af0c335da0.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/44ed42af0c335da0.xdr and b/test-lcm-current/InvokeHostFunctionTests/44ed42af0c335da0.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/45bb7c67fa144f76.xdr b/test-lcm-current/InvokeHostFunctionTests/45bb7c67fa144f76.xdr index b1194b5905..d42b427039 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/45bb7c67fa144f76.xdr and b/test-lcm-current/InvokeHostFunctionTests/45bb7c67fa144f76.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/45fafb2b89af5af9.xdr b/test-lcm-current/InvokeHostFunctionTests/45fafb2b89af5af9.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/45fafb2b89af5af9.xdr and b/test-lcm-current/InvokeHostFunctionTests/45fafb2b89af5af9.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/463cc045e4e770ef.xdr b/test-lcm-current/InvokeHostFunctionTests/463cc045e4e770ef.xdr index b999c368c9..b580b6e3c3 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/463cc045e4e770ef.xdr and b/test-lcm-current/InvokeHostFunctionTests/463cc045e4e770ef.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/46841d2f33918f97.xdr b/test-lcm-current/InvokeHostFunctionTests/46841d2f33918f97.xdr index 8de2a6fafc..9932f1dec5 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/46841d2f33918f97.xdr and b/test-lcm-current/InvokeHostFunctionTests/46841d2f33918f97.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/46aeed7918681e81.xdr b/test-lcm-current/InvokeHostFunctionTests/46aeed7918681e81.xdr deleted file mode 100644 index 72b5e724c3..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/46aeed7918681e81.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/46b0acde0e911bc2.xdr b/test-lcm-current/InvokeHostFunctionTests/46b0acde0e911bc2.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/46b0acde0e911bc2.xdr rename to test-lcm-current/InvokeHostFunctionTests/46b0acde0e911bc2.xdr index 1a4feb4e44..814445ce21 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/46b0acde0e911bc2.xdr and b/test-lcm-current/InvokeHostFunctionTests/46b0acde0e911bc2.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/46bb33ad49f0924d.xdr b/test-lcm-current/InvokeHostFunctionTests/46bb33ad49f0924d.xdr index 19d52aa3cb..a4a866806f 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/46bb33ad49f0924d.xdr and b/test-lcm-current/InvokeHostFunctionTests/46bb33ad49f0924d.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/46bc30f464b80820.xdr b/test-lcm-current/InvokeHostFunctionTests/46bc30f464b80820.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/46bc30f464b80820.xdr and b/test-lcm-current/InvokeHostFunctionTests/46bc30f464b80820.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/471f63ec9db5a9dd.xdr b/test-lcm-current/InvokeHostFunctionTests/471f63ec9db5a9dd.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/471f63ec9db5a9dd.xdr and b/test-lcm-current/InvokeHostFunctionTests/471f63ec9db5a9dd.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/472ac360b2cee870.xdr b/test-lcm-current/InvokeHostFunctionTests/472ac360b2cee870.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/472ac360b2cee870.xdr and b/test-lcm-current/InvokeHostFunctionTests/472ac360b2cee870.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/47ca3b5bf744ccaa.xdr b/test-lcm-current/InvokeHostFunctionTests/47ca3b5bf744ccaa.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/47ca3b5bf744ccaa.xdr rename to test-lcm-current/InvokeHostFunctionTests/47ca3b5bf744ccaa.xdr index b3af864131..db9a5368a6 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/47ca3b5bf744ccaa.xdr and b/test-lcm-current/InvokeHostFunctionTests/47ca3b5bf744ccaa.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/47efc2a10557bd97.xdr b/test-lcm-current/InvokeHostFunctionTests/47efc2a10557bd97.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/47efc2a10557bd97.xdr and b/test-lcm-current/InvokeHostFunctionTests/47efc2a10557bd97.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/47fee2a3bc870ecc.xdr b/test-lcm-current/InvokeHostFunctionTests/47fee2a3bc870ecc.xdr index 686ec6f458..1008e2f3f5 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/47fee2a3bc870ecc.xdr and b/test-lcm-current/InvokeHostFunctionTests/47fee2a3bc870ecc.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/485a9f1997660b04.xdr b/test-lcm-current/InvokeHostFunctionTests/485a9f1997660b04.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/485a9f1997660b04.xdr and b/test-lcm-current/InvokeHostFunctionTests/485a9f1997660b04.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/4876c2f30088ca20.xdr b/test-lcm-current/InvokeHostFunctionTests/4876c2f30088ca20.xdr index a1718abaf8..e96581e617 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/4876c2f30088ca20.xdr and b/test-lcm-current/InvokeHostFunctionTests/4876c2f30088ca20.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/48c781bbceb21112.xdr b/test-lcm-current/InvokeHostFunctionTests/48c781bbceb21112.xdr deleted file mode 100644 index 515d77c2e6..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/48c781bbceb21112.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/490f1f4997c0b5d4.xdr b/test-lcm-current/InvokeHostFunctionTests/490f1f4997c0b5d4.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/490f1f4997c0b5d4.xdr rename to test-lcm-current/InvokeHostFunctionTests/490f1f4997c0b5d4.xdr index 26e0e00e8e..cb58bd7111 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/490f1f4997c0b5d4.xdr and b/test-lcm-current/InvokeHostFunctionTests/490f1f4997c0b5d4.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/49689aae806682f8.xdr b/test-lcm-current/InvokeHostFunctionTests/49689aae806682f8.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/49689aae806682f8.xdr and b/test-lcm-current/InvokeHostFunctionTests/49689aae806682f8.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/49f65f2d365f1cf2.xdr b/test-lcm-current/InvokeHostFunctionTests/49f65f2d365f1cf2.xdr index 0e800c1d80..0391e898ff 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/49f65f2d365f1cf2.xdr and b/test-lcm-current/InvokeHostFunctionTests/49f65f2d365f1cf2.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/4a1932cf528ee7ca.xdr b/test-lcm-current/InvokeHostFunctionTests/4a1932cf528ee7ca.xdr index 39ca7f4648..4b661cebd9 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/4a1932cf528ee7ca.xdr and b/test-lcm-current/InvokeHostFunctionTests/4a1932cf528ee7ca.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/4a8c58a85988d163.xdr b/test-lcm-current/InvokeHostFunctionTests/4a8c58a85988d163.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/4a8c58a85988d163.xdr and b/test-lcm-current/InvokeHostFunctionTests/4a8c58a85988d163.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/4aa2d8d102f584a4.xdr b/test-lcm-current/InvokeHostFunctionTests/4aa2d8d102f584a4.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/4aa2d8d102f584a4.xdr and b/test-lcm-current/InvokeHostFunctionTests/4aa2d8d102f584a4.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/4ae7dbea4b507a75.xdr b/test-lcm-current/InvokeHostFunctionTests/4ae7dbea4b507a75.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/4ae7dbea4b507a75.xdr and b/test-lcm-current/InvokeHostFunctionTests/4ae7dbea4b507a75.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/4b48a6a4f275f4e1.xdr b/test-lcm-current/InvokeHostFunctionTests/4b48a6a4f275f4e1.xdr similarity index 93% rename from test-lcm-next/InvokeHostFunctionTests/4b48a6a4f275f4e1.xdr rename to test-lcm-current/InvokeHostFunctionTests/4b48a6a4f275f4e1.xdr index 2dc2788a5f..8da250060f 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/4b48a6a4f275f4e1.xdr and b/test-lcm-current/InvokeHostFunctionTests/4b48a6a4f275f4e1.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/4b4fde93869500d3.xdr b/test-lcm-current/InvokeHostFunctionTests/4b4fde93869500d3.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/4b4fde93869500d3.xdr and b/test-lcm-current/InvokeHostFunctionTests/4b4fde93869500d3.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/4b78ba479ffbf011.xdr b/test-lcm-current/InvokeHostFunctionTests/4b78ba479ffbf011.xdr deleted file mode 100644 index 7e8d06d575..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/4b78ba479ffbf011.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/4b7e19f44373ff48.xdr b/test-lcm-current/InvokeHostFunctionTests/4b7e19f44373ff48.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/4b7e19f44373ff48.xdr and b/test-lcm-current/InvokeHostFunctionTests/4b7e19f44373ff48.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/4bc0adc4bfd824ae.xdr b/test-lcm-current/InvokeHostFunctionTests/4bc0adc4bfd824ae.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/4bc0adc4bfd824ae.xdr and b/test-lcm-current/InvokeHostFunctionTests/4bc0adc4bfd824ae.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/4c5cc01aded482f8.xdr b/test-lcm-current/InvokeHostFunctionTests/4c5cc01aded482f8.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/4c5cc01aded482f8.xdr and b/test-lcm-current/InvokeHostFunctionTests/4c5cc01aded482f8.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/4cd30f7ebe173060.xdr b/test-lcm-current/InvokeHostFunctionTests/4cd30f7ebe173060.xdr index 6eb0a982ed..de9a071788 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/4cd30f7ebe173060.xdr and b/test-lcm-current/InvokeHostFunctionTests/4cd30f7ebe173060.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/4db1a66114f8b194.xdr b/test-lcm-current/InvokeHostFunctionTests/4db1a66114f8b194.xdr index f805ec3892..84879e6d01 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/4db1a66114f8b194.xdr and b/test-lcm-current/InvokeHostFunctionTests/4db1a66114f8b194.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/4eaeadc112025f27.xdr b/test-lcm-current/InvokeHostFunctionTests/4eaeadc112025f27.xdr index 5d8c8b78c2..125e6bd3d5 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/4eaeadc112025f27.xdr and b/test-lcm-current/InvokeHostFunctionTests/4eaeadc112025f27.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/4ebc63e7a17f728c.xdr b/test-lcm-current/InvokeHostFunctionTests/4ebc63e7a17f728c.xdr deleted file mode 100644 index f4c6cd3104..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/4ebc63e7a17f728c.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/4ee0f3b0ffb1a967.xdr b/test-lcm-current/InvokeHostFunctionTests/4ee0f3b0ffb1a967.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/4ee0f3b0ffb1a967.xdr and b/test-lcm-current/InvokeHostFunctionTests/4ee0f3b0ffb1a967.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/4ef066d1bdf57a24.xdr b/test-lcm-current/InvokeHostFunctionTests/4ef066d1bdf57a24.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/4ef066d1bdf57a24.xdr rename to test-lcm-current/InvokeHostFunctionTests/4ef066d1bdf57a24.xdr index af03b20071..8bb381a70e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/4ef066d1bdf57a24.xdr and b/test-lcm-current/InvokeHostFunctionTests/4ef066d1bdf57a24.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/4ff86e8ec6d8f89c.xdr b/test-lcm-current/InvokeHostFunctionTests/4ff86e8ec6d8f89c.xdr index 2efedb4520..7469552b3b 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/4ff86e8ec6d8f89c.xdr and b/test-lcm-current/InvokeHostFunctionTests/4ff86e8ec6d8f89c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/50b8c59ec9bdb6bf.xdr b/test-lcm-current/InvokeHostFunctionTests/50b8c59ec9bdb6bf.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/50b8c59ec9bdb6bf.xdr rename to test-lcm-current/InvokeHostFunctionTests/50b8c59ec9bdb6bf.xdr index 6e500b960e..4d929e4008 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/50b8c59ec9bdb6bf.xdr and b/test-lcm-current/InvokeHostFunctionTests/50b8c59ec9bdb6bf.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/50da3c19b259f60b.xdr b/test-lcm-current/InvokeHostFunctionTests/50da3c19b259f60b.xdr similarity index 96% rename from test-lcm-next/InvokeHostFunctionTests/50da3c19b259f60b.xdr rename to test-lcm-current/InvokeHostFunctionTests/50da3c19b259f60b.xdr index 768406be13..bf66d5883d 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/50da3c19b259f60b.xdr and b/test-lcm-current/InvokeHostFunctionTests/50da3c19b259f60b.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/51616f70e97b17d5.xdr b/test-lcm-current/InvokeHostFunctionTests/51616f70e97b17d5.xdr index 715497c89d..e7d0025180 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/51616f70e97b17d5.xdr and b/test-lcm-current/InvokeHostFunctionTests/51616f70e97b17d5.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/5171bdbde7eb7562.xdr b/test-lcm-current/InvokeHostFunctionTests/5171bdbde7eb7562.xdr index b057fbfdb5..5b449b2f78 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/5171bdbde7eb7562.xdr and b/test-lcm-current/InvokeHostFunctionTests/5171bdbde7eb7562.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/519ee0e221d13e7a.xdr b/test-lcm-current/InvokeHostFunctionTests/519ee0e221d13e7a.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/519ee0e221d13e7a.xdr and b/test-lcm-current/InvokeHostFunctionTests/519ee0e221d13e7a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/51e36c475d33d2bb.xdr b/test-lcm-current/InvokeHostFunctionTests/51e36c475d33d2bb.xdr index 01dfd22970..e2303c1646 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/51e36c475d33d2bb.xdr and b/test-lcm-current/InvokeHostFunctionTests/51e36c475d33d2bb.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/51f0bd683d0d5829.xdr b/test-lcm-current/InvokeHostFunctionTests/51f0bd683d0d5829.xdr index 82463d2062..65da0e2474 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/51f0bd683d0d5829.xdr and b/test-lcm-current/InvokeHostFunctionTests/51f0bd683d0d5829.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/52c707bc77bf01f6.xdr b/test-lcm-current/InvokeHostFunctionTests/52c707bc77bf01f6.xdr index e72032359b..e40246b9a2 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/52c707bc77bf01f6.xdr and b/test-lcm-current/InvokeHostFunctionTests/52c707bc77bf01f6.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/5320263ea9731510.xdr b/test-lcm-current/InvokeHostFunctionTests/5320263ea9731510.xdr deleted file mode 100644 index 5f9a9868b5..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/5320263ea9731510.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/536297cefb569ed7.xdr b/test-lcm-current/InvokeHostFunctionTests/536297cefb569ed7.xdr index bf57c8b59c..2884680c80 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/536297cefb569ed7.xdr and b/test-lcm-current/InvokeHostFunctionTests/536297cefb569ed7.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/53b461e8db0fddd1.xdr b/test-lcm-current/InvokeHostFunctionTests/53b461e8db0fddd1.xdr index 93f39445fe..b6bb57177a 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/53b461e8db0fddd1.xdr and b/test-lcm-current/InvokeHostFunctionTests/53b461e8db0fddd1.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/53c11b905406d9ca.xdr b/test-lcm-current/InvokeHostFunctionTests/53c11b905406d9ca.xdr similarity index 93% rename from test-lcm-next/InvokeHostFunctionTests/53c11b905406d9ca.xdr rename to test-lcm-current/InvokeHostFunctionTests/53c11b905406d9ca.xdr index c677aa2f81..015520e826 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/53c11b905406d9ca.xdr and b/test-lcm-current/InvokeHostFunctionTests/53c11b905406d9ca.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/540eac72b8688d25.xdr b/test-lcm-current/InvokeHostFunctionTests/540eac72b8688d25.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/540eac72b8688d25.xdr and b/test-lcm-current/InvokeHostFunctionTests/540eac72b8688d25.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/546a3cc311788248.xdr b/test-lcm-current/InvokeHostFunctionTests/546a3cc311788248.xdr index 2401613efd..1ce91f4ece 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/546a3cc311788248.xdr and b/test-lcm-current/InvokeHostFunctionTests/546a3cc311788248.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/54f8492f87d26b35.xdr b/test-lcm-current/InvokeHostFunctionTests/54f8492f87d26b35.xdr index bc31f5d2a0..b773de306a 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/54f8492f87d26b35.xdr and b/test-lcm-current/InvokeHostFunctionTests/54f8492f87d26b35.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/55c7bac6754e8daf.xdr b/test-lcm-current/InvokeHostFunctionTests/55c7bac6754e8daf.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/55c7bac6754e8daf.xdr rename to test-lcm-current/InvokeHostFunctionTests/55c7bac6754e8daf.xdr index 767546f25e..011ee4fac0 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/55c7bac6754e8daf.xdr and b/test-lcm-current/InvokeHostFunctionTests/55c7bac6754e8daf.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/569840c5704c5e44.xdr b/test-lcm-current/InvokeHostFunctionTests/569840c5704c5e44.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/569840c5704c5e44.xdr and b/test-lcm-current/InvokeHostFunctionTests/569840c5704c5e44.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/57207be4a3e12536.xdr b/test-lcm-current/InvokeHostFunctionTests/57207be4a3e12536.xdr index 791e3de9d8..12a0444fd2 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/57207be4a3e12536.xdr and b/test-lcm-current/InvokeHostFunctionTests/57207be4a3e12536.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/57659d96c64bd183.xdr b/test-lcm-current/InvokeHostFunctionTests/57659d96c64bd183.xdr index 9007dfd670..4e9c9fab88 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/57659d96c64bd183.xdr and b/test-lcm-current/InvokeHostFunctionTests/57659d96c64bd183.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/5770d78319f7e869.xdr b/test-lcm-current/InvokeHostFunctionTests/5770d78319f7e869.xdr index c5606a1a4c..8fdb88a074 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/5770d78319f7e869.xdr and b/test-lcm-current/InvokeHostFunctionTests/5770d78319f7e869.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/585310a1b2f3c9e1.xdr b/test-lcm-current/InvokeHostFunctionTests/585310a1b2f3c9e1.xdr index bd860cbdbf..a777555480 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/585310a1b2f3c9e1.xdr and b/test-lcm-current/InvokeHostFunctionTests/585310a1b2f3c9e1.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/588e655d03094c0e.xdr b/test-lcm-current/InvokeHostFunctionTests/588e655d03094c0e.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/588e655d03094c0e.xdr and b/test-lcm-current/InvokeHostFunctionTests/588e655d03094c0e.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/58d33db7d651fcd6.xdr b/test-lcm-current/InvokeHostFunctionTests/58d33db7d651fcd6.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/58d33db7d651fcd6.xdr and b/test-lcm-current/InvokeHostFunctionTests/58d33db7d651fcd6.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/58e3b7a81b4b1fbc.xdr b/test-lcm-current/InvokeHostFunctionTests/58e3b7a81b4b1fbc.xdr similarity index 96% rename from test-lcm-next/InvokeHostFunctionTests/58e3b7a81b4b1fbc.xdr rename to test-lcm-current/InvokeHostFunctionTests/58e3b7a81b4b1fbc.xdr index 2e9e053533..09e577421f 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/58e3b7a81b4b1fbc.xdr and b/test-lcm-current/InvokeHostFunctionTests/58e3b7a81b4b1fbc.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/594d4af3fbb90e26.xdr b/test-lcm-current/InvokeHostFunctionTests/594d4af3fbb90e26.xdr index ad2e7e895e..de6b36bfbc 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/594d4af3fbb90e26.xdr and b/test-lcm-current/InvokeHostFunctionTests/594d4af3fbb90e26.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/598b33597b504a5f.xdr b/test-lcm-current/InvokeHostFunctionTests/598b33597b504a5f.xdr index cb2536c639..1a245401e5 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/598b33597b504a5f.xdr and b/test-lcm-current/InvokeHostFunctionTests/598b33597b504a5f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/59a15bc254310ed9.xdr b/test-lcm-current/InvokeHostFunctionTests/59a15bc254310ed9.xdr index 62101498fa..74d068437c 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/59a15bc254310ed9.xdr and b/test-lcm-current/InvokeHostFunctionTests/59a15bc254310ed9.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/59a168278f646f8f.xdr b/test-lcm-current/InvokeHostFunctionTests/59a168278f646f8f.xdr index 6410f26a9a..c748375d35 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/59a168278f646f8f.xdr and b/test-lcm-current/InvokeHostFunctionTests/59a168278f646f8f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/59c181d5ff7acc7e.xdr b/test-lcm-current/InvokeHostFunctionTests/59c181d5ff7acc7e.xdr deleted file mode 100644 index 777cdd5018..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/59c181d5ff7acc7e.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/5a067d6f1a7c300f.xdr b/test-lcm-current/InvokeHostFunctionTests/5a067d6f1a7c300f.xdr similarity index 96% rename from test-lcm-next/InvokeHostFunctionTests/5a067d6f1a7c300f.xdr rename to test-lcm-current/InvokeHostFunctionTests/5a067d6f1a7c300f.xdr index 913617cf17..f2c4482442 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/5a067d6f1a7c300f.xdr and b/test-lcm-current/InvokeHostFunctionTests/5a067d6f1a7c300f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/5b5419e7ec6c21c3.xdr b/test-lcm-current/InvokeHostFunctionTests/5b5419e7ec6c21c3.xdr index dda6298b35..0561e7f07c 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/5b5419e7ec6c21c3.xdr and b/test-lcm-current/InvokeHostFunctionTests/5b5419e7ec6c21c3.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/5bd72d146c15215c.xdr b/test-lcm-current/InvokeHostFunctionTests/5bd72d146c15215c.xdr deleted file mode 100644 index 2f81d2d5bf..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/5bd72d146c15215c.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/5da4c3861d2a2428.xdr b/test-lcm-current/InvokeHostFunctionTests/5da4c3861d2a2428.xdr deleted file mode 100644 index b793ab844d..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/5da4c3861d2a2428.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/5e6b825862f70957.xdr b/test-lcm-current/InvokeHostFunctionTests/5e6b825862f70957.xdr deleted file mode 100644 index 94ac8bbc13..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/5e6b825862f70957.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/5e8558b4e95d77a3.xdr b/test-lcm-current/InvokeHostFunctionTests/5e8558b4e95d77a3.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/5e8558b4e95d77a3.xdr and b/test-lcm-current/InvokeHostFunctionTests/5e8558b4e95d77a3.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/5e95d63123990f96.xdr b/test-lcm-current/InvokeHostFunctionTests/5e95d63123990f96.xdr deleted file mode 100644 index 4f95b8f326..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/5e95d63123990f96.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/5eed63dee9c1b99a.xdr b/test-lcm-current/InvokeHostFunctionTests/5eed63dee9c1b99a.xdr new file mode 100644 index 0000000000..d0050e73d9 Binary files /dev/null and b/test-lcm-current/InvokeHostFunctionTests/5eed63dee9c1b99a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/5f0e7c9e5b14d2fa.xdr b/test-lcm-current/InvokeHostFunctionTests/5f0e7c9e5b14d2fa.xdr deleted file mode 100644 index 5929daecdb..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/5f0e7c9e5b14d2fa.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/5f484e7d113eb7b9.xdr b/test-lcm-current/InvokeHostFunctionTests/5f484e7d113eb7b9.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/5f484e7d113eb7b9.xdr rename to test-lcm-current/InvokeHostFunctionTests/5f484e7d113eb7b9.xdr index 8f93e36530..758b487ff4 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/5f484e7d113eb7b9.xdr and b/test-lcm-current/InvokeHostFunctionTests/5f484e7d113eb7b9.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/5f7b6356a31b9872.xdr b/test-lcm-current/InvokeHostFunctionTests/5f7b6356a31b9872.xdr index 37333222be..06c11e61a9 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/5f7b6356a31b9872.xdr and b/test-lcm-current/InvokeHostFunctionTests/5f7b6356a31b9872.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6031e1f0663cfda5.xdr b/test-lcm-current/InvokeHostFunctionTests/6031e1f0663cfda5.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/6031e1f0663cfda5.xdr and b/test-lcm-current/InvokeHostFunctionTests/6031e1f0663cfda5.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/608765b88758cdff.xdr b/test-lcm-current/InvokeHostFunctionTests/608765b88758cdff.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/608765b88758cdff.xdr and b/test-lcm-current/InvokeHostFunctionTests/608765b88758cdff.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/60d32d465e9ef646.xdr b/test-lcm-current/InvokeHostFunctionTests/60d32d465e9ef646.xdr index 36fa2aef9a..f37e21a291 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/60d32d465e9ef646.xdr and b/test-lcm-current/InvokeHostFunctionTests/60d32d465e9ef646.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6172930301eec1db.xdr b/test-lcm-current/InvokeHostFunctionTests/6172930301eec1db.xdr index 5a14ab58ed..c5f3c18aa6 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/6172930301eec1db.xdr and b/test-lcm-current/InvokeHostFunctionTests/6172930301eec1db.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/61aaf65d2d2be2df.xdr b/test-lcm-current/InvokeHostFunctionTests/61aaf65d2d2be2df.xdr index 40b5e252ef..7bc2334e13 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/61aaf65d2d2be2df.xdr and b/test-lcm-current/InvokeHostFunctionTests/61aaf65d2d2be2df.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/61c90fa30af7ebec.xdr b/test-lcm-current/InvokeHostFunctionTests/61c90fa30af7ebec.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/61c90fa30af7ebec.xdr rename to test-lcm-current/InvokeHostFunctionTests/61c90fa30af7ebec.xdr index d66804e4c1..ceef4d62aa 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/61c90fa30af7ebec.xdr and b/test-lcm-current/InvokeHostFunctionTests/61c90fa30af7ebec.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/61f1ec50d0457920.xdr b/test-lcm-current/InvokeHostFunctionTests/61f1ec50d0457920.xdr index 224c37f679..5960e38227 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/61f1ec50d0457920.xdr and b/test-lcm-current/InvokeHostFunctionTests/61f1ec50d0457920.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/622a635fa0e892e7.xdr b/test-lcm-current/InvokeHostFunctionTests/622a635fa0e892e7.xdr deleted file mode 100644 index f0d4470b84..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/622a635fa0e892e7.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/62ae728143dd1ae3.xdr b/test-lcm-current/InvokeHostFunctionTests/62ae728143dd1ae3.xdr index 0a75bb8ec1..4fda7288a1 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/62ae728143dd1ae3.xdr and b/test-lcm-current/InvokeHostFunctionTests/62ae728143dd1ae3.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/630112e28640b3dc.xdr b/test-lcm-current/InvokeHostFunctionTests/630112e28640b3dc.xdr index 87bdf26799..635da306c1 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/630112e28640b3dc.xdr and b/test-lcm-current/InvokeHostFunctionTests/630112e28640b3dc.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/63050b4296b7bd70.xdr b/test-lcm-current/InvokeHostFunctionTests/63050b4296b7bd70.xdr deleted file mode 100644 index 452f078a66..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/63050b4296b7bd70.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/633ede77405d5244.xdr b/test-lcm-current/InvokeHostFunctionTests/633ede77405d5244.xdr index bd7bb662b3..fc517eb235 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/633ede77405d5244.xdr and b/test-lcm-current/InvokeHostFunctionTests/633ede77405d5244.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/63bf3b0d817b48a3.xdr b/test-lcm-current/InvokeHostFunctionTests/63bf3b0d817b48a3.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/63bf3b0d817b48a3.xdr and b/test-lcm-current/InvokeHostFunctionTests/63bf3b0d817b48a3.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/63eb63e8c2c13d4e.xdr b/test-lcm-current/InvokeHostFunctionTests/63eb63e8c2c13d4e.xdr similarity index 96% rename from test-lcm-next/InvokeHostFunctionTests/63eb63e8c2c13d4e.xdr rename to test-lcm-current/InvokeHostFunctionTests/63eb63e8c2c13d4e.xdr index e45aabfa1a..ac3ae5e89c 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/63eb63e8c2c13d4e.xdr and b/test-lcm-current/InvokeHostFunctionTests/63eb63e8c2c13d4e.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6445b19d68f45e62.xdr b/test-lcm-current/InvokeHostFunctionTests/6445b19d68f45e62.xdr index a9f129a3cc..d59d13220a 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/6445b19d68f45e62.xdr and b/test-lcm-current/InvokeHostFunctionTests/6445b19d68f45e62.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6452cb6f030f5835.xdr b/test-lcm-current/InvokeHostFunctionTests/6452cb6f030f5835.xdr deleted file mode 100644 index 95467b8dde..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/6452cb6f030f5835.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/647908425725f18e.xdr b/test-lcm-current/InvokeHostFunctionTests/647908425725f18e.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/647908425725f18e.xdr and b/test-lcm-current/InvokeHostFunctionTests/647908425725f18e.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/64c67c03ad8477ca.xdr b/test-lcm-current/InvokeHostFunctionTests/64c67c03ad8477ca.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/64c67c03ad8477ca.xdr and b/test-lcm-current/InvokeHostFunctionTests/64c67c03ad8477ca.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/64def0179fc4dbe6.xdr b/test-lcm-current/InvokeHostFunctionTests/64def0179fc4dbe6.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/64def0179fc4dbe6.xdr and b/test-lcm-current/InvokeHostFunctionTests/64def0179fc4dbe6.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6519e434acf354b7.xdr b/test-lcm-current/InvokeHostFunctionTests/6519e434acf354b7.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/6519e434acf354b7.xdr and b/test-lcm-current/InvokeHostFunctionTests/6519e434acf354b7.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/659ac68c6d773240.xdr b/test-lcm-current/InvokeHostFunctionTests/659ac68c6d773240.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/659ac68c6d773240.xdr and b/test-lcm-current/InvokeHostFunctionTests/659ac68c6d773240.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/65be2448771fb442.xdr b/test-lcm-current/InvokeHostFunctionTests/65be2448771fb442.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/65be2448771fb442.xdr rename to test-lcm-current/InvokeHostFunctionTests/65be2448771fb442.xdr index 8c346f9965..c6cb4971d0 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/65be2448771fb442.xdr and b/test-lcm-current/InvokeHostFunctionTests/65be2448771fb442.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/65d4ab7a4ee03638.xdr b/test-lcm-current/InvokeHostFunctionTests/65d4ab7a4ee03638.xdr index 07f78274cc..d9a1712424 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/65d4ab7a4ee03638.xdr and b/test-lcm-current/InvokeHostFunctionTests/65d4ab7a4ee03638.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/660ffaf163aa3a0d.xdr b/test-lcm-current/InvokeHostFunctionTests/660ffaf163aa3a0d.xdr index 4b980b0213..87266c615c 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/660ffaf163aa3a0d.xdr and b/test-lcm-current/InvokeHostFunctionTests/660ffaf163aa3a0d.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/666cc90ebbdab3dd.xdr b/test-lcm-current/InvokeHostFunctionTests/666cc90ebbdab3dd.xdr index 82a98baedb..29fc548cb1 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/666cc90ebbdab3dd.xdr and b/test-lcm-current/InvokeHostFunctionTests/666cc90ebbdab3dd.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/66755facd883bef4.xdr b/test-lcm-current/InvokeHostFunctionTests/66755facd883bef4.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/66755facd883bef4.xdr and b/test-lcm-current/InvokeHostFunctionTests/66755facd883bef4.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6716ff61cd9b5a3f.xdr b/test-lcm-current/InvokeHostFunctionTests/6716ff61cd9b5a3f.xdr index 601cc33e51..b0d153d154 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/6716ff61cd9b5a3f.xdr and b/test-lcm-current/InvokeHostFunctionTests/6716ff61cd9b5a3f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/675cca94471892a1.xdr b/test-lcm-current/InvokeHostFunctionTests/675cca94471892a1.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/675cca94471892a1.xdr and b/test-lcm-current/InvokeHostFunctionTests/675cca94471892a1.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/6781141559d52ed3.xdr b/test-lcm-current/InvokeHostFunctionTests/6781141559d52ed3.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/6781141559d52ed3.xdr rename to test-lcm-current/InvokeHostFunctionTests/6781141559d52ed3.xdr index ba6f7dfffb..643daf07be 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/6781141559d52ed3.xdr and b/test-lcm-current/InvokeHostFunctionTests/6781141559d52ed3.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/678620649d7edfe9.xdr b/test-lcm-current/InvokeHostFunctionTests/678620649d7edfe9.xdr index 534584ce82..44ff36e106 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/678620649d7edfe9.xdr and b/test-lcm-current/InvokeHostFunctionTests/678620649d7edfe9.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/67c57dc9f673aa9e.xdr b/test-lcm-current/InvokeHostFunctionTests/67c57dc9f673aa9e.xdr index 73efbecfc1..0bbaeeb222 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/67c57dc9f673aa9e.xdr and b/test-lcm-current/InvokeHostFunctionTests/67c57dc9f673aa9e.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/68392e6abed97fb5.xdr b/test-lcm-current/InvokeHostFunctionTests/68392e6abed97fb5.xdr index 3c1b29e8ea..f035ccab41 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/68392e6abed97fb5.xdr and b/test-lcm-current/InvokeHostFunctionTests/68392e6abed97fb5.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6856b0b044010cae.xdr b/test-lcm-current/InvokeHostFunctionTests/6856b0b044010cae.xdr index 9162d9a09d..1f2035574a 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/6856b0b044010cae.xdr and b/test-lcm-current/InvokeHostFunctionTests/6856b0b044010cae.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/68cbff25009fe342.xdr b/test-lcm-current/InvokeHostFunctionTests/68cbff25009fe342.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/68cbff25009fe342.xdr rename to test-lcm-current/InvokeHostFunctionTests/68cbff25009fe342.xdr index 13816398e6..c2bdeb349c 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/68cbff25009fe342.xdr and b/test-lcm-current/InvokeHostFunctionTests/68cbff25009fe342.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/68f165975379ef6f.xdr b/test-lcm-current/InvokeHostFunctionTests/68f165975379ef6f.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/68f165975379ef6f.xdr and b/test-lcm-current/InvokeHostFunctionTests/68f165975379ef6f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/69051a1b441d9996.xdr b/test-lcm-current/InvokeHostFunctionTests/69051a1b441d9996.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/69051a1b441d9996.xdr and b/test-lcm-current/InvokeHostFunctionTests/69051a1b441d9996.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/691cd6b55fa9a9fb.xdr b/test-lcm-current/InvokeHostFunctionTests/691cd6b55fa9a9fb.xdr similarity index 97% rename from test-lcm-next/InvokeHostFunctionTests/691cd6b55fa9a9fb.xdr rename to test-lcm-current/InvokeHostFunctionTests/691cd6b55fa9a9fb.xdr index e26b50a67f..76b49caf47 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/691cd6b55fa9a9fb.xdr and b/test-lcm-current/InvokeHostFunctionTests/691cd6b55fa9a9fb.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/69abe494995566fb.xdr b/test-lcm-current/InvokeHostFunctionTests/69abe494995566fb.xdr index 263fdee0dd..3c7ea8033f 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/69abe494995566fb.xdr and b/test-lcm-current/InvokeHostFunctionTests/69abe494995566fb.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/69d72740ac448701.xdr b/test-lcm-current/InvokeHostFunctionTests/69d72740ac448701.xdr index de09ce762a..f6d7249b6f 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/69d72740ac448701.xdr and b/test-lcm-current/InvokeHostFunctionTests/69d72740ac448701.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/69ea6faa228bf063.xdr b/test-lcm-current/InvokeHostFunctionTests/69ea6faa228bf063.xdr deleted file mode 100644 index 369015379d..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/69ea6faa228bf063.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6a0fcad7207a7356.xdr b/test-lcm-current/InvokeHostFunctionTests/6a0fcad7207a7356.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/6a0fcad7207a7356.xdr and b/test-lcm-current/InvokeHostFunctionTests/6a0fcad7207a7356.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6a620fbe985dd6c3.xdr b/test-lcm-current/InvokeHostFunctionTests/6a620fbe985dd6c3.xdr deleted file mode 100644 index b6950f29de..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/6a620fbe985dd6c3.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6b1bba1cde19195d.xdr b/test-lcm-current/InvokeHostFunctionTests/6b1bba1cde19195d.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/6b1bba1cde19195d.xdr and b/test-lcm-current/InvokeHostFunctionTests/6b1bba1cde19195d.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6b7ea8905416d282.xdr b/test-lcm-current/InvokeHostFunctionTests/6b7ea8905416d282.xdr index f3fca6e00d..c0c7036b09 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/6b7ea8905416d282.xdr and b/test-lcm-current/InvokeHostFunctionTests/6b7ea8905416d282.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6be1723f2de82c90.xdr b/test-lcm-current/InvokeHostFunctionTests/6be1723f2de82c90.xdr index 2849196593..365063146a 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/6be1723f2de82c90.xdr and b/test-lcm-current/InvokeHostFunctionTests/6be1723f2de82c90.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6c7ee12d6e1882df.xdr b/test-lcm-current/InvokeHostFunctionTests/6c7ee12d6e1882df.xdr index 7cbb91dce7..6928dbd2f9 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/6c7ee12d6e1882df.xdr and b/test-lcm-current/InvokeHostFunctionTests/6c7ee12d6e1882df.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6c96764439456a9a.xdr b/test-lcm-current/InvokeHostFunctionTests/6c96764439456a9a.xdr deleted file mode 100644 index 0017926538..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/6c96764439456a9a.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/6d661fda6fedbadc.xdr b/test-lcm-current/InvokeHostFunctionTests/6d661fda6fedbadc.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/6d661fda6fedbadc.xdr rename to test-lcm-current/InvokeHostFunctionTests/6d661fda6fedbadc.xdr index a373bd2b59..a9d7cf4c97 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/6d661fda6fedbadc.xdr and b/test-lcm-current/InvokeHostFunctionTests/6d661fda6fedbadc.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6de1fadf0f1a6789.xdr b/test-lcm-current/InvokeHostFunctionTests/6de1fadf0f1a6789.xdr index 26e60d8b70..048fdc215a 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/6de1fadf0f1a6789.xdr and b/test-lcm-current/InvokeHostFunctionTests/6de1fadf0f1a6789.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6e020886d77520ee.xdr b/test-lcm-current/InvokeHostFunctionTests/6e020886d77520ee.xdr index 6f3f046331..48e6a0db4d 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/6e020886d77520ee.xdr and b/test-lcm-current/InvokeHostFunctionTests/6e020886d77520ee.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6e0258e8cfa3ab47.xdr b/test-lcm-current/InvokeHostFunctionTests/6e0258e8cfa3ab47.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/6e0258e8cfa3ab47.xdr and b/test-lcm-current/InvokeHostFunctionTests/6e0258e8cfa3ab47.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6e088a4585762b89.xdr b/test-lcm-current/InvokeHostFunctionTests/6e088a4585762b89.xdr deleted file mode 100644 index cb54168f42..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/6e088a4585762b89.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6e1d5421cf61b82d.xdr b/test-lcm-current/InvokeHostFunctionTests/6e1d5421cf61b82d.xdr index d9007156d3..f91266c112 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/6e1d5421cf61b82d.xdr and b/test-lcm-current/InvokeHostFunctionTests/6e1d5421cf61b82d.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/6e2ec29147b7b931.xdr b/test-lcm-current/InvokeHostFunctionTests/6e2ec29147b7b931.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/6e2ec29147b7b931.xdr rename to test-lcm-current/InvokeHostFunctionTests/6e2ec29147b7b931.xdr index a330a58d8b..e4897c44a0 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/6e2ec29147b7b931.xdr and b/test-lcm-current/InvokeHostFunctionTests/6e2ec29147b7b931.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6e4f201baf180e8f.xdr b/test-lcm-current/InvokeHostFunctionTests/6e4f201baf180e8f.xdr deleted file mode 100644 index 85a15019e5..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/6e4f201baf180e8f.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6f27e3a9c63fca5b.xdr b/test-lcm-current/InvokeHostFunctionTests/6f27e3a9c63fca5b.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/6f27e3a9c63fca5b.xdr and b/test-lcm-current/InvokeHostFunctionTests/6f27e3a9c63fca5b.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6f3467c6e13a1648.xdr b/test-lcm-current/InvokeHostFunctionTests/6f3467c6e13a1648.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/6f3467c6e13a1648.xdr and b/test-lcm-current/InvokeHostFunctionTests/6f3467c6e13a1648.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6ffafbc029e47549.xdr b/test-lcm-current/InvokeHostFunctionTests/6ffafbc029e47549.xdr index f3d23d8bb2..6053d9117b 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/6ffafbc029e47549.xdr and b/test-lcm-current/InvokeHostFunctionTests/6ffafbc029e47549.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/701983d81c015a60.xdr b/test-lcm-current/InvokeHostFunctionTests/701983d81c015a60.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/701983d81c015a60.xdr and b/test-lcm-current/InvokeHostFunctionTests/701983d81c015a60.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/709174bd5006953a.xdr b/test-lcm-current/InvokeHostFunctionTests/709174bd5006953a.xdr deleted file mode 100644 index 3067c8cf23..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/709174bd5006953a.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/70b7679c1de24a4b.xdr b/test-lcm-current/InvokeHostFunctionTests/70b7679c1de24a4b.xdr index 323db31c72..630ab2a641 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/70b7679c1de24a4b.xdr and b/test-lcm-current/InvokeHostFunctionTests/70b7679c1de24a4b.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/714af0a63932eb6b.xdr b/test-lcm-current/InvokeHostFunctionTests/714af0a63932eb6b.xdr index 7ba5d7942a..1631c56f05 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/714af0a63932eb6b.xdr and b/test-lcm-current/InvokeHostFunctionTests/714af0a63932eb6b.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/71db73c744a926be.xdr b/test-lcm-current/InvokeHostFunctionTests/71db73c744a926be.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/71db73c744a926be.xdr and b/test-lcm-current/InvokeHostFunctionTests/71db73c744a926be.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/725278041cf421e0.xdr b/test-lcm-current/InvokeHostFunctionTests/725278041cf421e0.xdr index 2eb348a69f..56687249f9 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/725278041cf421e0.xdr and b/test-lcm-current/InvokeHostFunctionTests/725278041cf421e0.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/729f8af24dc7fbd8.xdr b/test-lcm-current/InvokeHostFunctionTests/729f8af24dc7fbd8.xdr index d415ec5251..0d1fedd919 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/729f8af24dc7fbd8.xdr and b/test-lcm-current/InvokeHostFunctionTests/729f8af24dc7fbd8.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/734335eb1ab5000f.xdr b/test-lcm-current/InvokeHostFunctionTests/734335eb1ab5000f.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/734335eb1ab5000f.xdr rename to test-lcm-current/InvokeHostFunctionTests/734335eb1ab5000f.xdr index db70248726..0d2fab1e5d 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/734335eb1ab5000f.xdr and b/test-lcm-current/InvokeHostFunctionTests/734335eb1ab5000f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/73d97239afd1a289.xdr b/test-lcm-current/InvokeHostFunctionTests/73d97239afd1a289.xdr index 43436a40a8..8f82b3a8a6 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/73d97239afd1a289.xdr and b/test-lcm-current/InvokeHostFunctionTests/73d97239afd1a289.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/7476d7d3f060cf1d.xdr b/test-lcm-current/InvokeHostFunctionTests/7476d7d3f060cf1d.xdr index d6fe1af55a..7b64169815 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/7476d7d3f060cf1d.xdr and b/test-lcm-current/InvokeHostFunctionTests/7476d7d3f060cf1d.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/748c7e19021ce5e2.xdr b/test-lcm-current/InvokeHostFunctionTests/748c7e19021ce5e2.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/748c7e19021ce5e2.xdr rename to test-lcm-current/InvokeHostFunctionTests/748c7e19021ce5e2.xdr index b1d2c4eb1a..da4b63fc00 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/748c7e19021ce5e2.xdr and b/test-lcm-current/InvokeHostFunctionTests/748c7e19021ce5e2.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/749c8a69d4dfde05.xdr b/test-lcm-current/InvokeHostFunctionTests/749c8a69d4dfde05.xdr deleted file mode 100644 index 4cc471bbdc..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/749c8a69d4dfde05.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/749d86ef2b83de64.xdr b/test-lcm-current/InvokeHostFunctionTests/749d86ef2b83de64.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/749d86ef2b83de64.xdr and b/test-lcm-current/InvokeHostFunctionTests/749d86ef2b83de64.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/74cb309604b87ad5.xdr b/test-lcm-current/InvokeHostFunctionTests/74cb309604b87ad5.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/74cb309604b87ad5.xdr and b/test-lcm-current/InvokeHostFunctionTests/74cb309604b87ad5.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/74eec9cae165fa50.xdr b/test-lcm-current/InvokeHostFunctionTests/74eec9cae165fa50.xdr similarity index 96% rename from test-lcm-next/InvokeHostFunctionTests/74eec9cae165fa50.xdr rename to test-lcm-current/InvokeHostFunctionTests/74eec9cae165fa50.xdr index 6dfb22841c..5313f0c459 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/74eec9cae165fa50.xdr and b/test-lcm-current/InvokeHostFunctionTests/74eec9cae165fa50.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/755302381dc99f66.xdr b/test-lcm-current/InvokeHostFunctionTests/755302381dc99f66.xdr similarity index 91% rename from test-lcm-next/InvokeHostFunctionTests/755302381dc99f66.xdr rename to test-lcm-current/InvokeHostFunctionTests/755302381dc99f66.xdr index da1370c10f..89f116b5a0 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/755302381dc99f66.xdr and b/test-lcm-current/InvokeHostFunctionTests/755302381dc99f66.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/7560b4ebec62de03.xdr b/test-lcm-current/InvokeHostFunctionTests/7560b4ebec62de03.xdr index 70b7279493..2cb9bb96f5 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/7560b4ebec62de03.xdr and b/test-lcm-current/InvokeHostFunctionTests/7560b4ebec62de03.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/75a857ffd876a72d.xdr b/test-lcm-current/InvokeHostFunctionTests/75a857ffd876a72d.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/75a857ffd876a72d.xdr and b/test-lcm-current/InvokeHostFunctionTests/75a857ffd876a72d.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/7623428964713c55.xdr b/test-lcm-current/InvokeHostFunctionTests/7623428964713c55.xdr index c756eef404..35060d505a 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/7623428964713c55.xdr and b/test-lcm-current/InvokeHostFunctionTests/7623428964713c55.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/7624c43e428ee32d.xdr b/test-lcm-current/InvokeHostFunctionTests/7624c43e428ee32d.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/7624c43e428ee32d.xdr and b/test-lcm-current/InvokeHostFunctionTests/7624c43e428ee32d.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/763b53bb30a2499d.xdr b/test-lcm-current/InvokeHostFunctionTests/763b53bb30a2499d.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/763b53bb30a2499d.xdr and b/test-lcm-current/InvokeHostFunctionTests/763b53bb30a2499d.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/77904c0e7819a7eb.xdr b/test-lcm-current/InvokeHostFunctionTests/77904c0e7819a7eb.xdr index 55e043ae1a..92500e93f5 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/77904c0e7819a7eb.xdr and b/test-lcm-current/InvokeHostFunctionTests/77904c0e7819a7eb.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/77b0f96ee78d5679.xdr b/test-lcm-current/InvokeHostFunctionTests/77b0f96ee78d5679.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/77b0f96ee78d5679.xdr and b/test-lcm-current/InvokeHostFunctionTests/77b0f96ee78d5679.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/77f16a104596eb69.xdr b/test-lcm-current/InvokeHostFunctionTests/77f16a104596eb69.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/77f16a104596eb69.xdr rename to test-lcm-current/InvokeHostFunctionTests/77f16a104596eb69.xdr index e88a1bc201..9d9eb7211f 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/77f16a104596eb69.xdr and b/test-lcm-current/InvokeHostFunctionTests/77f16a104596eb69.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/7811a2db272e2bc5.xdr b/test-lcm-current/InvokeHostFunctionTests/7811a2db272e2bc5.xdr index 985ffc5d0e..6b043febd7 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/7811a2db272e2bc5.xdr and b/test-lcm-current/InvokeHostFunctionTests/7811a2db272e2bc5.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/781c971d7b58563a.xdr b/test-lcm-current/InvokeHostFunctionTests/781c971d7b58563a.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/781c971d7b58563a.xdr and b/test-lcm-current/InvokeHostFunctionTests/781c971d7b58563a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/78d19632e893bee4.xdr b/test-lcm-current/InvokeHostFunctionTests/78d19632e893bee4.xdr index d5352ce2fd..6cd4571509 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/78d19632e893bee4.xdr and b/test-lcm-current/InvokeHostFunctionTests/78d19632e893bee4.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/7974f01f0568597f.xdr b/test-lcm-current/InvokeHostFunctionTests/7974f01f0568597f.xdr index dcdb0105e2..1062078ce9 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/7974f01f0568597f.xdr and b/test-lcm-current/InvokeHostFunctionTests/7974f01f0568597f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/79c1100f9d245b7a.xdr b/test-lcm-current/InvokeHostFunctionTests/79c1100f9d245b7a.xdr deleted file mode 100644 index 8a09b725f2..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/79c1100f9d245b7a.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/79e52eb41531b9e3.xdr b/test-lcm-current/InvokeHostFunctionTests/79e52eb41531b9e3.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/79e52eb41531b9e3.xdr rename to test-lcm-current/InvokeHostFunctionTests/79e52eb41531b9e3.xdr index fc0f64ff26..29c9898d5b 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/79e52eb41531b9e3.xdr and b/test-lcm-current/InvokeHostFunctionTests/79e52eb41531b9e3.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/7a1c55d49a8e88da.xdr b/test-lcm-current/InvokeHostFunctionTests/7a1c55d49a8e88da.xdr deleted file mode 100644 index be86ded38c..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/7a1c55d49a8e88da.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/7ab8a5bbd143dfa8.xdr b/test-lcm-current/InvokeHostFunctionTests/7ab8a5bbd143dfa8.xdr similarity index 96% rename from test-lcm-next/InvokeHostFunctionTests/7ab8a5bbd143dfa8.xdr rename to test-lcm-current/InvokeHostFunctionTests/7ab8a5bbd143dfa8.xdr index 97ab47009a..3978867093 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/7ab8a5bbd143dfa8.xdr and b/test-lcm-current/InvokeHostFunctionTests/7ab8a5bbd143dfa8.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/7af34c851b5af2ba.xdr b/test-lcm-current/InvokeHostFunctionTests/7af34c851b5af2ba.xdr index 183ffca4c6..c55d7274ed 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/7af34c851b5af2ba.xdr and b/test-lcm-current/InvokeHostFunctionTests/7af34c851b5af2ba.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/7b7c95deffd18889.xdr b/test-lcm-current/InvokeHostFunctionTests/7b7c95deffd18889.xdr deleted file mode 100644 index 4447396578..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/7b7c95deffd18889.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/7be77ec5fe6752ae.xdr b/test-lcm-current/InvokeHostFunctionTests/7be77ec5fe6752ae.xdr deleted file mode 100644 index 860fa79f9b..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/7be77ec5fe6752ae.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/7c3fa2905342aef3.xdr b/test-lcm-current/InvokeHostFunctionTests/7c3fa2905342aef3.xdr index f048044a07..fb2cf24c8c 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/7c3fa2905342aef3.xdr and b/test-lcm-current/InvokeHostFunctionTests/7c3fa2905342aef3.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/7c588d1eada8e956.xdr b/test-lcm-current/InvokeHostFunctionTests/7c588d1eada8e956.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/7c588d1eada8e956.xdr and b/test-lcm-current/InvokeHostFunctionTests/7c588d1eada8e956.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/7c7ac7fe41e94018.xdr b/test-lcm-current/InvokeHostFunctionTests/7c7ac7fe41e94018.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/7c7ac7fe41e94018.xdr and b/test-lcm-current/InvokeHostFunctionTests/7c7ac7fe41e94018.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/7ca0fb2954bbb6c8.xdr b/test-lcm-current/InvokeHostFunctionTests/7ca0fb2954bbb6c8.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/7ca0fb2954bbb6c8.xdr and b/test-lcm-current/InvokeHostFunctionTests/7ca0fb2954bbb6c8.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/7cf5a062e427a3b3.xdr b/test-lcm-current/InvokeHostFunctionTests/7cf5a062e427a3b3.xdr index 261caa2a9c..a8cdaf9316 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/7cf5a062e427a3b3.xdr and b/test-lcm-current/InvokeHostFunctionTests/7cf5a062e427a3b3.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/7db90301e11fa5d0.xdr b/test-lcm-current/InvokeHostFunctionTests/7db90301e11fa5d0.xdr index 1e164b52e8..4711d7735e 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/7db90301e11fa5d0.xdr and b/test-lcm-current/InvokeHostFunctionTests/7db90301e11fa5d0.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/7dd9f6410b671c2f.xdr b/test-lcm-current/InvokeHostFunctionTests/7dd9f6410b671c2f.xdr index 6956f8970a..b1dacd196c 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/7dd9f6410b671c2f.xdr and b/test-lcm-current/InvokeHostFunctionTests/7dd9f6410b671c2f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/7e2cf78094517d5a.xdr b/test-lcm-current/InvokeHostFunctionTests/7e2cf78094517d5a.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/7e2cf78094517d5a.xdr rename to test-lcm-current/InvokeHostFunctionTests/7e2cf78094517d5a.xdr index 67a44ce826..cdb965ecdf 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/7e2cf78094517d5a.xdr and b/test-lcm-current/InvokeHostFunctionTests/7e2cf78094517d5a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/7f1fec7fe0be9e43.xdr b/test-lcm-current/InvokeHostFunctionTests/7f1fec7fe0be9e43.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/7f1fec7fe0be9e43.xdr and b/test-lcm-current/InvokeHostFunctionTests/7f1fec7fe0be9e43.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/7f737b8fa30b66b4.xdr b/test-lcm-current/InvokeHostFunctionTests/7f737b8fa30b66b4.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/7f737b8fa30b66b4.xdr and b/test-lcm-current/InvokeHostFunctionTests/7f737b8fa30b66b4.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/7f7e72aa985692ae.xdr b/test-lcm-current/InvokeHostFunctionTests/7f7e72aa985692ae.xdr index aeb2c76caa..eb460b6ca3 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/7f7e72aa985692ae.xdr and b/test-lcm-current/InvokeHostFunctionTests/7f7e72aa985692ae.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/80a11f0f32de97dd.xdr b/test-lcm-current/InvokeHostFunctionTests/80a11f0f32de97dd.xdr deleted file mode 100644 index 4dad7c5762..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/80a11f0f32de97dd.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/811ecb1190787c4f.xdr b/test-lcm-current/InvokeHostFunctionTests/811ecb1190787c4f.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/811ecb1190787c4f.xdr and b/test-lcm-current/InvokeHostFunctionTests/811ecb1190787c4f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/81c974086b0e4f56.xdr b/test-lcm-current/InvokeHostFunctionTests/81c974086b0e4f56.xdr index 5be805725b..3db2ee30a6 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/81c974086b0e4f56.xdr and b/test-lcm-current/InvokeHostFunctionTests/81c974086b0e4f56.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/83e78d1ac27b4951.xdr b/test-lcm-current/InvokeHostFunctionTests/83e78d1ac27b4951.xdr index a15fb0c107..149c1652f4 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/83e78d1ac27b4951.xdr and b/test-lcm-current/InvokeHostFunctionTests/83e78d1ac27b4951.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/83f9b0ae9387fa6d.xdr b/test-lcm-current/InvokeHostFunctionTests/83f9b0ae9387fa6d.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/83f9b0ae9387fa6d.xdr and b/test-lcm-current/InvokeHostFunctionTests/83f9b0ae9387fa6d.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/841b5a633ba3dcd4.xdr b/test-lcm-current/InvokeHostFunctionTests/841b5a633ba3dcd4.xdr index 76c57e4fbe..6581fbaef1 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/841b5a633ba3dcd4.xdr and b/test-lcm-current/InvokeHostFunctionTests/841b5a633ba3dcd4.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/84315cd6d68b5749.xdr b/test-lcm-current/InvokeHostFunctionTests/84315cd6d68b5749.xdr index 9ff817ebe0..ab735b565a 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/84315cd6d68b5749.xdr and b/test-lcm-current/InvokeHostFunctionTests/84315cd6d68b5749.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/843c6cc8cb69c839.xdr b/test-lcm-current/InvokeHostFunctionTests/843c6cc8cb69c839.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/843c6cc8cb69c839.xdr and b/test-lcm-current/InvokeHostFunctionTests/843c6cc8cb69c839.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/846db27a79a2ec7d.xdr b/test-lcm-current/InvokeHostFunctionTests/846db27a79a2ec7d.xdr deleted file mode 100644 index 4003ba4ca7..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/846db27a79a2ec7d.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/8557bde173bf4813.xdr b/test-lcm-current/InvokeHostFunctionTests/8557bde173bf4813.xdr deleted file mode 100644 index f5bb46d30b..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/8557bde173bf4813.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/858ea3c6fa587d2c.xdr b/test-lcm-current/InvokeHostFunctionTests/858ea3c6fa587d2c.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/858ea3c6fa587d2c.xdr and b/test-lcm-current/InvokeHostFunctionTests/858ea3c6fa587d2c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/860c9ebb141ea269.xdr b/test-lcm-current/InvokeHostFunctionTests/860c9ebb141ea269.xdr index 7f98e8c4e2..11139b630b 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/860c9ebb141ea269.xdr and b/test-lcm-current/InvokeHostFunctionTests/860c9ebb141ea269.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/865eb531cfdba544.xdr b/test-lcm-current/InvokeHostFunctionTests/865eb531cfdba544.xdr deleted file mode 100644 index 6c0ac68d03..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/865eb531cfdba544.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/8666b7f3149900ec.xdr b/test-lcm-current/InvokeHostFunctionTests/8666b7f3149900ec.xdr index c02935d079..2d950021bc 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/8666b7f3149900ec.xdr and b/test-lcm-current/InvokeHostFunctionTests/8666b7f3149900ec.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/86c090d2b24bc515.xdr b/test-lcm-current/InvokeHostFunctionTests/86c090d2b24bc515.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/86c090d2b24bc515.xdr and b/test-lcm-current/InvokeHostFunctionTests/86c090d2b24bc515.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/86ec0b605b279d49.xdr b/test-lcm-current/InvokeHostFunctionTests/86ec0b605b279d49.xdr index 8e22475e80..d613cbc28a 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/86ec0b605b279d49.xdr and b/test-lcm-current/InvokeHostFunctionTests/86ec0b605b279d49.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/875401f18d4d37e0.xdr b/test-lcm-current/InvokeHostFunctionTests/875401f18d4d37e0.xdr index 0f5dd53a41..01b2d28268 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/875401f18d4d37e0.xdr and b/test-lcm-current/InvokeHostFunctionTests/875401f18d4d37e0.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/8848fdad9b841822.xdr b/test-lcm-current/InvokeHostFunctionTests/8848fdad9b841822.xdr index d21030d323..87c8fc8d44 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/8848fdad9b841822.xdr and b/test-lcm-current/InvokeHostFunctionTests/8848fdad9b841822.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/8878f61751a807b8.xdr b/test-lcm-current/InvokeHostFunctionTests/8878f61751a807b8.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/8878f61751a807b8.xdr and b/test-lcm-current/InvokeHostFunctionTests/8878f61751a807b8.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/887c083fc1639e43.xdr b/test-lcm-current/InvokeHostFunctionTests/887c083fc1639e43.xdr index 42492966a5..e6d84dc1ae 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/887c083fc1639e43.xdr and b/test-lcm-current/InvokeHostFunctionTests/887c083fc1639e43.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/8900d5bd1b2b9f70.xdr b/test-lcm-current/InvokeHostFunctionTests/8900d5bd1b2b9f70.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/8900d5bd1b2b9f70.xdr and b/test-lcm-current/InvokeHostFunctionTests/8900d5bd1b2b9f70.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/891a276e7ce06b91.xdr b/test-lcm-current/InvokeHostFunctionTests/891a276e7ce06b91.xdr index 7516c0078b..308832cd25 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/891a276e7ce06b91.xdr and b/test-lcm-current/InvokeHostFunctionTests/891a276e7ce06b91.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/894fd4e0f979d673.xdr b/test-lcm-current/InvokeHostFunctionTests/894fd4e0f979d673.xdr deleted file mode 100644 index c77bd66e18..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/894fd4e0f979d673.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/895b3456160d157c.xdr b/test-lcm-current/InvokeHostFunctionTests/895b3456160d157c.xdr index 7784e35847..989b95c572 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/895b3456160d157c.xdr and b/test-lcm-current/InvokeHostFunctionTests/895b3456160d157c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/897ee371b2a80230.xdr b/test-lcm-current/InvokeHostFunctionTests/897ee371b2a80230.xdr index 483b9ff7ec..f2943e3d45 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/897ee371b2a80230.xdr and b/test-lcm-current/InvokeHostFunctionTests/897ee371b2a80230.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/898221ce90bbe12a.xdr b/test-lcm-current/InvokeHostFunctionTests/898221ce90bbe12a.xdr index 67afc6094d..6cd4eb2b0b 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/898221ce90bbe12a.xdr and b/test-lcm-current/InvokeHostFunctionTests/898221ce90bbe12a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/89f9145d00c68451.xdr b/test-lcm-current/InvokeHostFunctionTests/89f9145d00c68451.xdr index 40334df5e0..a8dba10e88 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/89f9145d00c68451.xdr and b/test-lcm-current/InvokeHostFunctionTests/89f9145d00c68451.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/89fc4f3bfc2e66a6.xdr b/test-lcm-current/InvokeHostFunctionTests/89fc4f3bfc2e66a6.xdr deleted file mode 100644 index bf54e36d10..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/89fc4f3bfc2e66a6.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/8adead0567fe7d71.xdr b/test-lcm-current/InvokeHostFunctionTests/8adead0567fe7d71.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/8adead0567fe7d71.xdr and b/test-lcm-current/InvokeHostFunctionTests/8adead0567fe7d71.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/8b13d91d773c9085.xdr b/test-lcm-current/InvokeHostFunctionTests/8b13d91d773c9085.xdr index 91d944e654..09a3a0cbf2 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/8b13d91d773c9085.xdr and b/test-lcm-current/InvokeHostFunctionTests/8b13d91d773c9085.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/8b327a3e8ca7a777.xdr b/test-lcm-current/InvokeHostFunctionTests/8b327a3e8ca7a777.xdr deleted file mode 100644 index 2c53d85038..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/8b327a3e8ca7a777.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/8b6fc74220d12dc7.xdr b/test-lcm-current/InvokeHostFunctionTests/8b6fc74220d12dc7.xdr deleted file mode 100644 index 55bcea9ebe..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/8b6fc74220d12dc7.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/8cf745afc0a51283.xdr b/test-lcm-current/InvokeHostFunctionTests/8cf745afc0a51283.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/8cf745afc0a51283.xdr and b/test-lcm-current/InvokeHostFunctionTests/8cf745afc0a51283.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/8dd5261011c6c3bc.xdr b/test-lcm-current/InvokeHostFunctionTests/8dd5261011c6c3bc.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/8dd5261011c6c3bc.xdr and b/test-lcm-current/InvokeHostFunctionTests/8dd5261011c6c3bc.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/8dfbc063af86ec35.xdr b/test-lcm-current/InvokeHostFunctionTests/8dfbc063af86ec35.xdr index 6dc7219a2c..a1c59f76c5 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/8dfbc063af86ec35.xdr and b/test-lcm-current/InvokeHostFunctionTests/8dfbc063af86ec35.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/8e8e3849c9d329b6.xdr b/test-lcm-current/InvokeHostFunctionTests/8e8e3849c9d329b6.xdr deleted file mode 100644 index afc829f49a..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/8e8e3849c9d329b6.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/8e99b44b297caaac.xdr b/test-lcm-current/InvokeHostFunctionTests/8e99b44b297caaac.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/8e99b44b297caaac.xdr and b/test-lcm-current/InvokeHostFunctionTests/8e99b44b297caaac.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/8f46b4013f8e249b.xdr b/test-lcm-current/InvokeHostFunctionTests/8f46b4013f8e249b.xdr deleted file mode 100644 index ab8e7a4698..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/8f46b4013f8e249b.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/8f96b2243358519a.xdr b/test-lcm-current/InvokeHostFunctionTests/8f96b2243358519a.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/8f96b2243358519a.xdr rename to test-lcm-current/InvokeHostFunctionTests/8f96b2243358519a.xdr index 8ba16dfb69..461bec0cff 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/8f96b2243358519a.xdr and b/test-lcm-current/InvokeHostFunctionTests/8f96b2243358519a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/8f9963180cf54ace.xdr b/test-lcm-current/InvokeHostFunctionTests/8f9963180cf54ace.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/8f9963180cf54ace.xdr rename to test-lcm-current/InvokeHostFunctionTests/8f9963180cf54ace.xdr index bb317c94c0..e6f5ea192b 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/8f9963180cf54ace.xdr and b/test-lcm-current/InvokeHostFunctionTests/8f9963180cf54ace.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/8fa77a7691d9a43d.xdr b/test-lcm-current/InvokeHostFunctionTests/8fa77a7691d9a43d.xdr index c549b8cf4e..588820adee 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/8fa77a7691d9a43d.xdr and b/test-lcm-current/InvokeHostFunctionTests/8fa77a7691d9a43d.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/908acbd3aceb8316.xdr b/test-lcm-current/InvokeHostFunctionTests/908acbd3aceb8316.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/908acbd3aceb8316.xdr and b/test-lcm-current/InvokeHostFunctionTests/908acbd3aceb8316.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/90bf93d9cc8919fb.xdr b/test-lcm-current/InvokeHostFunctionTests/90bf93d9cc8919fb.xdr deleted file mode 100644 index 545a3cb800..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/90bf93d9cc8919fb.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/90d44cefcaf5f29b.xdr b/test-lcm-current/InvokeHostFunctionTests/90d44cefcaf5f29b.xdr index edaaf335bb..8ca94dda0f 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/90d44cefcaf5f29b.xdr and b/test-lcm-current/InvokeHostFunctionTests/90d44cefcaf5f29b.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/9209c586bd226b99.xdr b/test-lcm-current/InvokeHostFunctionTests/9209c586bd226b99.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/9209c586bd226b99.xdr and b/test-lcm-current/InvokeHostFunctionTests/9209c586bd226b99.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/920a1fad5ca8a29b.xdr b/test-lcm-current/InvokeHostFunctionTests/920a1fad5ca8a29b.xdr deleted file mode 100644 index 3f895100ee..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/920a1fad5ca8a29b.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/9245f43fc2fba8b0.xdr b/test-lcm-current/InvokeHostFunctionTests/9245f43fc2fba8b0.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/9245f43fc2fba8b0.xdr and b/test-lcm-current/InvokeHostFunctionTests/9245f43fc2fba8b0.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/924e5b97b225be05.xdr b/test-lcm-current/InvokeHostFunctionTests/924e5b97b225be05.xdr deleted file mode 100644 index 78be1b2795..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/924e5b97b225be05.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/92680c457fe83aa7.xdr b/test-lcm-current/InvokeHostFunctionTests/92680c457fe83aa7.xdr deleted file mode 100644 index d08deedbfb..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/92680c457fe83aa7.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/92b288c4d95b05f9.xdr b/test-lcm-current/InvokeHostFunctionTests/92b288c4d95b05f9.xdr index 062ea24530..37fbb49c58 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/92b288c4d95b05f9.xdr and b/test-lcm-current/InvokeHostFunctionTests/92b288c4d95b05f9.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/930b08e2d077bfdc.xdr b/test-lcm-current/InvokeHostFunctionTests/930b08e2d077bfdc.xdr index 7410135b8c..d949db22eb 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/930b08e2d077bfdc.xdr and b/test-lcm-current/InvokeHostFunctionTests/930b08e2d077bfdc.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/932641f2b5405789.xdr b/test-lcm-current/InvokeHostFunctionTests/932641f2b5405789.xdr index 5e378673fa..c40a56d9a5 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/932641f2b5405789.xdr and b/test-lcm-current/InvokeHostFunctionTests/932641f2b5405789.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/93481a30a4ea3f79.xdr b/test-lcm-current/InvokeHostFunctionTests/93481a30a4ea3f79.xdr index 09a1829327..d01874e60a 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/93481a30a4ea3f79.xdr and b/test-lcm-current/InvokeHostFunctionTests/93481a30a4ea3f79.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/93b030d05e31f59e.xdr b/test-lcm-current/InvokeHostFunctionTests/93b030d05e31f59e.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/93b030d05e31f59e.xdr rename to test-lcm-current/InvokeHostFunctionTests/93b030d05e31f59e.xdr index a523e1c802..021f395cd7 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/93b030d05e31f59e.xdr and b/test-lcm-current/InvokeHostFunctionTests/93b030d05e31f59e.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/93ba029750a86166.xdr b/test-lcm-current/InvokeHostFunctionTests/93ba029750a86166.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/93ba029750a86166.xdr and b/test-lcm-current/InvokeHostFunctionTests/93ba029750a86166.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/940e8bdc84f9af94.xdr b/test-lcm-current/InvokeHostFunctionTests/940e8bdc84f9af94.xdr index b83ca0ccd7..c7dbcc9253 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/940e8bdc84f9af94.xdr and b/test-lcm-current/InvokeHostFunctionTests/940e8bdc84f9af94.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/9435de885ff30026.xdr b/test-lcm-current/InvokeHostFunctionTests/9435de885ff30026.xdr index 97fb6983a2..ae61ea50fb 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/9435de885ff30026.xdr and b/test-lcm-current/InvokeHostFunctionTests/9435de885ff30026.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/94f5f9a57e087669.xdr b/test-lcm-current/InvokeHostFunctionTests/94f5f9a57e087669.xdr index 988c99d01d..6e832daf07 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/94f5f9a57e087669.xdr and b/test-lcm-current/InvokeHostFunctionTests/94f5f9a57e087669.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/955397e091e35fad.xdr b/test-lcm-current/InvokeHostFunctionTests/955397e091e35fad.xdr deleted file mode 100644 index 352675709b..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/955397e091e35fad.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/9592b7d06c5fd16c.xdr b/test-lcm-current/InvokeHostFunctionTests/9592b7d06c5fd16c.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/9592b7d06c5fd16c.xdr and b/test-lcm-current/InvokeHostFunctionTests/9592b7d06c5fd16c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/959828d2eba03d9c.xdr b/test-lcm-current/InvokeHostFunctionTests/959828d2eba03d9c.xdr deleted file mode 100644 index b3f8b82144..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/959828d2eba03d9c.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/95dfceb1b6e1c811.xdr b/test-lcm-current/InvokeHostFunctionTests/95dfceb1b6e1c811.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/95dfceb1b6e1c811.xdr and b/test-lcm-current/InvokeHostFunctionTests/95dfceb1b6e1c811.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/95ede71a6074dc1b.xdr b/test-lcm-current/InvokeHostFunctionTests/95ede71a6074dc1b.xdr index 42717fd143..d638e3783a 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/95ede71a6074dc1b.xdr and b/test-lcm-current/InvokeHostFunctionTests/95ede71a6074dc1b.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/964450cc2eb51081.xdr b/test-lcm-current/InvokeHostFunctionTests/964450cc2eb51081.xdr index 2ccf6cbdf4..ebb8f5d1d4 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/964450cc2eb51081.xdr and b/test-lcm-current/InvokeHostFunctionTests/964450cc2eb51081.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/96690328bd10efc5.xdr b/test-lcm-current/InvokeHostFunctionTests/96690328bd10efc5.xdr deleted file mode 100644 index 0123de872a..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/96690328bd10efc5.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/98958916fd28f843.xdr b/test-lcm-current/InvokeHostFunctionTests/98958916fd28f843.xdr index 3cf71070da..96509dc6ba 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/98958916fd28f843.xdr and b/test-lcm-current/InvokeHostFunctionTests/98958916fd28f843.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/98dd9afc9aec58e3.xdr b/test-lcm-current/InvokeHostFunctionTests/98dd9afc9aec58e3.xdr deleted file mode 100644 index 218637e18b..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/98dd9afc9aec58e3.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/99cfc2b1081eda32.xdr b/test-lcm-current/InvokeHostFunctionTests/99cfc2b1081eda32.xdr new file mode 100644 index 0000000000..ee27438202 Binary files /dev/null and b/test-lcm-current/InvokeHostFunctionTests/99cfc2b1081eda32.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/9a2c38c5272df06c.xdr b/test-lcm-current/InvokeHostFunctionTests/9a2c38c5272df06c.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/9a2c38c5272df06c.xdr and b/test-lcm-current/InvokeHostFunctionTests/9a2c38c5272df06c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/9a4d995b45b4db13.xdr b/test-lcm-current/InvokeHostFunctionTests/9a4d995b45b4db13.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/9a4d995b45b4db13.xdr and b/test-lcm-current/InvokeHostFunctionTests/9a4d995b45b4db13.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/9abda59d0cea408b.xdr b/test-lcm-current/InvokeHostFunctionTests/9abda59d0cea408b.xdr index 41eb1663fb..30337b6f68 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/9abda59d0cea408b.xdr and b/test-lcm-current/InvokeHostFunctionTests/9abda59d0cea408b.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/9b5ea22fe53632fe.xdr b/test-lcm-current/InvokeHostFunctionTests/9b5ea22fe53632fe.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/9b5ea22fe53632fe.xdr and b/test-lcm-current/InvokeHostFunctionTests/9b5ea22fe53632fe.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/9b7aa5eb73370090.xdr b/test-lcm-current/InvokeHostFunctionTests/9b7aa5eb73370090.xdr deleted file mode 100644 index d584301f50..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/9b7aa5eb73370090.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/9bd255e6ae916270.xdr b/test-lcm-current/InvokeHostFunctionTests/9bd255e6ae916270.xdr deleted file mode 100644 index 61f491abca..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/9bd255e6ae916270.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/9c169e4a17366ef4.xdr b/test-lcm-current/InvokeHostFunctionTests/9c169e4a17366ef4.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/9c169e4a17366ef4.xdr and b/test-lcm-current/InvokeHostFunctionTests/9c169e4a17366ef4.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/9c319f6ebbf74238.xdr b/test-lcm-current/InvokeHostFunctionTests/9c319f6ebbf74238.xdr index 9e40ae58e0..ff5e59acdb 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/9c319f6ebbf74238.xdr and b/test-lcm-current/InvokeHostFunctionTests/9c319f6ebbf74238.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/9cbd66b8c4018c16.xdr b/test-lcm-current/InvokeHostFunctionTests/9cbd66b8c4018c16.xdr index 40abd7fa8d..58c20144f7 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/9cbd66b8c4018c16.xdr and b/test-lcm-current/InvokeHostFunctionTests/9cbd66b8c4018c16.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/9ccccec1202f5b81.xdr b/test-lcm-current/InvokeHostFunctionTests/9ccccec1202f5b81.xdr index f3ebf1a104..12bec1e4fd 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/9ccccec1202f5b81.xdr and b/test-lcm-current/InvokeHostFunctionTests/9ccccec1202f5b81.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/9e44fefde737f8bc.xdr b/test-lcm-current/InvokeHostFunctionTests/9e44fefde737f8bc.xdr deleted file mode 100644 index 5cddbab223..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/9e44fefde737f8bc.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/9e7d59169e4ded64.xdr b/test-lcm-current/InvokeHostFunctionTests/9e7d59169e4ded64.xdr index 4a5c805f15..ce49314211 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/9e7d59169e4ded64.xdr and b/test-lcm-current/InvokeHostFunctionTests/9e7d59169e4ded64.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/9e81b4f36cfd3af7.xdr b/test-lcm-current/InvokeHostFunctionTests/9e81b4f36cfd3af7.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/9e81b4f36cfd3af7.xdr and b/test-lcm-current/InvokeHostFunctionTests/9e81b4f36cfd3af7.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/9f130c1b0c7b7a7a.xdr b/test-lcm-current/InvokeHostFunctionTests/9f130c1b0c7b7a7a.xdr index e94571a618..45bc4ad068 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/9f130c1b0c7b7a7a.xdr and b/test-lcm-current/InvokeHostFunctionTests/9f130c1b0c7b7a7a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/9f280040dbfe9ebd.xdr b/test-lcm-current/InvokeHostFunctionTests/9f280040dbfe9ebd.xdr index f603385ca9..cf91e31d1a 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/9f280040dbfe9ebd.xdr and b/test-lcm-current/InvokeHostFunctionTests/9f280040dbfe9ebd.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/9fa92df05d0615bf.xdr b/test-lcm-current/InvokeHostFunctionTests/9fa92df05d0615bf.xdr index 09819388aa..77c54fdb97 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/9fa92df05d0615bf.xdr and b/test-lcm-current/InvokeHostFunctionTests/9fa92df05d0615bf.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/a0119ab86c638bee.xdr b/test-lcm-current/InvokeHostFunctionTests/a0119ab86c638bee.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/a0119ab86c638bee.xdr and b/test-lcm-current/InvokeHostFunctionTests/a0119ab86c638bee.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/a0964aad16627449.xdr b/test-lcm-current/InvokeHostFunctionTests/a0964aad16627449.xdr deleted file mode 100644 index c36a4c2704..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/a0964aad16627449.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/a0b7e7243a96c9c6.xdr b/test-lcm-current/InvokeHostFunctionTests/a0b7e7243a96c9c6.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/a0b7e7243a96c9c6.xdr and b/test-lcm-current/InvokeHostFunctionTests/a0b7e7243a96c9c6.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/a0d59eaf3b79413c.xdr b/test-lcm-current/InvokeHostFunctionTests/a0d59eaf3b79413c.xdr index b6d9ae3f75..7bfe0809a0 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/a0d59eaf3b79413c.xdr and b/test-lcm-current/InvokeHostFunctionTests/a0d59eaf3b79413c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/a0fd94b0902a1c7f.xdr b/test-lcm-current/InvokeHostFunctionTests/a0fd94b0902a1c7f.xdr index 28f7c65b31..78506b91ac 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/a0fd94b0902a1c7f.xdr and b/test-lcm-current/InvokeHostFunctionTests/a0fd94b0902a1c7f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/a258cc5505846d79.xdr b/test-lcm-current/InvokeHostFunctionTests/a258cc5505846d79.xdr index 5a1e8c6199..8b6385a035 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/a258cc5505846d79.xdr and b/test-lcm-current/InvokeHostFunctionTests/a258cc5505846d79.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/a4f13a2fa6293428.xdr b/test-lcm-current/InvokeHostFunctionTests/a4f13a2fa6293428.xdr deleted file mode 100644 index 483cb100cd..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/a4f13a2fa6293428.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/a71e4d9203d52748.xdr b/test-lcm-current/InvokeHostFunctionTests/a71e4d9203d52748.xdr index d57305db74..af77a10a4b 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/a71e4d9203d52748.xdr and b/test-lcm-current/InvokeHostFunctionTests/a71e4d9203d52748.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/a72c947ed7b434d3.xdr b/test-lcm-current/InvokeHostFunctionTests/a72c947ed7b434d3.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/a72c947ed7b434d3.xdr and b/test-lcm-current/InvokeHostFunctionTests/a72c947ed7b434d3.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/a7a45d93c64cf3d9.xdr b/test-lcm-current/InvokeHostFunctionTests/a7a45d93c64cf3d9.xdr deleted file mode 100644 index e4c776e65e..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/a7a45d93c64cf3d9.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/a80621eee94baae6.xdr b/test-lcm-current/InvokeHostFunctionTests/a80621eee94baae6.xdr index 94cba44bf4..d6d4ec1a2a 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/a80621eee94baae6.xdr and b/test-lcm-current/InvokeHostFunctionTests/a80621eee94baae6.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/a8a9725a33441cb5.xdr b/test-lcm-current/InvokeHostFunctionTests/a8a9725a33441cb5.xdr index bba5a408c7..1184ee4317 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/a8a9725a33441cb5.xdr and b/test-lcm-current/InvokeHostFunctionTests/a8a9725a33441cb5.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/a8d1cb44f470573f.xdr b/test-lcm-current/InvokeHostFunctionTests/a8d1cb44f470573f.xdr index dd1a4ffde2..b53e3c619c 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/a8d1cb44f470573f.xdr and b/test-lcm-current/InvokeHostFunctionTests/a8d1cb44f470573f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/a904442b4503e607.xdr b/test-lcm-current/InvokeHostFunctionTests/a904442b4503e607.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/a904442b4503e607.xdr and b/test-lcm-current/InvokeHostFunctionTests/a904442b4503e607.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/a94afbf4a15753e8.xdr b/test-lcm-current/InvokeHostFunctionTests/a94afbf4a15753e8.xdr index 79b84f14f2..477b882f90 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/a94afbf4a15753e8.xdr and b/test-lcm-current/InvokeHostFunctionTests/a94afbf4a15753e8.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/a9af3a29cf25b4d2.xdr b/test-lcm-current/InvokeHostFunctionTests/a9af3a29cf25b4d2.xdr index 2f6b707e98..0b46f4dc0d 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/a9af3a29cf25b4d2.xdr and b/test-lcm-current/InvokeHostFunctionTests/a9af3a29cf25b4d2.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/aa167c6283a763db.xdr b/test-lcm-current/InvokeHostFunctionTests/aa167c6283a763db.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/aa167c6283a763db.xdr rename to test-lcm-current/InvokeHostFunctionTests/aa167c6283a763db.xdr index 2e08344736..fd4eab989d 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/aa167c6283a763db.xdr and b/test-lcm-current/InvokeHostFunctionTests/aa167c6283a763db.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/aa53f5c640a1c97e.xdr b/test-lcm-current/InvokeHostFunctionTests/aa53f5c640a1c97e.xdr index 0eb8d83681..66a544df2f 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/aa53f5c640a1c97e.xdr and b/test-lcm-current/InvokeHostFunctionTests/aa53f5c640a1c97e.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/aa722688a0fedfc0.xdr b/test-lcm-current/InvokeHostFunctionTests/aa722688a0fedfc0.xdr deleted file mode 100644 index ebb9c46e73..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/aa722688a0fedfc0.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/aae06d9411888821.xdr b/test-lcm-current/InvokeHostFunctionTests/aae06d9411888821.xdr deleted file mode 100644 index 8484420b61..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/aae06d9411888821.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ab3bce4773581342.xdr b/test-lcm-current/InvokeHostFunctionTests/ab3bce4773581342.xdr index e27b1090ec..337b38ff70 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ab3bce4773581342.xdr and b/test-lcm-current/InvokeHostFunctionTests/ab3bce4773581342.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ab898f0b7ce30529.xdr b/test-lcm-current/InvokeHostFunctionTests/ab898f0b7ce30529.xdr deleted file mode 100644 index 41d748366d..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/ab898f0b7ce30529.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/abe9daab6e04747a.xdr b/test-lcm-current/InvokeHostFunctionTests/abe9daab6e04747a.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/abe9daab6e04747a.xdr and b/test-lcm-current/InvokeHostFunctionTests/abe9daab6e04747a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ad00903073e6c1d2.xdr b/test-lcm-current/InvokeHostFunctionTests/ad00903073e6c1d2.xdr index 7772ae0dcb..78c2aeb7b1 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ad00903073e6c1d2.xdr and b/test-lcm-current/InvokeHostFunctionTests/ad00903073e6c1d2.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ad19485cea9fa38c.xdr b/test-lcm-current/InvokeHostFunctionTests/ad19485cea9fa38c.xdr index c305e38241..6a667183ad 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ad19485cea9fa38c.xdr and b/test-lcm-current/InvokeHostFunctionTests/ad19485cea9fa38c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ae601103b9e4498d.xdr b/test-lcm-current/InvokeHostFunctionTests/ae601103b9e4498d.xdr index 56f9033f82..335dcaec83 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ae601103b9e4498d.xdr and b/test-lcm-current/InvokeHostFunctionTests/ae601103b9e4498d.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/aec6a7cfd3c1af73.xdr b/test-lcm-current/InvokeHostFunctionTests/aec6a7cfd3c1af73.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/aec6a7cfd3c1af73.xdr and b/test-lcm-current/InvokeHostFunctionTests/aec6a7cfd3c1af73.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/aedd27a8939d199b.xdr b/test-lcm-current/InvokeHostFunctionTests/aedd27a8939d199b.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/aedd27a8939d199b.xdr rename to test-lcm-current/InvokeHostFunctionTests/aedd27a8939d199b.xdr index 2af3053e72..1b3eb794a6 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/aedd27a8939d199b.xdr and b/test-lcm-current/InvokeHostFunctionTests/aedd27a8939d199b.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/aef8c4cf49c5cce1.xdr b/test-lcm-current/InvokeHostFunctionTests/aef8c4cf49c5cce1.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/aef8c4cf49c5cce1.xdr and b/test-lcm-current/InvokeHostFunctionTests/aef8c4cf49c5cce1.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/af54a98dbdd88b52.xdr b/test-lcm-current/InvokeHostFunctionTests/af54a98dbdd88b52.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/af54a98dbdd88b52.xdr and b/test-lcm-current/InvokeHostFunctionTests/af54a98dbdd88b52.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/afa256621921b22e.xdr b/test-lcm-current/InvokeHostFunctionTests/afa256621921b22e.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/afa256621921b22e.xdr and b/test-lcm-current/InvokeHostFunctionTests/afa256621921b22e.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/afe35bda9ebb3f2c.xdr b/test-lcm-current/InvokeHostFunctionTests/afe35bda9ebb3f2c.xdr index 4d7dba124e..2ab26b6a7d 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/afe35bda9ebb3f2c.xdr and b/test-lcm-current/InvokeHostFunctionTests/afe35bda9ebb3f2c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b045bf491859a6b8.xdr b/test-lcm-current/InvokeHostFunctionTests/b045bf491859a6b8.xdr index f5a04545d9..8b8bd71c8b 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/b045bf491859a6b8.xdr and b/test-lcm-current/InvokeHostFunctionTests/b045bf491859a6b8.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b064c60719fa9bec.xdr b/test-lcm-current/InvokeHostFunctionTests/b064c60719fa9bec.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/b064c60719fa9bec.xdr and b/test-lcm-current/InvokeHostFunctionTests/b064c60719fa9bec.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b07277fd54b0b7bc.xdr b/test-lcm-current/InvokeHostFunctionTests/b07277fd54b0b7bc.xdr deleted file mode 100644 index e2ef8c62da..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/b07277fd54b0b7bc.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b10cae19c938ae9a.xdr b/test-lcm-current/InvokeHostFunctionTests/b10cae19c938ae9a.xdr deleted file mode 100644 index 47c60bac5c..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/b10cae19c938ae9a.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b136f91677750cd4.xdr b/test-lcm-current/InvokeHostFunctionTests/b136f91677750cd4.xdr index 5dcd076d11..4c2336b222 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/b136f91677750cd4.xdr and b/test-lcm-current/InvokeHostFunctionTests/b136f91677750cd4.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b149a7eb981b5ed6.xdr b/test-lcm-current/InvokeHostFunctionTests/b149a7eb981b5ed6.xdr index 3d98f19664..680db2e9dc 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/b149a7eb981b5ed6.xdr and b/test-lcm-current/InvokeHostFunctionTests/b149a7eb981b5ed6.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b169a02913bbd1c1.xdr b/test-lcm-current/InvokeHostFunctionTests/b169a02913bbd1c1.xdr deleted file mode 100644 index cb54168f42..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/b169a02913bbd1c1.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b19f5bf32940c80d.xdr b/test-lcm-current/InvokeHostFunctionTests/b19f5bf32940c80d.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/b19f5bf32940c80d.xdr rename to test-lcm-current/InvokeHostFunctionTests/b19f5bf32940c80d.xdr index d34e0da390..7c87df3d9a 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b19f5bf32940c80d.xdr and b/test-lcm-current/InvokeHostFunctionTests/b19f5bf32940c80d.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b1d5a1bda5b51e5b.xdr b/test-lcm-current/InvokeHostFunctionTests/b1d5a1bda5b51e5b.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/b1d5a1bda5b51e5b.xdr and b/test-lcm-current/InvokeHostFunctionTests/b1d5a1bda5b51e5b.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b20d08c08e32c884.xdr b/test-lcm-current/InvokeHostFunctionTests/b20d08c08e32c884.xdr similarity index 96% rename from test-lcm-next/InvokeHostFunctionTests/b20d08c08e32c884.xdr rename to test-lcm-current/InvokeHostFunctionTests/b20d08c08e32c884.xdr index a867c3e18f..81a7339a91 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b20d08c08e32c884.xdr and b/test-lcm-current/InvokeHostFunctionTests/b20d08c08e32c884.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b2504084ae27cf3f.xdr b/test-lcm-current/InvokeHostFunctionTests/b2504084ae27cf3f.xdr deleted file mode 100644 index 2b5584a2b8..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/b2504084ae27cf3f.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b295e5d7cd1ec038.xdr b/test-lcm-current/InvokeHostFunctionTests/b295e5d7cd1ec038.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/b295e5d7cd1ec038.xdr rename to test-lcm-current/InvokeHostFunctionTests/b295e5d7cd1ec038.xdr index 6695f06df5..95e8a64b7e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b295e5d7cd1ec038.xdr and b/test-lcm-current/InvokeHostFunctionTests/b295e5d7cd1ec038.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b3082e3bcd3a078c.xdr b/test-lcm-current/InvokeHostFunctionTests/b3082e3bcd3a078c.xdr index 8e459a1382..10a7ddd52f 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/b3082e3bcd3a078c.xdr and b/test-lcm-current/InvokeHostFunctionTests/b3082e3bcd3a078c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b3101bb9f07292f5.xdr b/test-lcm-current/InvokeHostFunctionTests/b3101bb9f07292f5.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/b3101bb9f07292f5.xdr and b/test-lcm-current/InvokeHostFunctionTests/b3101bb9f07292f5.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b3437be97f124777.xdr b/test-lcm-current/InvokeHostFunctionTests/b3437be97f124777.xdr index eaa1f8ef0e..35b6fbd3a1 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/b3437be97f124777.xdr and b/test-lcm-current/InvokeHostFunctionTests/b3437be97f124777.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b34f3ecaf4fdb062.xdr b/test-lcm-current/InvokeHostFunctionTests/b34f3ecaf4fdb062.xdr index 295cb7d02f..5a28b5f88f 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/b34f3ecaf4fdb062.xdr and b/test-lcm-current/InvokeHostFunctionTests/b34f3ecaf4fdb062.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b3f7fce5e8492f2e.xdr b/test-lcm-current/InvokeHostFunctionTests/b3f7fce5e8492f2e.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/b3f7fce5e8492f2e.xdr and b/test-lcm-current/InvokeHostFunctionTests/b3f7fce5e8492f2e.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b4148adbbba04047.xdr b/test-lcm-current/InvokeHostFunctionTests/b4148adbbba04047.xdr index 90ee8fc603..5f67855038 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/b4148adbbba04047.xdr and b/test-lcm-current/InvokeHostFunctionTests/b4148adbbba04047.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b416ed58e16fa07d.xdr b/test-lcm-current/InvokeHostFunctionTests/b416ed58e16fa07d.xdr similarity index 88% rename from test-lcm-next/InvokeHostFunctionTests/b416ed58e16fa07d.xdr rename to test-lcm-current/InvokeHostFunctionTests/b416ed58e16fa07d.xdr index e0e155302b..f67fb7935b 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b416ed58e16fa07d.xdr and b/test-lcm-current/InvokeHostFunctionTests/b416ed58e16fa07d.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b457c6cb2cf0da70.xdr b/test-lcm-current/InvokeHostFunctionTests/b457c6cb2cf0da70.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/b457c6cb2cf0da70.xdr rename to test-lcm-current/InvokeHostFunctionTests/b457c6cb2cf0da70.xdr index b64cf60c0a..11a7cf31ba 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b457c6cb2cf0da70.xdr and b/test-lcm-current/InvokeHostFunctionTests/b457c6cb2cf0da70.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b5a503183a69e95f.xdr b/test-lcm-current/InvokeHostFunctionTests/b5a503183a69e95f.xdr index 5f5b6cd555..5410f7e081 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/b5a503183a69e95f.xdr and b/test-lcm-current/InvokeHostFunctionTests/b5a503183a69e95f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b5db087139748e93.xdr b/test-lcm-current/InvokeHostFunctionTests/b5db087139748e93.xdr new file mode 100644 index 0000000000..ccd802b9d7 Binary files /dev/null and b/test-lcm-current/InvokeHostFunctionTests/b5db087139748e93.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b5e418a8a8cf65b9.xdr b/test-lcm-current/InvokeHostFunctionTests/b5e418a8a8cf65b9.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/b5e418a8a8cf65b9.xdr and b/test-lcm-current/InvokeHostFunctionTests/b5e418a8a8cf65b9.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b5fa55495e17de95.xdr b/test-lcm-current/InvokeHostFunctionTests/b5fa55495e17de95.xdr deleted file mode 100644 index 32b8ce5181..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/b5fa55495e17de95.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b652542975ff5560.xdr b/test-lcm-current/InvokeHostFunctionTests/b652542975ff5560.xdr index 2c6d802557..f77c97c67d 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/b652542975ff5560.xdr and b/test-lcm-current/InvokeHostFunctionTests/b652542975ff5560.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b6ce7aade1aed1e3.xdr b/test-lcm-current/InvokeHostFunctionTests/b6ce7aade1aed1e3.xdr deleted file mode 100644 index 4632a5568f..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/b6ce7aade1aed1e3.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b71e067496723cb3.xdr b/test-lcm-current/InvokeHostFunctionTests/b71e067496723cb3.xdr deleted file mode 100644 index e3492474a1..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/b71e067496723cb3.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b74618989cc0605c.xdr b/test-lcm-current/InvokeHostFunctionTests/b74618989cc0605c.xdr deleted file mode 100644 index b9f8966e84..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/b74618989cc0605c.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b7b912f58baee8ea.xdr b/test-lcm-current/InvokeHostFunctionTests/b7b912f58baee8ea.xdr deleted file mode 100644 index 882ba27b23..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/b7b912f58baee8ea.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b7db472d275c4797.xdr b/test-lcm-current/InvokeHostFunctionTests/b7db472d275c4797.xdr index 3f060af4c8..93b4898c8f 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/b7db472d275c4797.xdr and b/test-lcm-current/InvokeHostFunctionTests/b7db472d275c4797.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b808b59ac14049b2.xdr b/test-lcm-current/InvokeHostFunctionTests/b808b59ac14049b2.xdr deleted file mode 100644 index dd9481166c..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/b808b59ac14049b2.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b9862c0b86a145aa.xdr b/test-lcm-current/InvokeHostFunctionTests/b9862c0b86a145aa.xdr index 21be9b0777..d24f40bc23 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/b9862c0b86a145aa.xdr and b/test-lcm-current/InvokeHostFunctionTests/b9862c0b86a145aa.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b9a60ebb460b7c41.xdr b/test-lcm-current/InvokeHostFunctionTests/b9a60ebb460b7c41.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/b9a60ebb460b7c41.xdr rename to test-lcm-current/InvokeHostFunctionTests/b9a60ebb460b7c41.xdr index 358c775628..ee6f1ba518 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b9a60ebb460b7c41.xdr and b/test-lcm-current/InvokeHostFunctionTests/b9a60ebb460b7c41.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b9bdda6eada575ea.xdr b/test-lcm-current/InvokeHostFunctionTests/b9bdda6eada575ea.xdr index 9decc263f1..b4ae17a4a4 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/b9bdda6eada575ea.xdr and b/test-lcm-current/InvokeHostFunctionTests/b9bdda6eada575ea.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ba8824d29063376f.xdr b/test-lcm-current/InvokeHostFunctionTests/ba8824d29063376f.xdr index 7efce4bb99..657af20eef 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ba8824d29063376f.xdr and b/test-lcm-current/InvokeHostFunctionTests/ba8824d29063376f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ba9e85782489d4b3.xdr b/test-lcm-current/InvokeHostFunctionTests/ba9e85782489d4b3.xdr index b2bbf14540..e687f241d8 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ba9e85782489d4b3.xdr and b/test-lcm-current/InvokeHostFunctionTests/ba9e85782489d4b3.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/baa71b7a006a3951.xdr b/test-lcm-current/InvokeHostFunctionTests/baa71b7a006a3951.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/baa71b7a006a3951.xdr and b/test-lcm-current/InvokeHostFunctionTests/baa71b7a006a3951.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/bb10b7a54991da41.xdr b/test-lcm-current/InvokeHostFunctionTests/bb10b7a54991da41.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/bb10b7a54991da41.xdr and b/test-lcm-current/InvokeHostFunctionTests/bb10b7a54991da41.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/bb90c142fc6d2475.xdr b/test-lcm-current/InvokeHostFunctionTests/bb90c142fc6d2475.xdr similarity index 96% rename from test-lcm-next/InvokeHostFunctionTests/bb90c142fc6d2475.xdr rename to test-lcm-current/InvokeHostFunctionTests/bb90c142fc6d2475.xdr index 7d9cc9a8a4..29bdec98f7 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/bb90c142fc6d2475.xdr and b/test-lcm-current/InvokeHostFunctionTests/bb90c142fc6d2475.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/bc4e53b6b14ed910.xdr b/test-lcm-current/InvokeHostFunctionTests/bc4e53b6b14ed910.xdr new file mode 100644 index 0000000000..d1c314be73 Binary files /dev/null and b/test-lcm-current/InvokeHostFunctionTests/bc4e53b6b14ed910.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/bc6d1b280111560a.xdr b/test-lcm-current/InvokeHostFunctionTests/bc6d1b280111560a.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/bc6d1b280111560a.xdr rename to test-lcm-current/InvokeHostFunctionTests/bc6d1b280111560a.xdr index 70bd46ebbe..725f7820ec 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/bc6d1b280111560a.xdr and b/test-lcm-current/InvokeHostFunctionTests/bc6d1b280111560a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/bca8245505310e26.xdr b/test-lcm-current/InvokeHostFunctionTests/bca8245505310e26.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/bca8245505310e26.xdr rename to test-lcm-current/InvokeHostFunctionTests/bca8245505310e26.xdr index a874ce7709..a17ad103ba 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/bca8245505310e26.xdr and b/test-lcm-current/InvokeHostFunctionTests/bca8245505310e26.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/bd7ec9becd2cf279.xdr b/test-lcm-current/InvokeHostFunctionTests/bd7ec9becd2cf279.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/bd7ec9becd2cf279.xdr and b/test-lcm-current/InvokeHostFunctionTests/bd7ec9becd2cf279.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/bdf21d276e44df51.xdr b/test-lcm-current/InvokeHostFunctionTests/bdf21d276e44df51.xdr index cbe943c803..4b294638f4 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/bdf21d276e44df51.xdr and b/test-lcm-current/InvokeHostFunctionTests/bdf21d276e44df51.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/bdfcd5f448d7a9cd.xdr b/test-lcm-current/InvokeHostFunctionTests/bdfcd5f448d7a9cd.xdr index 6ba6797c0d..d4df6d17df 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/bdfcd5f448d7a9cd.xdr and b/test-lcm-current/InvokeHostFunctionTests/bdfcd5f448d7a9cd.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/be52cd7f42814b0a.xdr b/test-lcm-current/InvokeHostFunctionTests/be52cd7f42814b0a.xdr index 89b1734291..2c15937981 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/be52cd7f42814b0a.xdr and b/test-lcm-current/InvokeHostFunctionTests/be52cd7f42814b0a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/be6ebb5f038aa456.xdr b/test-lcm-current/InvokeHostFunctionTests/be6ebb5f038aa456.xdr index fde028d715..81e86e9fb5 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/be6ebb5f038aa456.xdr and b/test-lcm-current/InvokeHostFunctionTests/be6ebb5f038aa456.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/be8c8e64b30e9fc1.xdr b/test-lcm-current/InvokeHostFunctionTests/be8c8e64b30e9fc1.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/be8c8e64b30e9fc1.xdr rename to test-lcm-current/InvokeHostFunctionTests/be8c8e64b30e9fc1.xdr index 15f55db4ee..ac5d6ceefe 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/be8c8e64b30e9fc1.xdr and b/test-lcm-current/InvokeHostFunctionTests/be8c8e64b30e9fc1.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/be9fcc614f398cf3.xdr b/test-lcm-current/InvokeHostFunctionTests/be9fcc614f398cf3.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/be9fcc614f398cf3.xdr and b/test-lcm-current/InvokeHostFunctionTests/be9fcc614f398cf3.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/bec5319840022194.xdr b/test-lcm-current/InvokeHostFunctionTests/bec5319840022194.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/bec5319840022194.xdr and b/test-lcm-current/InvokeHostFunctionTests/bec5319840022194.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/bec915835775f88a.xdr b/test-lcm-current/InvokeHostFunctionTests/bec915835775f88a.xdr index 4145a48f77..a474dba7cd 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/bec915835775f88a.xdr and b/test-lcm-current/InvokeHostFunctionTests/bec915835775f88a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/beed566485392053.xdr b/test-lcm-current/InvokeHostFunctionTests/beed566485392053.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/beed566485392053.xdr and b/test-lcm-current/InvokeHostFunctionTests/beed566485392053.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/beee405585556b28.xdr b/test-lcm-current/InvokeHostFunctionTests/beee405585556b28.xdr index b0a5463aa6..03faf5b10f 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/beee405585556b28.xdr and b/test-lcm-current/InvokeHostFunctionTests/beee405585556b28.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/bf27f88df8fb68c5.xdr b/test-lcm-current/InvokeHostFunctionTests/bf27f88df8fb68c5.xdr index 58c29de9c0..7172f7b757 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/bf27f88df8fb68c5.xdr and b/test-lcm-current/InvokeHostFunctionTests/bf27f88df8fb68c5.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/bf6b1019d0b7569d.xdr b/test-lcm-current/InvokeHostFunctionTests/bf6b1019d0b7569d.xdr deleted file mode 100644 index cc2bdecc1b..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/bf6b1019d0b7569d.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/bf98f153a8789f78.xdr b/test-lcm-current/InvokeHostFunctionTests/bf98f153a8789f78.xdr deleted file mode 100644 index d21d5d583d..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/bf98f153a8789f78.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/bfa396d5747102ff.xdr b/test-lcm-current/InvokeHostFunctionTests/bfa396d5747102ff.xdr index 66a7bd554f..8b096d9b2b 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/bfa396d5747102ff.xdr and b/test-lcm-current/InvokeHostFunctionTests/bfa396d5747102ff.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c03bbceaf1428236.xdr b/test-lcm-current/InvokeHostFunctionTests/c03bbceaf1428236.xdr index 1cd45540bd..9f65679afa 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c03bbceaf1428236.xdr and b/test-lcm-current/InvokeHostFunctionTests/c03bbceaf1428236.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c06470e7654bc2b1.xdr b/test-lcm-current/InvokeHostFunctionTests/c06470e7654bc2b1.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/c06470e7654bc2b1.xdr rename to test-lcm-current/InvokeHostFunctionTests/c06470e7654bc2b1.xdr index bdeb61a66c..87c1f4cedb 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c06470e7654bc2b1.xdr and b/test-lcm-current/InvokeHostFunctionTests/c06470e7654bc2b1.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c07830e846670e5d.xdr b/test-lcm-current/InvokeHostFunctionTests/c07830e846670e5d.xdr deleted file mode 100644 index 6929194ec0..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/c07830e846670e5d.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c0e8033d91a1c841.xdr b/test-lcm-current/InvokeHostFunctionTests/c0e8033d91a1c841.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/c0e8033d91a1c841.xdr rename to test-lcm-current/InvokeHostFunctionTests/c0e8033d91a1c841.xdr index ab3519c63b..4449d6bf0a 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c0e8033d91a1c841.xdr and b/test-lcm-current/InvokeHostFunctionTests/c0e8033d91a1c841.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c18c912409884beb.xdr b/test-lcm-current/InvokeHostFunctionTests/c18c912409884beb.xdr index 17f1be7433..ed4b7f1822 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c18c912409884beb.xdr and b/test-lcm-current/InvokeHostFunctionTests/c18c912409884beb.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c1b1663060d151c0.xdr b/test-lcm-current/InvokeHostFunctionTests/c1b1663060d151c0.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c1b1663060d151c0.xdr and b/test-lcm-current/InvokeHostFunctionTests/c1b1663060d151c0.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c1b4226571cd3ae1.xdr b/test-lcm-current/InvokeHostFunctionTests/c1b4226571cd3ae1.xdr index 6d2ab07529..88a77991a9 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c1b4226571cd3ae1.xdr and b/test-lcm-current/InvokeHostFunctionTests/c1b4226571cd3ae1.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c1c7ac4fa5ae147c.xdr b/test-lcm-current/InvokeHostFunctionTests/c1c7ac4fa5ae147c.xdr index 26a5569972..53239a4ced 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c1c7ac4fa5ae147c.xdr and b/test-lcm-current/InvokeHostFunctionTests/c1c7ac4fa5ae147c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c252cebb25294eab.xdr b/test-lcm-current/InvokeHostFunctionTests/c252cebb25294eab.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c252cebb25294eab.xdr and b/test-lcm-current/InvokeHostFunctionTests/c252cebb25294eab.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c2ac55826ca7e6de.xdr b/test-lcm-current/InvokeHostFunctionTests/c2ac55826ca7e6de.xdr index 759d43a01d..4bf69cef70 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c2ac55826ca7e6de.xdr and b/test-lcm-current/InvokeHostFunctionTests/c2ac55826ca7e6de.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c2c932cf464209f1.xdr b/test-lcm-current/InvokeHostFunctionTests/c2c932cf464209f1.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c2c932cf464209f1.xdr and b/test-lcm-current/InvokeHostFunctionTests/c2c932cf464209f1.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c3962c4a93291d74.xdr b/test-lcm-current/InvokeHostFunctionTests/c3962c4a93291d74.xdr index 79e7a34c84..285fde84c9 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c3962c4a93291d74.xdr and b/test-lcm-current/InvokeHostFunctionTests/c3962c4a93291d74.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c3bb0eae31d31633.xdr b/test-lcm-current/InvokeHostFunctionTests/c3bb0eae31d31633.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c3bb0eae31d31633.xdr and b/test-lcm-current/InvokeHostFunctionTests/c3bb0eae31d31633.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c443a7bba49e0e10.xdr b/test-lcm-current/InvokeHostFunctionTests/c443a7bba49e0e10.xdr deleted file mode 100644 index 9cf4ceb922..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/c443a7bba49e0e10.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c455542f23c8635a.xdr b/test-lcm-current/InvokeHostFunctionTests/c455542f23c8635a.xdr deleted file mode 100644 index b42efcbce8..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/c455542f23c8635a.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c598120b02e657a7.xdr b/test-lcm-current/InvokeHostFunctionTests/c598120b02e657a7.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/c598120b02e657a7.xdr rename to test-lcm-current/InvokeHostFunctionTests/c598120b02e657a7.xdr index 4952aacecc..3bdfa0e0b0 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c598120b02e657a7.xdr and b/test-lcm-current/InvokeHostFunctionTests/c598120b02e657a7.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c5d57c89c419e4af.xdr b/test-lcm-current/InvokeHostFunctionTests/c5d57c89c419e4af.xdr index 2731a7bf45..f15d4e71f1 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c5d57c89c419e4af.xdr and b/test-lcm-current/InvokeHostFunctionTests/c5d57c89c419e4af.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c5f89e8c3c843590.xdr b/test-lcm-current/InvokeHostFunctionTests/c5f89e8c3c843590.xdr index fd44c272e1..810a30163e 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c5f89e8c3c843590.xdr and b/test-lcm-current/InvokeHostFunctionTests/c5f89e8c3c843590.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c645124e1d97c334.xdr b/test-lcm-current/InvokeHostFunctionTests/c645124e1d97c334.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/c645124e1d97c334.xdr rename to test-lcm-current/InvokeHostFunctionTests/c645124e1d97c334.xdr index 72ad7bb9b8..ceed51a54e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c645124e1d97c334.xdr and b/test-lcm-current/InvokeHostFunctionTests/c645124e1d97c334.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c677964e9c2cb9f6.xdr b/test-lcm-current/InvokeHostFunctionTests/c677964e9c2cb9f6.xdr deleted file mode 100644 index a2a3b59fb8..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/c677964e9c2cb9f6.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c6aec74706bb6238.xdr b/test-lcm-current/InvokeHostFunctionTests/c6aec74706bb6238.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/c6aec74706bb6238.xdr rename to test-lcm-current/InvokeHostFunctionTests/c6aec74706bb6238.xdr index b663c557ba..1b36f3f8e4 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c6aec74706bb6238.xdr and b/test-lcm-current/InvokeHostFunctionTests/c6aec74706bb6238.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c6c3d9865a04db5b.xdr b/test-lcm-current/InvokeHostFunctionTests/c6c3d9865a04db5b.xdr index 02f39841f2..99b47985ee 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c6c3d9865a04db5b.xdr and b/test-lcm-current/InvokeHostFunctionTests/c6c3d9865a04db5b.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c80cfb603215a760.xdr b/test-lcm-current/InvokeHostFunctionTests/c80cfb603215a760.xdr deleted file mode 100644 index 7615f54dcd..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/c80cfb603215a760.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c866aa143d53bf2c.xdr b/test-lcm-current/InvokeHostFunctionTests/c866aa143d53bf2c.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/c866aa143d53bf2c.xdr rename to test-lcm-current/InvokeHostFunctionTests/c866aa143d53bf2c.xdr index 33525546b3..5d4777db5f 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c866aa143d53bf2c.xdr and b/test-lcm-current/InvokeHostFunctionTests/c866aa143d53bf2c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c89523486b59f106.xdr b/test-lcm-current/InvokeHostFunctionTests/c89523486b59f106.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c89523486b59f106.xdr and b/test-lcm-current/InvokeHostFunctionTests/c89523486b59f106.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c8b43ab94c4aada0.xdr b/test-lcm-current/InvokeHostFunctionTests/c8b43ab94c4aada0.xdr index 59d884f478..db6b2b93bb 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c8b43ab94c4aada0.xdr and b/test-lcm-current/InvokeHostFunctionTests/c8b43ab94c4aada0.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c8f28ce0094c5916.xdr b/test-lcm-current/InvokeHostFunctionTests/c8f28ce0094c5916.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c8f28ce0094c5916.xdr and b/test-lcm-current/InvokeHostFunctionTests/c8f28ce0094c5916.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c922fea348665a87.xdr b/test-lcm-current/InvokeHostFunctionTests/c922fea348665a87.xdr index f35a2f3e98..de73814121 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c922fea348665a87.xdr and b/test-lcm-current/InvokeHostFunctionTests/c922fea348665a87.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c9844b91db3ef0b0.xdr b/test-lcm-current/InvokeHostFunctionTests/c9844b91db3ef0b0.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c9844b91db3ef0b0.xdr and b/test-lcm-current/InvokeHostFunctionTests/c9844b91db3ef0b0.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c99364d18b82557b.xdr b/test-lcm-current/InvokeHostFunctionTests/c99364d18b82557b.xdr index 0265c06b9b..2777565835 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c99364d18b82557b.xdr and b/test-lcm-current/InvokeHostFunctionTests/c99364d18b82557b.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c99ea4a349fa4865.xdr b/test-lcm-current/InvokeHostFunctionTests/c99ea4a349fa4865.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c99ea4a349fa4865.xdr and b/test-lcm-current/InvokeHostFunctionTests/c99ea4a349fa4865.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c9a9eaa405e6134c.xdr b/test-lcm-current/InvokeHostFunctionTests/c9a9eaa405e6134c.xdr index 282daecfd9..4d8eaf7ea8 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c9a9eaa405e6134c.xdr and b/test-lcm-current/InvokeHostFunctionTests/c9a9eaa405e6134c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c9dbd32afe107afb.xdr b/test-lcm-current/InvokeHostFunctionTests/c9dbd32afe107afb.xdr index f06bdd533f..f3ecf0226b 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c9dbd32afe107afb.xdr and b/test-lcm-current/InvokeHostFunctionTests/c9dbd32afe107afb.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c9eca15bdeb9bf48.xdr b/test-lcm-current/InvokeHostFunctionTests/c9eca15bdeb9bf48.xdr index bac2bf48fd..870cfa2bc1 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c9eca15bdeb9bf48.xdr and b/test-lcm-current/InvokeHostFunctionTests/c9eca15bdeb9bf48.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ca0691e9261af616.xdr b/test-lcm-current/InvokeHostFunctionTests/ca0691e9261af616.xdr deleted file mode 100644 index 11a0a1c228..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/ca0691e9261af616.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ca44bb06db470a22.xdr b/test-lcm-current/InvokeHostFunctionTests/ca44bb06db470a22.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ca44bb06db470a22.xdr and b/test-lcm-current/InvokeHostFunctionTests/ca44bb06db470a22.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ca650e4c7b90fa84.xdr b/test-lcm-current/InvokeHostFunctionTests/ca650e4c7b90fa84.xdr deleted file mode 100644 index 61547fc2fb..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/ca650e4c7b90fa84.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ca81ee3779279e5f.xdr b/test-lcm-current/InvokeHostFunctionTests/ca81ee3779279e5f.xdr index a2c041a903..364f742e1f 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ca81ee3779279e5f.xdr and b/test-lcm-current/InvokeHostFunctionTests/ca81ee3779279e5f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ca96297c5d814422.xdr b/test-lcm-current/InvokeHostFunctionTests/ca96297c5d814422.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ca96297c5d814422.xdr and b/test-lcm-current/InvokeHostFunctionTests/ca96297c5d814422.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/cab764de9b6ee4b7.xdr b/test-lcm-current/InvokeHostFunctionTests/cab764de9b6ee4b7.xdr index 5639be37fd..70c4af38c8 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/cab764de9b6ee4b7.xdr and b/test-lcm-current/InvokeHostFunctionTests/cab764de9b6ee4b7.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/cb9097b6c1c38bdd.xdr b/test-lcm-current/InvokeHostFunctionTests/cb9097b6c1c38bdd.xdr index ceeaecca21..004adc80fa 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/cb9097b6c1c38bdd.xdr and b/test-lcm-current/InvokeHostFunctionTests/cb9097b6c1c38bdd.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/cc8e5617818c25e6.xdr b/test-lcm-current/InvokeHostFunctionTests/cc8e5617818c25e6.xdr deleted file mode 100644 index f87896314d..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/cc8e5617818c25e6.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/cc952a3d07337931.xdr b/test-lcm-current/InvokeHostFunctionTests/cc952a3d07337931.xdr index 71c3c6d087..cace316bd5 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/cc952a3d07337931.xdr and b/test-lcm-current/InvokeHostFunctionTests/cc952a3d07337931.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/cd577b89ed04d414.xdr b/test-lcm-current/InvokeHostFunctionTests/cd577b89ed04d414.xdr deleted file mode 100644 index 32af9e6c13..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/cd577b89ed04d414.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/cd9b67cc851ef13d.xdr b/test-lcm-current/InvokeHostFunctionTests/cd9b67cc851ef13d.xdr index e7153f5c23..059a09eaca 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/cd9b67cc851ef13d.xdr and b/test-lcm-current/InvokeHostFunctionTests/cd9b67cc851ef13d.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/cdc0fbbed34915f1.xdr b/test-lcm-current/InvokeHostFunctionTests/cdc0fbbed34915f1.xdr index 37bf5f6846..29230a83d8 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/cdc0fbbed34915f1.xdr and b/test-lcm-current/InvokeHostFunctionTests/cdc0fbbed34915f1.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ce5735da86b32673.xdr b/test-lcm-current/InvokeHostFunctionTests/ce5735da86b32673.xdr index bef602549b..41b2927087 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ce5735da86b32673.xdr and b/test-lcm-current/InvokeHostFunctionTests/ce5735da86b32673.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ce670ea1968c6dd3.xdr b/test-lcm-current/InvokeHostFunctionTests/ce670ea1968c6dd3.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ce670ea1968c6dd3.xdr and b/test-lcm-current/InvokeHostFunctionTests/ce670ea1968c6dd3.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/cebea90af92b39d2.xdr b/test-lcm-current/InvokeHostFunctionTests/cebea90af92b39d2.xdr index 58c5491bf7..2bdb99fda6 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/cebea90af92b39d2.xdr and b/test-lcm-current/InvokeHostFunctionTests/cebea90af92b39d2.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ced5e149f8263218.xdr b/test-lcm-current/InvokeHostFunctionTests/ced5e149f8263218.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ced5e149f8263218.xdr and b/test-lcm-current/InvokeHostFunctionTests/ced5e149f8263218.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/cf141d5e0e528a1f.xdr b/test-lcm-current/InvokeHostFunctionTests/cf141d5e0e528a1f.xdr similarity index 96% rename from test-lcm-next/InvokeHostFunctionTests/cf141d5e0e528a1f.xdr rename to test-lcm-current/InvokeHostFunctionTests/cf141d5e0e528a1f.xdr index 84b1c291c3..9f1a5d91ce 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/cf141d5e0e528a1f.xdr and b/test-lcm-current/InvokeHostFunctionTests/cf141d5e0e528a1f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/cf226151fb04c10f.xdr b/test-lcm-current/InvokeHostFunctionTests/cf226151fb04c10f.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/cf226151fb04c10f.xdr and b/test-lcm-current/InvokeHostFunctionTests/cf226151fb04c10f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/cf2d86dd85a2417a.xdr b/test-lcm-current/InvokeHostFunctionTests/cf2d86dd85a2417a.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/cf2d86dd85a2417a.xdr and b/test-lcm-current/InvokeHostFunctionTests/cf2d86dd85a2417a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/cf339a74cb38c15b.xdr b/test-lcm-current/InvokeHostFunctionTests/cf339a74cb38c15b.xdr index 041b814d8a..47c53190ee 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/cf339a74cb38c15b.xdr and b/test-lcm-current/InvokeHostFunctionTests/cf339a74cb38c15b.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/cf945e15fa87e693.xdr b/test-lcm-current/InvokeHostFunctionTests/cf945e15fa87e693.xdr deleted file mode 100644 index 04fda09245..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/cf945e15fa87e693.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d0994aa43a850a1a.xdr b/test-lcm-current/InvokeHostFunctionTests/d0994aa43a850a1a.xdr deleted file mode 100644 index 2b17913dcd..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/d0994aa43a850a1a.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d10f1da9f73be05f.xdr b/test-lcm-current/InvokeHostFunctionTests/d10f1da9f73be05f.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/d10f1da9f73be05f.xdr and b/test-lcm-current/InvokeHostFunctionTests/d10f1da9f73be05f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d1522d4667822bc2.xdr b/test-lcm-current/InvokeHostFunctionTests/d1522d4667822bc2.xdr index f13d7bc476..6f32f7a80b 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/d1522d4667822bc2.xdr and b/test-lcm-current/InvokeHostFunctionTests/d1522d4667822bc2.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d15d2c79a5a0afad.xdr b/test-lcm-current/InvokeHostFunctionTests/d15d2c79a5a0afad.xdr index 610d2a6750..051400661f 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/d15d2c79a5a0afad.xdr and b/test-lcm-current/InvokeHostFunctionTests/d15d2c79a5a0afad.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d192ab90b43eeb6a.xdr b/test-lcm-current/InvokeHostFunctionTests/d192ab90b43eeb6a.xdr index 2643196008..93a2646c84 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/d192ab90b43eeb6a.xdr and b/test-lcm-current/InvokeHostFunctionTests/d192ab90b43eeb6a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d1f5d115b26f2c2d.xdr b/test-lcm-current/InvokeHostFunctionTests/d1f5d115b26f2c2d.xdr deleted file mode 100644 index 682ff427f9..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/d1f5d115b26f2c2d.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d2284024d86a9f4a.xdr b/test-lcm-current/InvokeHostFunctionTests/d2284024d86a9f4a.xdr index 0c6c827a8c..3ce785ca02 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/d2284024d86a9f4a.xdr and b/test-lcm-current/InvokeHostFunctionTests/d2284024d86a9f4a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d2ef4dd8a3326b1f.xdr b/test-lcm-current/InvokeHostFunctionTests/d2ef4dd8a3326b1f.xdr deleted file mode 100644 index a846e085a3..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/d2ef4dd8a3326b1f.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d312c2e2a5a50ba8.xdr b/test-lcm-current/InvokeHostFunctionTests/d312c2e2a5a50ba8.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/d312c2e2a5a50ba8.xdr and b/test-lcm-current/InvokeHostFunctionTests/d312c2e2a5a50ba8.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d3e7a4929af1352e.xdr b/test-lcm-current/InvokeHostFunctionTests/d3e7a4929af1352e.xdr deleted file mode 100644 index 3d2a073efb..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/d3e7a4929af1352e.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d3ee1065ef42391b.xdr b/test-lcm-current/InvokeHostFunctionTests/d3ee1065ef42391b.xdr index c2dc8add4f..17d2fabba7 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/d3ee1065ef42391b.xdr and b/test-lcm-current/InvokeHostFunctionTests/d3ee1065ef42391b.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d3fa9dd1a7ce68e3.xdr b/test-lcm-current/InvokeHostFunctionTests/d3fa9dd1a7ce68e3.xdr index 468deeb29e..0b9ee20ca5 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/d3fa9dd1a7ce68e3.xdr and b/test-lcm-current/InvokeHostFunctionTests/d3fa9dd1a7ce68e3.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d46c533f474e3130.xdr b/test-lcm-current/InvokeHostFunctionTests/d46c533f474e3130.xdr deleted file mode 100644 index 460ca38784..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/d46c533f474e3130.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d481fd33556741b2.xdr b/test-lcm-current/InvokeHostFunctionTests/d481fd33556741b2.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/d481fd33556741b2.xdr and b/test-lcm-current/InvokeHostFunctionTests/d481fd33556741b2.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d4d73e492b2aa30e.xdr b/test-lcm-current/InvokeHostFunctionTests/d4d73e492b2aa30e.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/d4d73e492b2aa30e.xdr and b/test-lcm-current/InvokeHostFunctionTests/d4d73e492b2aa30e.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d4e4024caa6dbbc4.xdr b/test-lcm-current/InvokeHostFunctionTests/d4e4024caa6dbbc4.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/d4e4024caa6dbbc4.xdr and b/test-lcm-current/InvokeHostFunctionTests/d4e4024caa6dbbc4.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d51772a787c99bc1.xdr b/test-lcm-current/InvokeHostFunctionTests/d51772a787c99bc1.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/d51772a787c99bc1.xdr rename to test-lcm-current/InvokeHostFunctionTests/d51772a787c99bc1.xdr index 757a7b28e3..3101cc898c 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d51772a787c99bc1.xdr and b/test-lcm-current/InvokeHostFunctionTests/d51772a787c99bc1.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d580226d468cd36a.xdr b/test-lcm-current/InvokeHostFunctionTests/d580226d468cd36a.xdr index 693f5cfbfe..234e547d38 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/d580226d468cd36a.xdr and b/test-lcm-current/InvokeHostFunctionTests/d580226d468cd36a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d5d3d3dd818a7366.xdr b/test-lcm-current/InvokeHostFunctionTests/d5d3d3dd818a7366.xdr index e43f85d1a3..9ca36f9d86 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/d5d3d3dd818a7366.xdr and b/test-lcm-current/InvokeHostFunctionTests/d5d3d3dd818a7366.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d604f76431c95e5e.xdr b/test-lcm-current/InvokeHostFunctionTests/d604f76431c95e5e.xdr index 5b940cc9d1..a9a50caaba 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/d604f76431c95e5e.xdr and b/test-lcm-current/InvokeHostFunctionTests/d604f76431c95e5e.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d697bb21e32f6aef.xdr b/test-lcm-current/InvokeHostFunctionTests/d697bb21e32f6aef.xdr index c1506297c1..da0d664169 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/d697bb21e32f6aef.xdr and b/test-lcm-current/InvokeHostFunctionTests/d697bb21e32f6aef.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d6c263fd13775d0e.xdr b/test-lcm-current/InvokeHostFunctionTests/d6c263fd13775d0e.xdr deleted file mode 100644 index fc64820b24..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/d6c263fd13775d0e.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d7c375608e942b41.xdr b/test-lcm-current/InvokeHostFunctionTests/d7c375608e942b41.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/d7c375608e942b41.xdr rename to test-lcm-current/InvokeHostFunctionTests/d7c375608e942b41.xdr index 62f738f49e..132d2941b6 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d7c375608e942b41.xdr and b/test-lcm-current/InvokeHostFunctionTests/d7c375608e942b41.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d7e07d73417f717c.xdr b/test-lcm-current/InvokeHostFunctionTests/d7e07d73417f717c.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/d7e07d73417f717c.xdr rename to test-lcm-current/InvokeHostFunctionTests/d7e07d73417f717c.xdr index 0efc0c2291..8abf3bb123 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d7e07d73417f717c.xdr and b/test-lcm-current/InvokeHostFunctionTests/d7e07d73417f717c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d7ea63b86adedc73.xdr b/test-lcm-current/InvokeHostFunctionTests/d7ea63b86adedc73.xdr index 57aa81cb0e..ffb1f5897f 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/d7ea63b86adedc73.xdr and b/test-lcm-current/InvokeHostFunctionTests/d7ea63b86adedc73.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d85c6ee668e4f7cd.xdr b/test-lcm-current/InvokeHostFunctionTests/d85c6ee668e4f7cd.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/d85c6ee668e4f7cd.xdr rename to test-lcm-current/InvokeHostFunctionTests/d85c6ee668e4f7cd.xdr index 7a655dda93..738ea631d3 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d85c6ee668e4f7cd.xdr and b/test-lcm-current/InvokeHostFunctionTests/d85c6ee668e4f7cd.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d888d3403368dc50.xdr b/test-lcm-current/InvokeHostFunctionTests/d888d3403368dc50.xdr deleted file mode 100644 index 963f4ec103..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/d888d3403368dc50.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d8cb2c3e8c67a529.xdr b/test-lcm-current/InvokeHostFunctionTests/d8cb2c3e8c67a529.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/d8cb2c3e8c67a529.xdr and b/test-lcm-current/InvokeHostFunctionTests/d8cb2c3e8c67a529.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d8f18264015ca76d.xdr b/test-lcm-current/InvokeHostFunctionTests/d8f18264015ca76d.xdr deleted file mode 100644 index 3bd1a9ebba..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/d8f18264015ca76d.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d913ab5d872a03f8.xdr b/test-lcm-current/InvokeHostFunctionTests/d913ab5d872a03f8.xdr deleted file mode 100644 index f0d7750b33..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/d913ab5d872a03f8.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/d927cb7228c4823f.xdr b/test-lcm-current/InvokeHostFunctionTests/d927cb7228c4823f.xdr index ccee5ea3f0..cec0aafc8e 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/d927cb7228c4823f.xdr and b/test-lcm-current/InvokeHostFunctionTests/d927cb7228c4823f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/da22a08dbb5b6591.xdr b/test-lcm-current/InvokeHostFunctionTests/da22a08dbb5b6591.xdr index da818555fc..a9567108db 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/da22a08dbb5b6591.xdr and b/test-lcm-current/InvokeHostFunctionTests/da22a08dbb5b6591.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/da3e07eb8d9592dd.xdr b/test-lcm-current/InvokeHostFunctionTests/da3e07eb8d9592dd.xdr deleted file mode 100644 index 50210d7111..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/da3e07eb8d9592dd.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/da9288450114401d.xdr b/test-lcm-current/InvokeHostFunctionTests/da9288450114401d.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/da9288450114401d.xdr and b/test-lcm-current/InvokeHostFunctionTests/da9288450114401d.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/dad5f5e846b5ed75.xdr b/test-lcm-current/InvokeHostFunctionTests/dad5f5e846b5ed75.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/dad5f5e846b5ed75.xdr rename to test-lcm-current/InvokeHostFunctionTests/dad5f5e846b5ed75.xdr index 752411f478..1e98104772 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/dad5f5e846b5ed75.xdr and b/test-lcm-current/InvokeHostFunctionTests/dad5f5e846b5ed75.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/db5fe148a3049b78.xdr b/test-lcm-current/InvokeHostFunctionTests/db5fe148a3049b78.xdr deleted file mode 100644 index 4e4c578971..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/db5fe148a3049b78.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/dbade792400bbd36.xdr b/test-lcm-current/InvokeHostFunctionTests/dbade792400bbd36.xdr index cb00052c57..2a11dd2550 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/dbade792400bbd36.xdr and b/test-lcm-current/InvokeHostFunctionTests/dbade792400bbd36.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/dbe020e6910c1bb8.xdr b/test-lcm-current/InvokeHostFunctionTests/dbe020e6910c1bb8.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/dbe020e6910c1bb8.xdr and b/test-lcm-current/InvokeHostFunctionTests/dbe020e6910c1bb8.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/dc8cff5869997641.xdr b/test-lcm-current/InvokeHostFunctionTests/dc8cff5869997641.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/dc8cff5869997641.xdr and b/test-lcm-current/InvokeHostFunctionTests/dc8cff5869997641.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/dcc73c9629f5a427.xdr b/test-lcm-current/InvokeHostFunctionTests/dcc73c9629f5a427.xdr index a968bfd757..a79c852e77 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/dcc73c9629f5a427.xdr and b/test-lcm-current/InvokeHostFunctionTests/dcc73c9629f5a427.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/dce0c7e1d6084e19.xdr b/test-lcm-current/InvokeHostFunctionTests/dce0c7e1d6084e19.xdr deleted file mode 100644 index 368c922824..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/dce0c7e1d6084e19.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/dd4c4f107f80004e.xdr b/test-lcm-current/InvokeHostFunctionTests/dd4c4f107f80004e.xdr deleted file mode 100644 index 9773573850..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/dd4c4f107f80004e.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/deaef712a256815b.xdr b/test-lcm-current/InvokeHostFunctionTests/deaef712a256815b.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/deaef712a256815b.xdr and b/test-lcm-current/InvokeHostFunctionTests/deaef712a256815b.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/debccecc0064889e.xdr b/test-lcm-current/InvokeHostFunctionTests/debccecc0064889e.xdr index bd61465819..e184563070 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/debccecc0064889e.xdr and b/test-lcm-current/InvokeHostFunctionTests/debccecc0064889e.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/df5e46d7a306de43.xdr b/test-lcm-current/InvokeHostFunctionTests/df5e46d7a306de43.xdr deleted file mode 100644 index 99ab585cd4..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/df5e46d7a306de43.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/df7bbe01e8ddcfb1.xdr b/test-lcm-current/InvokeHostFunctionTests/df7bbe01e8ddcfb1.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/df7bbe01e8ddcfb1.xdr rename to test-lcm-current/InvokeHostFunctionTests/df7bbe01e8ddcfb1.xdr index 03eabd4e2d..41f8d93706 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/df7bbe01e8ddcfb1.xdr and b/test-lcm-current/InvokeHostFunctionTests/df7bbe01e8ddcfb1.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/df8ad69b2e875c3e.xdr b/test-lcm-current/InvokeHostFunctionTests/df8ad69b2e875c3e.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/df8ad69b2e875c3e.xdr and b/test-lcm-current/InvokeHostFunctionTests/df8ad69b2e875c3e.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/dfd8d97545a410c4.xdr b/test-lcm-current/InvokeHostFunctionTests/dfd8d97545a410c4.xdr index a87a67f796..261c162c0b 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/dfd8d97545a410c4.xdr and b/test-lcm-current/InvokeHostFunctionTests/dfd8d97545a410c4.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/dff72321aec96f70.xdr b/test-lcm-current/InvokeHostFunctionTests/dff72321aec96f70.xdr deleted file mode 100644 index 1cc03cd181..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/dff72321aec96f70.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e0180b51b72fe65a.xdr b/test-lcm-current/InvokeHostFunctionTests/e0180b51b72fe65a.xdr index cbe6313f53..c634c6650e 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e0180b51b72fe65a.xdr and b/test-lcm-current/InvokeHostFunctionTests/e0180b51b72fe65a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e095dd79e65ba973.xdr b/test-lcm-current/InvokeHostFunctionTests/e095dd79e65ba973.xdr index 68a4620fd5..df92e67974 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e095dd79e65ba973.xdr and b/test-lcm-current/InvokeHostFunctionTests/e095dd79e65ba973.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e0f09f1dcf955676.xdr b/test-lcm-current/InvokeHostFunctionTests/e0f09f1dcf955676.xdr deleted file mode 100644 index 172d5c2aa6..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/e0f09f1dcf955676.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e17007564165c691.xdr b/test-lcm-current/InvokeHostFunctionTests/e17007564165c691.xdr index fd5272d655..5fc093182d 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e17007564165c691.xdr and b/test-lcm-current/InvokeHostFunctionTests/e17007564165c691.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e1b3a1546fcd4160.xdr b/test-lcm-current/InvokeHostFunctionTests/e1b3a1546fcd4160.xdr index b358d2f000..ca60f3a006 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e1b3a1546fcd4160.xdr and b/test-lcm-current/InvokeHostFunctionTests/e1b3a1546fcd4160.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e1bbd873f50bb8a5.xdr b/test-lcm-current/InvokeHostFunctionTests/e1bbd873f50bb8a5.xdr index a77e47b8e9..cbf648997e 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e1bbd873f50bb8a5.xdr and b/test-lcm-current/InvokeHostFunctionTests/e1bbd873f50bb8a5.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e1c9fd2d21f89d7e.xdr b/test-lcm-current/InvokeHostFunctionTests/e1c9fd2d21f89d7e.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e1c9fd2d21f89d7e.xdr and b/test-lcm-current/InvokeHostFunctionTests/e1c9fd2d21f89d7e.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e1ecfe4848d7c257.xdr b/test-lcm-current/InvokeHostFunctionTests/e1ecfe4848d7c257.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e1ecfe4848d7c257.xdr and b/test-lcm-current/InvokeHostFunctionTests/e1ecfe4848d7c257.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e260a8f0f8749e3c.xdr b/test-lcm-current/InvokeHostFunctionTests/e260a8f0f8749e3c.xdr index 596cd88332..fed97c762b 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e260a8f0f8749e3c.xdr and b/test-lcm-current/InvokeHostFunctionTests/e260a8f0f8749e3c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e267116f1684f812.xdr b/test-lcm-current/InvokeHostFunctionTests/e267116f1684f812.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e267116f1684f812.xdr and b/test-lcm-current/InvokeHostFunctionTests/e267116f1684f812.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e26ad1849453e9f9.xdr b/test-lcm-current/InvokeHostFunctionTests/e26ad1849453e9f9.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e26ad1849453e9f9.xdr and b/test-lcm-current/InvokeHostFunctionTests/e26ad1849453e9f9.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e2c37e3d0ece05a9.xdr b/test-lcm-current/InvokeHostFunctionTests/e2c37e3d0ece05a9.xdr similarity index 96% rename from test-lcm-next/InvokeHostFunctionTests/e2c37e3d0ece05a9.xdr rename to test-lcm-current/InvokeHostFunctionTests/e2c37e3d0ece05a9.xdr index 77742ee519..72c948dd77 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e2c37e3d0ece05a9.xdr and b/test-lcm-current/InvokeHostFunctionTests/e2c37e3d0ece05a9.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e2df180a92959730.xdr b/test-lcm-current/InvokeHostFunctionTests/e2df180a92959730.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e2df180a92959730.xdr and b/test-lcm-current/InvokeHostFunctionTests/e2df180a92959730.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e3ba82a695ba7439.xdr b/test-lcm-current/InvokeHostFunctionTests/e3ba82a695ba7439.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/e3ba82a695ba7439.xdr rename to test-lcm-current/InvokeHostFunctionTests/e3ba82a695ba7439.xdr index 13469ec806..87961886c8 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e3ba82a695ba7439.xdr and b/test-lcm-current/InvokeHostFunctionTests/e3ba82a695ba7439.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e3be2a388e711b29.xdr b/test-lcm-current/InvokeHostFunctionTests/e3be2a388e711b29.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/e3be2a388e711b29.xdr rename to test-lcm-current/InvokeHostFunctionTests/e3be2a388e711b29.xdr index 3438841644..ebc8dae9eb 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e3be2a388e711b29.xdr and b/test-lcm-current/InvokeHostFunctionTests/e3be2a388e711b29.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e436eae1b108bf65.xdr b/test-lcm-current/InvokeHostFunctionTests/e436eae1b108bf65.xdr index c753659270..fca257c72c 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e436eae1b108bf65.xdr and b/test-lcm-current/InvokeHostFunctionTests/e436eae1b108bf65.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e473a38c1e8f7e01.xdr b/test-lcm-current/InvokeHostFunctionTests/e473a38c1e8f7e01.xdr deleted file mode 100644 index c721e3f441..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/e473a38c1e8f7e01.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e4a693d475f137c9.xdr b/test-lcm-current/InvokeHostFunctionTests/e4a693d475f137c9.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e4a693d475f137c9.xdr and b/test-lcm-current/InvokeHostFunctionTests/e4a693d475f137c9.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e4a7e26b2bd75a51.xdr b/test-lcm-current/InvokeHostFunctionTests/e4a7e26b2bd75a51.xdr deleted file mode 100644 index 0ce4c6e875..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/e4a7e26b2bd75a51.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e4b75527318c3f4b.xdr b/test-lcm-current/InvokeHostFunctionTests/e4b75527318c3f4b.xdr index 7a8f43e2c4..3a5a541257 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e4b75527318c3f4b.xdr and b/test-lcm-current/InvokeHostFunctionTests/e4b75527318c3f4b.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e4c325158111957e.xdr b/test-lcm-current/InvokeHostFunctionTests/e4c325158111957e.xdr deleted file mode 100644 index ba78671be7..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/e4c325158111957e.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e55a18ea45f18d9a.xdr b/test-lcm-current/InvokeHostFunctionTests/e55a18ea45f18d9a.xdr deleted file mode 100644 index 09dddfa6d2..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/e55a18ea45f18d9a.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e58ecf019fb8ef4c.xdr b/test-lcm-current/InvokeHostFunctionTests/e58ecf019fb8ef4c.xdr deleted file mode 100644 index 029dfdf56c..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/e58ecf019fb8ef4c.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e592b8e0d0c064f2.xdr b/test-lcm-current/InvokeHostFunctionTests/e592b8e0d0c064f2.xdr index 506a6de987..199e310818 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e592b8e0d0c064f2.xdr and b/test-lcm-current/InvokeHostFunctionTests/e592b8e0d0c064f2.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e595ac8447e8be48.xdr b/test-lcm-current/InvokeHostFunctionTests/e595ac8447e8be48.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e595ac8447e8be48.xdr and b/test-lcm-current/InvokeHostFunctionTests/e595ac8447e8be48.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e5df0fc8c728a355.xdr b/test-lcm-current/InvokeHostFunctionTests/e5df0fc8c728a355.xdr deleted file mode 100644 index 2deffb983b..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/e5df0fc8c728a355.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e65bc9d3ad40b232.xdr b/test-lcm-current/InvokeHostFunctionTests/e65bc9d3ad40b232.xdr index d47c7e5556..143050a48d 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e65bc9d3ad40b232.xdr and b/test-lcm-current/InvokeHostFunctionTests/e65bc9d3ad40b232.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e663576331e88873.xdr b/test-lcm-current/InvokeHostFunctionTests/e663576331e88873.xdr index 1dbfb2accb..0a2d7144a4 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e663576331e88873.xdr and b/test-lcm-current/InvokeHostFunctionTests/e663576331e88873.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e668e4a1eb385caf.xdr b/test-lcm-current/InvokeHostFunctionTests/e668e4a1eb385caf.xdr index 08647f159c..18a440074c 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e668e4a1eb385caf.xdr and b/test-lcm-current/InvokeHostFunctionTests/e668e4a1eb385caf.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e6bd97c7e61b9c20.xdr b/test-lcm-current/InvokeHostFunctionTests/e6bd97c7e61b9c20.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e6bd97c7e61b9c20.xdr and b/test-lcm-current/InvokeHostFunctionTests/e6bd97c7e61b9c20.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e7bc3224128af431.xdr b/test-lcm-current/InvokeHostFunctionTests/e7bc3224128af431.xdr deleted file mode 100644 index d1b7f7e274..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/e7bc3224128af431.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e7c93b4b2532635a.xdr b/test-lcm-current/InvokeHostFunctionTests/e7c93b4b2532635a.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e7c93b4b2532635a.xdr and b/test-lcm-current/InvokeHostFunctionTests/e7c93b4b2532635a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e847e07471896a84.xdr b/test-lcm-current/InvokeHostFunctionTests/e847e07471896a84.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e847e07471896a84.xdr and b/test-lcm-current/InvokeHostFunctionTests/e847e07471896a84.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e8e3a93f6508722e.xdr b/test-lcm-current/InvokeHostFunctionTests/e8e3a93f6508722e.xdr deleted file mode 100644 index 1343a03fb8..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/e8e3a93f6508722e.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e8e94108c4e35442.xdr b/test-lcm-current/InvokeHostFunctionTests/e8e94108c4e35442.xdr deleted file mode 100644 index 0a19e8e19b..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/e8e94108c4e35442.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e970c80dd6512e2a.xdr b/test-lcm-current/InvokeHostFunctionTests/e970c80dd6512e2a.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e970c80dd6512e2a.xdr and b/test-lcm-current/InvokeHostFunctionTests/e970c80dd6512e2a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e978d88c40ed87f1.xdr b/test-lcm-current/InvokeHostFunctionTests/e978d88c40ed87f1.xdr index 019e025890..f7b8d50605 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e978d88c40ed87f1.xdr and b/test-lcm-current/InvokeHostFunctionTests/e978d88c40ed87f1.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e999346808076671.xdr b/test-lcm-current/InvokeHostFunctionTests/e999346808076671.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e999346808076671.xdr and b/test-lcm-current/InvokeHostFunctionTests/e999346808076671.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e9d2d4153e77f33a.xdr b/test-lcm-current/InvokeHostFunctionTests/e9d2d4153e77f33a.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/e9d2d4153e77f33a.xdr rename to test-lcm-current/InvokeHostFunctionTests/e9d2d4153e77f33a.xdr index e07a9a91d3..fc0b7bde6d 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e9d2d4153e77f33a.xdr and b/test-lcm-current/InvokeHostFunctionTests/e9d2d4153e77f33a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e9d3d132208dd2f6.xdr b/test-lcm-current/InvokeHostFunctionTests/e9d3d132208dd2f6.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e9d3d132208dd2f6.xdr and b/test-lcm-current/InvokeHostFunctionTests/e9d3d132208dd2f6.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ea4a1267d6c3a211.xdr b/test-lcm-current/InvokeHostFunctionTests/ea4a1267d6c3a211.xdr deleted file mode 100644 index b939a023eb..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/ea4a1267d6c3a211.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ea940d6997fea54c.xdr b/test-lcm-current/InvokeHostFunctionTests/ea940d6997fea54c.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ea940d6997fea54c.xdr and b/test-lcm-current/InvokeHostFunctionTests/ea940d6997fea54c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/eaa4c6f56373a470.xdr b/test-lcm-current/InvokeHostFunctionTests/eaa4c6f56373a470.xdr index feaaa93bb1..fa4be4d4d9 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/eaa4c6f56373a470.xdr and b/test-lcm-current/InvokeHostFunctionTests/eaa4c6f56373a470.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/eadfba1154674062.xdr b/test-lcm-current/InvokeHostFunctionTests/eadfba1154674062.xdr index 42bced4816..05d47d71a1 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/eadfba1154674062.xdr and b/test-lcm-current/InvokeHostFunctionTests/eadfba1154674062.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ec29598b16b053bc.xdr b/test-lcm-current/InvokeHostFunctionTests/ec29598b16b053bc.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ec29598b16b053bc.xdr and b/test-lcm-current/InvokeHostFunctionTests/ec29598b16b053bc.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ecd35a6539ca78d9.xdr b/test-lcm-current/InvokeHostFunctionTests/ecd35a6539ca78d9.xdr index 6388e70b2c..699e88fab2 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ecd35a6539ca78d9.xdr and b/test-lcm-current/InvokeHostFunctionTests/ecd35a6539ca78d9.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ecee0b3efb0526e4.xdr b/test-lcm-current/InvokeHostFunctionTests/ecee0b3efb0526e4.xdr index 1c2d8fe2e3..2f791b9f7a 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ecee0b3efb0526e4.xdr and b/test-lcm-current/InvokeHostFunctionTests/ecee0b3efb0526e4.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ed348cde4f3127e8.xdr b/test-lcm-current/InvokeHostFunctionTests/ed348cde4f3127e8.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ed348cde4f3127e8.xdr and b/test-lcm-current/InvokeHostFunctionTests/ed348cde4f3127e8.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ed39ca2daf59835d.xdr b/test-lcm-current/InvokeHostFunctionTests/ed39ca2daf59835d.xdr index e9c4fbb7f5..caf1381931 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ed39ca2daf59835d.xdr and b/test-lcm-current/InvokeHostFunctionTests/ed39ca2daf59835d.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ed4083446fa69ab7.xdr b/test-lcm-current/InvokeHostFunctionTests/ed4083446fa69ab7.xdr index 631e6aab15..bc3974e3e1 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ed4083446fa69ab7.xdr and b/test-lcm-current/InvokeHostFunctionTests/ed4083446fa69ab7.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ed4298d1c34e0b79.xdr b/test-lcm-current/InvokeHostFunctionTests/ed4298d1c34e0b79.xdr deleted file mode 100644 index 1d9c7fa2f5..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/ed4298d1c34e0b79.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/eda22224ec5ac6ea.xdr b/test-lcm-current/InvokeHostFunctionTests/eda22224ec5ac6ea.xdr index 5445fa2da8..7df157a846 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/eda22224ec5ac6ea.xdr and b/test-lcm-current/InvokeHostFunctionTests/eda22224ec5ac6ea.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/eda3dfe5b6940848.xdr b/test-lcm-current/InvokeHostFunctionTests/eda3dfe5b6940848.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/eda3dfe5b6940848.xdr and b/test-lcm-current/InvokeHostFunctionTests/eda3dfe5b6940848.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/eda811ebbd672d8d.xdr b/test-lcm-current/InvokeHostFunctionTests/eda811ebbd672d8d.xdr index 8052de4fd6..49ecce37c9 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/eda811ebbd672d8d.xdr and b/test-lcm-current/InvokeHostFunctionTests/eda811ebbd672d8d.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ede88dbbbadb7264.xdr b/test-lcm-current/InvokeHostFunctionTests/ede88dbbbadb7264.xdr deleted file mode 100644 index 7691200c01..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/ede88dbbbadb7264.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/edeef19bce43c3da.xdr b/test-lcm-current/InvokeHostFunctionTests/edeef19bce43c3da.xdr index 0b02c463a0..e0732fcf70 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/edeef19bce43c3da.xdr and b/test-lcm-current/InvokeHostFunctionTests/edeef19bce43c3da.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ee0f9fb5465b72ad.xdr b/test-lcm-current/InvokeHostFunctionTests/ee0f9fb5465b72ad.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ee0f9fb5465b72ad.xdr and b/test-lcm-current/InvokeHostFunctionTests/ee0f9fb5465b72ad.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ee277035f023392a.xdr b/test-lcm-current/InvokeHostFunctionTests/ee277035f023392a.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ee277035f023392a.xdr and b/test-lcm-current/InvokeHostFunctionTests/ee277035f023392a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ee2f02eb252fcc27.xdr b/test-lcm-current/InvokeHostFunctionTests/ee2f02eb252fcc27.xdr index 75cb54dfec..324c90ce4f 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ee2f02eb252fcc27.xdr and b/test-lcm-current/InvokeHostFunctionTests/ee2f02eb252fcc27.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ee3472dd29024e40.xdr b/test-lcm-current/InvokeHostFunctionTests/ee3472dd29024e40.xdr index a84142dcca..f905638856 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ee3472dd29024e40.xdr and b/test-lcm-current/InvokeHostFunctionTests/ee3472dd29024e40.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/eee17f706f7deb9a.xdr b/test-lcm-current/InvokeHostFunctionTests/eee17f706f7deb9a.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/eee17f706f7deb9a.xdr and b/test-lcm-current/InvokeHostFunctionTests/eee17f706f7deb9a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ef37aff90281f523.xdr b/test-lcm-current/InvokeHostFunctionTests/ef37aff90281f523.xdr index 7cf9dde1bd..4b28936e19 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ef37aff90281f523.xdr and b/test-lcm-current/InvokeHostFunctionTests/ef37aff90281f523.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ef78b3de24d812f7.xdr b/test-lcm-current/InvokeHostFunctionTests/ef78b3de24d812f7.xdr deleted file mode 100644 index 8210dc54ad..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/ef78b3de24d812f7.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ef79595a3c250a3a.xdr b/test-lcm-current/InvokeHostFunctionTests/ef79595a3c250a3a.xdr index d857206521..ed0baea1e5 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ef79595a3c250a3a.xdr and b/test-lcm-current/InvokeHostFunctionTests/ef79595a3c250a3a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ef80e6a78893c56c.xdr b/test-lcm-current/InvokeHostFunctionTests/ef80e6a78893c56c.xdr index b79aa3e260..746042633a 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ef80e6a78893c56c.xdr and b/test-lcm-current/InvokeHostFunctionTests/ef80e6a78893c56c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/efc0bd51b5b29e40.xdr b/test-lcm-current/InvokeHostFunctionTests/efc0bd51b5b29e40.xdr index fc35cc8429..8ff168ff93 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/efc0bd51b5b29e40.xdr and b/test-lcm-current/InvokeHostFunctionTests/efc0bd51b5b29e40.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/efd47464023e9e55.xdr b/test-lcm-current/InvokeHostFunctionTests/efd47464023e9e55.xdr index 47dc7a1b8b..5e6699f37f 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/efd47464023e9e55.xdr and b/test-lcm-current/InvokeHostFunctionTests/efd47464023e9e55.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/efe4261cc946881e.xdr b/test-lcm-current/InvokeHostFunctionTests/efe4261cc946881e.xdr index a957c4cfa1..9007121ccc 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/efe4261cc946881e.xdr and b/test-lcm-current/InvokeHostFunctionTests/efe4261cc946881e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f021726e70bb6c48.xdr b/test-lcm-current/InvokeHostFunctionTests/f021726e70bb6c48.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/f021726e70bb6c48.xdr rename to test-lcm-current/InvokeHostFunctionTests/f021726e70bb6c48.xdr index 8ad14de286..3c439ff764 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f021726e70bb6c48.xdr and b/test-lcm-current/InvokeHostFunctionTests/f021726e70bb6c48.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f0638599b34ec8a1.xdr b/test-lcm-current/InvokeHostFunctionTests/f0638599b34ec8a1.xdr index d4c804959b..caf5edf39c 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f0638599b34ec8a1.xdr and b/test-lcm-current/InvokeHostFunctionTests/f0638599b34ec8a1.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f0e8fbaf2d4bdbcd.xdr b/test-lcm-current/InvokeHostFunctionTests/f0e8fbaf2d4bdbcd.xdr index c91de12ea4..dfb7678a84 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f0e8fbaf2d4bdbcd.xdr and b/test-lcm-current/InvokeHostFunctionTests/f0e8fbaf2d4bdbcd.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f168c76aba835145.xdr b/test-lcm-current/InvokeHostFunctionTests/f168c76aba835145.xdr index 4d27d09666..d783598e05 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f168c76aba835145.xdr and b/test-lcm-current/InvokeHostFunctionTests/f168c76aba835145.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f17be5b4b66ea006.xdr b/test-lcm-current/InvokeHostFunctionTests/f17be5b4b66ea006.xdr index 1ffcd2ac70..266e901a11 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f17be5b4b66ea006.xdr and b/test-lcm-current/InvokeHostFunctionTests/f17be5b4b66ea006.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f1b13fa29eb12ca4.xdr b/test-lcm-current/InvokeHostFunctionTests/f1b13fa29eb12ca4.xdr index a012b757ef..5d5f2d3ae5 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f1b13fa29eb12ca4.xdr and b/test-lcm-current/InvokeHostFunctionTests/f1b13fa29eb12ca4.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f1f574cc8ac44007.xdr b/test-lcm-current/InvokeHostFunctionTests/f1f574cc8ac44007.xdr deleted file mode 100644 index a8f01362dd..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/f1f574cc8ac44007.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f1fc663779e87b60.xdr b/test-lcm-current/InvokeHostFunctionTests/f1fc663779e87b60.xdr index e1a78db59a..62156d1614 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f1fc663779e87b60.xdr and b/test-lcm-current/InvokeHostFunctionTests/f1fc663779e87b60.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f2530b53ad33fc1e.xdr b/test-lcm-current/InvokeHostFunctionTests/f2530b53ad33fc1e.xdr deleted file mode 100644 index c82858bf91..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/f2530b53ad33fc1e.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f26b5de9280bbacd.xdr b/test-lcm-current/InvokeHostFunctionTests/f26b5de9280bbacd.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f26b5de9280bbacd.xdr and b/test-lcm-current/InvokeHostFunctionTests/f26b5de9280bbacd.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f27c6aef8abbd723.xdr b/test-lcm-current/InvokeHostFunctionTests/f27c6aef8abbd723.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f27c6aef8abbd723.xdr and b/test-lcm-current/InvokeHostFunctionTests/f27c6aef8abbd723.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f287aa63bbdb6ba8.xdr b/test-lcm-current/InvokeHostFunctionTests/f287aa63bbdb6ba8.xdr index 3135e57d76..a253980579 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f287aa63bbdb6ba8.xdr and b/test-lcm-current/InvokeHostFunctionTests/f287aa63bbdb6ba8.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f2d73eb7f022f0cb.xdr b/test-lcm-current/InvokeHostFunctionTests/f2d73eb7f022f0cb.xdr index ac52d825a3..2beb2d59f8 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f2d73eb7f022f0cb.xdr and b/test-lcm-current/InvokeHostFunctionTests/f2d73eb7f022f0cb.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f2eb7607bcc37fbb.xdr b/test-lcm-current/InvokeHostFunctionTests/f2eb7607bcc37fbb.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f2eb7607bcc37fbb.xdr and b/test-lcm-current/InvokeHostFunctionTests/f2eb7607bcc37fbb.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f3230f7682e7de69.xdr b/test-lcm-current/InvokeHostFunctionTests/f3230f7682e7de69.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f3230f7682e7de69.xdr and b/test-lcm-current/InvokeHostFunctionTests/f3230f7682e7de69.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f43fbd97002badc6.xdr b/test-lcm-current/InvokeHostFunctionTests/f43fbd97002badc6.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f43fbd97002badc6.xdr and b/test-lcm-current/InvokeHostFunctionTests/f43fbd97002badc6.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f4e70d5861ba223f.xdr b/test-lcm-current/InvokeHostFunctionTests/f4e70d5861ba223f.xdr deleted file mode 100644 index 155858dc0d..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/f4e70d5861ba223f.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f4f351372abade91.xdr b/test-lcm-current/InvokeHostFunctionTests/f4f351372abade91.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f4f351372abade91.xdr and b/test-lcm-current/InvokeHostFunctionTests/f4f351372abade91.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f506528d32fd0652.xdr b/test-lcm-current/InvokeHostFunctionTests/f506528d32fd0652.xdr index 3572269b60..d12814b8cc 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f506528d32fd0652.xdr and b/test-lcm-current/InvokeHostFunctionTests/f506528d32fd0652.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f538b7222e421b51.xdr b/test-lcm-current/InvokeHostFunctionTests/f538b7222e421b51.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f538b7222e421b51.xdr and b/test-lcm-current/InvokeHostFunctionTests/f538b7222e421b51.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f57219130594aa83.xdr b/test-lcm-current/InvokeHostFunctionTests/f57219130594aa83.xdr index b290edb46b..c918f037ed 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f57219130594aa83.xdr and b/test-lcm-current/InvokeHostFunctionTests/f57219130594aa83.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f5aefef219319924.xdr b/test-lcm-current/InvokeHostFunctionTests/f5aefef219319924.xdr deleted file mode 100644 index 7b2fb64ac2..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/f5aefef219319924.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f5d072a9fb1463da.xdr b/test-lcm-current/InvokeHostFunctionTests/f5d072a9fb1463da.xdr index 25a5657bcb..912f32d703 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f5d072a9fb1463da.xdr and b/test-lcm-current/InvokeHostFunctionTests/f5d072a9fb1463da.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f5d58a30f834542b.xdr b/test-lcm-current/InvokeHostFunctionTests/f5d58a30f834542b.xdr deleted file mode 100644 index b077dc59b4..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/f5d58a30f834542b.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f7b2eaed80de4146.xdr b/test-lcm-current/InvokeHostFunctionTests/f7b2eaed80de4146.xdr deleted file mode 100644 index 4277b5b86f..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/f7b2eaed80de4146.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f7ca893de81e0719.xdr b/test-lcm-current/InvokeHostFunctionTests/f7ca893de81e0719.xdr index 7782e6b2e3..bd956e355d 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f7ca893de81e0719.xdr and b/test-lcm-current/InvokeHostFunctionTests/f7ca893de81e0719.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f7e97011ed711385.xdr b/test-lcm-current/InvokeHostFunctionTests/f7e97011ed711385.xdr index 12fc8ccec7..26e9b1cc96 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f7e97011ed711385.xdr and b/test-lcm-current/InvokeHostFunctionTests/f7e97011ed711385.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f7f94eb704afa841.xdr b/test-lcm-current/InvokeHostFunctionTests/f7f94eb704afa841.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f7f94eb704afa841.xdr and b/test-lcm-current/InvokeHostFunctionTests/f7f94eb704afa841.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f80ab46aebfceee5.xdr b/test-lcm-current/InvokeHostFunctionTests/f80ab46aebfceee5.xdr index d31ec8d3b5..2ed71e6662 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f80ab46aebfceee5.xdr and b/test-lcm-current/InvokeHostFunctionTests/f80ab46aebfceee5.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f816b3efbdfa3b79.xdr b/test-lcm-current/InvokeHostFunctionTests/f816b3efbdfa3b79.xdr similarity index 95% rename from test-lcm-next/InvokeHostFunctionTests/f816b3efbdfa3b79.xdr rename to test-lcm-current/InvokeHostFunctionTests/f816b3efbdfa3b79.xdr index 9134662364..b8adab0d94 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f816b3efbdfa3b79.xdr and b/test-lcm-current/InvokeHostFunctionTests/f816b3efbdfa3b79.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f85719dc2181f545.xdr b/test-lcm-current/InvokeHostFunctionTests/f85719dc2181f545.xdr index a7eb805477..db330a8081 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f85719dc2181f545.xdr and b/test-lcm-current/InvokeHostFunctionTests/f85719dc2181f545.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f860f4c299f7c690.xdr b/test-lcm-current/InvokeHostFunctionTests/f860f4c299f7c690.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f860f4c299f7c690.xdr and b/test-lcm-current/InvokeHostFunctionTests/f860f4c299f7c690.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f8630c82e2e21ee3.xdr b/test-lcm-current/InvokeHostFunctionTests/f8630c82e2e21ee3.xdr index 32928623a6..efb370c7af 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f8630c82e2e21ee3.xdr and b/test-lcm-current/InvokeHostFunctionTests/f8630c82e2e21ee3.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f8cddbe43429eb31.xdr b/test-lcm-current/InvokeHostFunctionTests/f8cddbe43429eb31.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/f8cddbe43429eb31.xdr rename to test-lcm-current/InvokeHostFunctionTests/f8cddbe43429eb31.xdr index dea656e10d..2314858511 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f8cddbe43429eb31.xdr and b/test-lcm-current/InvokeHostFunctionTests/f8cddbe43429eb31.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f98d63a422dc7316.xdr b/test-lcm-current/InvokeHostFunctionTests/f98d63a422dc7316.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f98d63a422dc7316.xdr and b/test-lcm-current/InvokeHostFunctionTests/f98d63a422dc7316.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/fa2ba8e3c2560e56.xdr b/test-lcm-current/InvokeHostFunctionTests/fa2ba8e3c2560e56.xdr index 25922754b8..0ae1d90c37 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/fa2ba8e3c2560e56.xdr and b/test-lcm-current/InvokeHostFunctionTests/fa2ba8e3c2560e56.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/fa3f6b4664496f4e.xdr b/test-lcm-current/InvokeHostFunctionTests/fa3f6b4664496f4e.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/fa3f6b4664496f4e.xdr and b/test-lcm-current/InvokeHostFunctionTests/fa3f6b4664496f4e.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/fa4b194dcfa3785c.xdr b/test-lcm-current/InvokeHostFunctionTests/fa4b194dcfa3785c.xdr index 97fc86089a..56c187ce62 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/fa4b194dcfa3785c.xdr and b/test-lcm-current/InvokeHostFunctionTests/fa4b194dcfa3785c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/fa54dfbe49ee7aab.xdr b/test-lcm-current/InvokeHostFunctionTests/fa54dfbe49ee7aab.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/fa54dfbe49ee7aab.xdr and b/test-lcm-current/InvokeHostFunctionTests/fa54dfbe49ee7aab.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/fa8d540011cb479c.xdr b/test-lcm-current/InvokeHostFunctionTests/fa8d540011cb479c.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/fa8d540011cb479c.xdr and b/test-lcm-current/InvokeHostFunctionTests/fa8d540011cb479c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/fb103634b7406e33.xdr b/test-lcm-current/InvokeHostFunctionTests/fb103634b7406e33.xdr index 1a1551f178..63fc6d32b2 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/fb103634b7406e33.xdr and b/test-lcm-current/InvokeHostFunctionTests/fb103634b7406e33.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/fb5372535aab3beb.xdr b/test-lcm-current/InvokeHostFunctionTests/fb5372535aab3beb.xdr index b43efdba38..33ee654ec2 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/fb5372535aab3beb.xdr and b/test-lcm-current/InvokeHostFunctionTests/fb5372535aab3beb.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/fbec9a9e0db4dfc9.xdr b/test-lcm-current/InvokeHostFunctionTests/fbec9a9e0db4dfc9.xdr index 5da727a6cf..d45ce6cdfe 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/fbec9a9e0db4dfc9.xdr and b/test-lcm-current/InvokeHostFunctionTests/fbec9a9e0db4dfc9.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/fc180de263c6378d.xdr b/test-lcm-current/InvokeHostFunctionTests/fc180de263c6378d.xdr index 04bd3636eb..fbe38351e5 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/fc180de263c6378d.xdr and b/test-lcm-current/InvokeHostFunctionTests/fc180de263c6378d.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/fc65c51cb0a307a8.xdr b/test-lcm-current/InvokeHostFunctionTests/fc65c51cb0a307a8.xdr index 7f3ba738bf..4c4cd66458 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/fc65c51cb0a307a8.xdr and b/test-lcm-current/InvokeHostFunctionTests/fc65c51cb0a307a8.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/fca3eb413e17400c.xdr b/test-lcm-current/InvokeHostFunctionTests/fca3eb413e17400c.xdr deleted file mode 100644 index 5c1b6540df..0000000000 Binary files a/test-lcm-current/InvokeHostFunctionTests/fca3eb413e17400c.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/fcc1d92eb9aefea4.xdr b/test-lcm-current/InvokeHostFunctionTests/fcc1d92eb9aefea4.xdr index 218f61e724..1a00d78b30 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/fcc1d92eb9aefea4.xdr and b/test-lcm-current/InvokeHostFunctionTests/fcc1d92eb9aefea4.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/fcc7940f9747ef41.xdr b/test-lcm-current/InvokeHostFunctionTests/fcc7940f9747ef41.xdr index 665e68dd2b..39c26145f7 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/fcc7940f9747ef41.xdr and b/test-lcm-current/InvokeHostFunctionTests/fcc7940f9747ef41.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/fdc0726b33a30b71.xdr b/test-lcm-current/InvokeHostFunctionTests/fdc0726b33a30b71.xdr index c0d4460f92..cc790b6d14 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/fdc0726b33a30b71.xdr and b/test-lcm-current/InvokeHostFunctionTests/fdc0726b33a30b71.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/fecb8c7203544f20.xdr b/test-lcm-current/InvokeHostFunctionTests/fecb8c7203544f20.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/fecb8c7203544f20.xdr and b/test-lcm-current/InvokeHostFunctionTests/fecb8c7203544f20.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ff17a6200f26a9e2.xdr b/test-lcm-current/InvokeHostFunctionTests/ff17a6200f26a9e2.xdr index bdd1ca8767..fde0099d32 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ff17a6200f26a9e2.xdr and b/test-lcm-current/InvokeHostFunctionTests/ff17a6200f26a9e2.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ff35b35da8c78163.xdr b/test-lcm-current/InvokeHostFunctionTests/ff35b35da8c78163.xdr index 5730060bee..010a1b7e0a 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ff35b35da8c78163.xdr and b/test-lcm-current/InvokeHostFunctionTests/ff35b35da8c78163.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ff665fb4708c864d.xdr b/test-lcm-current/InvokeHostFunctionTests/ff665fb4708c864d.xdr similarity index 94% rename from test-lcm-next/InvokeHostFunctionTests/ff665fb4708c864d.xdr rename to test-lcm-current/InvokeHostFunctionTests/ff665fb4708c864d.xdr index e2e299f767..cc35a41812 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ff665fb4708c864d.xdr and b/test-lcm-current/InvokeHostFunctionTests/ff665fb4708c864d.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ffde1b7463c8c452.xdr b/test-lcm-current/InvokeHostFunctionTests/ffde1b7463c8c452.xdr index 10dd3bdd4a..fef983e698 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ffde1b7463c8c452.xdr and b/test-lcm-current/InvokeHostFunctionTests/ffde1b7463c8c452.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/index.json b/test-lcm-current/InvokeHostFunctionTests/index.json index 37d53d2bdb..6cf2941f85 100644 --- a/test-lcm-current/InvokeHostFunctionTests/index.json +++ b/test-lcm-current/InvokeHostFunctionTests/index.json @@ -1,24 +1,22 @@ { + "!cfg protocol version" : 28, + "!rng seed" : 12345, + "!test all versions" : false, + "!versions to test" : [ 28 ], "0046300f950c0211" : "Soroban_authorization-default_classic_account-deep_tree-incorrect_signature_payload", "00e76ef8f869401f" : "Soroban_authorization-classic_and_custom_accounts-single_call-unused_auth_entries-failure_with_malformed_function_name", - "0149cc6c1924569c" : "state_archival-protocol_version_27-contract_storage_archival-TTL_enforcement-restoreOp_skips_when_currentLedger_==_liveUntilLedger", "014fcfa4f59b51d4" : "Soroban_footprint_validation-invokeHostFunction-readOnly-config_setting", "018599ef4068218e" : "Soroban_authorization-default_classic_account-wide_tree-unused_auth_entries-failure_with_malformed_function_name", - "02fb5ff643f4c29b" : "contract_storage-protocol_version_27-footprint-RO_footprint_for_RW_entry", "03560ea94d548ceb" : "Soroban_authorization-multisig_classic_account-single_call-unused_auth_entries-failure_with_malformed_function_name", "03a5e8d5ea1d3a10" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_9", "03df1dc73d71eb00" : "Module_cache_cost_with_restore_gaps-scenario_B-_restore_and_invoke_in_same_ledger", - "03f6b69ffc36df5a" : "Soroban_non-refundable_resource_fees_are_stable-protocol_version_27", "04530f6112a41176" : "ledger_entry_size_limit_enforced-contract_code_limits", + "0470c77e04ef179a" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-manual_restore", "048c93e37abb62ea" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-failed_auto_restores_and_manual_restores_across_stages-two_failed_restores_and_a_successful_restore_in_the_same_stage", - "04b00b08d10222a3" : "contract_storage-protocol_version_26-footprint-unused_readWrite_key", "0525df1061c74b13" : "charge_rent_fees_for_storage_resize-resize_and_extend-failed_due_to_low_fee", - "0540c58d02f9c06b" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-restore,_update_value_in_next_tx-across_stages", - "058490aa7d8cfae3" : "contract_storage-protocol_version_27-successful_storage_operations", + "05c88cab546ce496" : "Soroban_non-refundable_resource_fees_are_stable-protocol_version_28", "068bb21d88974e0d" : "Soroban_authorization-custom_account-deep_tree-unused_auth_entries-failure_with_malformed_function_name", "06cbc0fe2a3f8280" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_8", - "06dbcdf735c773cd" : "state_archival-protocol_version_27-TTL_threshold", - "0706b7146a33b84a" : "state_archival-protocol_version_27-contract_instance_and_Wasm_archival-restore_contract_Wasm,_not_instance", "0718f219d05d95c5" : "parallel_txs-delete_and_re-create_temporary_entry_with_lower_TTL-same_stage", "075b4bea01d35444" : "Soroban_authorization-classic_account_with_weights-wide_tree-success", "07c78b13b19c1cca" : "Soroban_authorization-default_classic_account-deep_tree-unused_auth_entries-failure_with_malformed_function_name", @@ -34,9 +32,9 @@ "0a7c39ca98f1ae85" : "Soroban_authorization-custom_account-wide_tree-unused_auth_entries-success_with_arbitrary_valid_function", "0a9a9e7662e8f5b0" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-issuer_trustline", "0b38afb8b9aaa794" : "resource_fee_exceeds_uint32-other_account_fee_bump-failure-insufficient_fee_bumper_balance", - "0bb6a273d7e63e28" : "state_archival_operation_errors-protocol_version_27-restore_operation-exceeded_readBytes", "0c35da322a33f3c2" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_13", "0c43ba995c341a31" : "Soroban_authorization-classic_account_with_weights-wide_tree-unused_auth_entries-failure_with_long_malformed_function_name", + "0c775185679f70cb" : "classic_payment_source_same_as_soroban_fee_bump_source-protocol_version_28", "0c92eb78da37bfdd" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-restore,_delete,_restore-delete_in_same_stage_as_second_restore", "0cb06b7800ce099c" : "Soroban_authorization-multisig_classic_account-deep_tree-unused_auth_entries-success_with_arbitrary_valid_function", "0cfa6a9a348ad29f" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-TTL_entry", @@ -46,55 +44,52 @@ "0f97452228eac10a" : "Soroban_authorization-default_classic_account-deep_tree-success", "102ec8047ba9b73e" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_7", "11caaacc02cfaf33" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_17", - "11db6d39fd0eae58" : "state_archival-protocol_version_26-TTL_threshold", "12400eda8720567b" : "autorestore_contract_instance-restore_with_no_writes-classic_entries_count_towards_read_bytes-insufficient_write_bytes", - "12b1e74d406d16ee" : "archival_meta-protocol_version_27-persistent_entry_meta-restore_expired_but_not_evicted-autorestore,_delete_value_in_next_tx-same_stage", "12e5bf578c813325" : "overly_large_soroban_values_are_handled_gracefully-diagnostics", "133235aeb624b4fb" : "ledger_entry_size_limit_enforced-contract_data_limits", "1395745c935c8a14" : "Soroban_classic_account_authentication-default_account_with_additional_signer-success_with_credentials_v2", - "13d21e8479cc1108" : "multiple_soroban_ops_in_a_tx-protocol_version_27-with_fee_bump", "13ddfbcd91340230" : "Module_cache_cost_with_restore_gaps-scenario_A-_restore_in_one_ledger,_invoke_in_next", "13f416a9b53c779a" : "Soroban_authorization-custom_account-wide_tree-incorrect_signature_payload", "14407acab9b18289" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-native_asset_trustline", "1452c35fbbe6c3ab" : "Soroban_authorization-multisig_classic_account-wide_tree-unused_auth_entries-failure_with_long_malformed_function_name", "1484cd9b56513ed7" : "Soroban_classic_account_authentication-default_account-wrong_signature_name", + "1538a12625fd25fb" : "classic_payment_to_soroban_fee_bump_account-protocol_version_28", + "15a4d85f5dd2fd3b" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-restore,_update_value_in_next_tx-same_stage", "15bc83b6792d6072" : "Soroban_authorization-classic_and_custom_accounts-deep_tree-incorrect_signature_payload", "15ecaba55fd111cc" : "autorestore_with_storage_resize-manual_restore-extend_only", "1648891cd7b9ac4f" : "Soroban_authorization-custom_account-single_call-success_with_duplicate_auth_entries", "165a1612aefb1f12" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_19", "169611b4e9b946c9" : "resource_fee_exceeds_uint32-self_fee_bump-success-inclusion_fee_and_refund_exceed_uint32", "169eaf7fc82af3dc" : "Soroban_classic_account_authentication-duplicate_signature_not_allowed_with_insufficient_single_signature_threshold", + "16b5f93e30d64633" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-autorestore,_delete_value_in_next_tx-across_stages", "16bac056666df725" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_2", + "17ee1ab07947fa54" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-restore,_update_value_in_next_tx-same_stage", "192dc34906478ab9" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_17", "193297e2240649fc" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-autorestore-across_stages", "1967a2d9962bb619" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_14", "198ad94ac0412a8b" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_7", - "19ebdeb29f33ff85" : "classic_payment_source_same_as_soroban_fee_bump_source-protocol_version_27", "1a8c5902e4afd03e" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_8", "1adc68cc7a5cf88e" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-issuer_trustline", "1b18e4016bfdf294" : "contract_constructor_support-constructor_with_no_arguments-v1_host_function,_v2_auth", "1c3d83a0318651b9" : "contract_errors_cause_transaction_to_fail-err", - "1d5bfe4be2ebaacb" : "source_account_of_first_tx_is_in_second_txs_footprint-protocol_version_26", - "1d8e86ddd8b11e7b" : "state_archival-protocol_version_26-conditional_TTL_extension-calculate_refund", "1dd0d92b94ce7c6f" : "Soroban_authorization-classic_account_with_weights-single_call-incorrect_signature_payload", "1e0b81121b9c895c" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_1", "1e3c70b0ecdbfb4f" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore-autorestore", "1ec1111288c846ad" : "Soroban_classic_account_authentication-default_account_with_additional_signer-incomplete_key", + "1f52ba0b7c5a13f0" : "basic_contract_invocation-protocol_version_28-insufficient_read_bytes_before_p23", "1f62f6743bb52550" : "readonly_ttl_bumps_across_threads_and_stages-multiple_readonly_ttl_bumps_same_stage", - "2000b9cc2809a1b4" : "state_archival-protocol_version_27-contract_instance_and_Wasm_archival-restore_contract_instance,_not_wasm", - "2076a51f648569cd" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-autorestore", - "20868c9e218c2273" : "state_archival-protocol_version_26-contract_storage_archival-TTL_enforcement-entry_accessible_when_currentLedger_==_liveUntilLedger", + "2055896750cd175f" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-wrong_signature_key_type", "20a6a4892d5acc69" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-failed_auto_restores_and_manual_restores_across_stages-two_failed_restores_across_stages", "20b9b462d5735ae2" : "Soroban_classic_account_authentication-default_account_with_additional_signer-wrong_field_order", "20c2b0f439ace889" : "Soroban_classic_account_authentication-account_with_weights-success", "211f4a93951f94b4" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_5", "21938ae254995cd4" : "Soroban_classic_account_authentication-account_with_weights-empty_vector_signature", "21ac7793688994ad" : "Soroban_footprint_validation-invokeHostFunction-readWrite-data", - "21c43b92b819267f" : "Trustline_stellar_asset_contract-protocol_version_26", "21e553dd1071721a" : "autorestore_contract_instance-restore_with_write", "221f1cad327fb891" : "Stellar_asset_contract_transfer_with_CAP-67_address_types-native_asset", "227f785ddbb9ab40" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_4", "2287bf75d44d6db2" : "Soroban_classic_account_authentication-account_with_required_multisig-incomplete_signature", + "229eca4a5af3b3cd" : "state_archival_operation_errors-protocol_version_28-extend_operation-too_large_extension", "22c6c1fecdd3222c" : "Soroban_authorization-multisig_classic_account-wide_tree-success_with_duplicate_auth_entries", "22df21f5f58e57ba" : "complex_contract-diagnostics_disabled", "2342772cbe3d3e0c" : "Soroban_footprint_validation-restoreOp-readOnly_footprint_not_empty", @@ -102,23 +97,23 @@ "23900da58ed1ec25" : "Soroban_classic_account_authentication-default_account_with_additional_signer-missing_key_field", "23a89388bfb65808" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_9", "246b195d9beac8d6" : "Soroban_authorization-custom_account-wide_tree-success_for_tree_with_extra_nodes", - "24bce78365780bb1" : "classic_payment_to_soroban_fee_bump_account-protocol_version_26", - "258ddf97b00c0bac" : "validate_return_values-protocol_version_27", + "2567ee7cb82c415f" : "multiple_soroban_ops_in_a_tx-protocol_version_28-without_fee_bump", "25e5dd2fc7614ea7" : "Failed_write_still_causes_ttl_observation", "266b724000b97eb7" : "Soroban_footprint_validation-restoreOp-temp_entries_are_not_allowed", - "2691da61cb031c32" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-restore,_update_value_in_next_tx-same_stage", "26fb40313adc084c" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_15", "2703a3e0e62612e8" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_11", + "275035785578c436" : "state_archival-protocol_version_28-contract_instance_and_Wasm_archival-lifetime_extensions", "279b3ea1936ed91c" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_7", "28480490bc8a3fae" : "Soroban_authorization-classic_and_custom_accounts-deep_tree-success_for_tree_with_extra_nodes", "285f5877a54deb4e" : "Soroban_footprint_validation-invokeHostFunction-readWrite-contract_data_key_above_limit", "286138b521aa29ed" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_20", "28e6a6a32da1fb63" : "Soroban_authorization-multisig_classic_account-deep_tree-success_with_duplicate_auth_entries", + "291ec7f3dd23aed8" : "state_archival_operation_errors-protocol_version_28-extend_operation-readBytes_limit", "293f7ed0e476294c" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_17", + "2944621c12e38c82" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-autorestore,_delete_value_in_next_tx-same_stage", "2951f9e3e0241cc4" : "Soroban_authorization-custom_account-single_call-no_auth", "2963054aff2cd923" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_17", - "29b03d37cd3099be" : "contract_storage-protocol_version_26-footprint-no_footprint", - "2ace299730fbdd52" : "fee_bump_refund_account_merged-protocol_version_26", + "299b1de69721232a" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-autorestore,_delete_value_in_next_tx-across_stages", "2af87dc6245a802c" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-wrong_key_name", "2b19e70a8b41485f" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_13", "2c26a7ba5b931a86" : "Soroban_classic_account_authentication-default_account-wrong_key_name", @@ -129,18 +124,17 @@ "2e8a9747bf075ec1" : "Soroban_footprint_validation-invokeHostFunction-readWrite-offer", "2e93251358cac25c" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_15", "2ea8bcb3f8d6be16" : "Soroban_authorization-classic_and_custom_accounts-single_call-success", + "2eb004014053b494" : "refund_test_with_closeLedger-protocol_version_28", "2eb7c4a770d05ab6" : "Soroban_classic_account_authentication-account_with_required_multisig-incomplete_key", - "2f05b787de3b1118" : "Soroban_delegated_signer_authentication-single_delegate-void_top-level_signature", "2f06a14dfcb5cd88" : "Soroban_authorization-classic_and_custom_accounts-deep_tree-success_with_duplicate_auth_entries", - "300159c9b981f5a9" : "state_archival-protocol_version_27-contract_instance_and_Wasm_archival-restore_contract_instance_and_wasm", - "302126e9bbf11954" : "basic_contract_invocation-protocol_version_27-correct_invocation", + "2f1ef83ec6a30e47" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_delete", + "2faf63148d9c990e" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_deleted,_then_recreate_with_new_TX-across_stages", "303dce5b05111d4b" : "Soroban_authorization-multisig_classic_account-deep_tree-incorrect_signature_payload", + "30f874adb24456b1" : "basic_contract_invocation-protocol_version_28-correct_invocation", "311f3f548207d5d6" : "Soroban_authorization-multisig_classic_account-wide_tree-incorrect_signature_payload", "3152146ae3e1601f" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_11", "318b008d239ea9d8" : "Module_cache", - "31c849dd20eef4c9" : "refund_account_merged-protocol_version_27", "3279e450f885436a" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-restore,_delete,_restore-across_stages", - "328148b03f51b78c" : "archival_meta-protocol_version_27-persistent_entry_meta-restore_expired_but_not_evicted-autorestore,_delete_value_in_next_tx-across_stages", "329c8076e0ba5976" : "Soroban_footprint_validation-invokeHostFunction-readWrite-TTL_entry", "32e313f52f20cae1" : "Soroban_classic_account_authentication-default_account-uninitialized_map", "3304ede4be3e7951" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_19", @@ -150,7 +144,9 @@ "33541948d53d210f" : "Soroban_footprint_validation-invokeHostFunction-readOnly-offer", "33f7502a4490dbc8" : "Soroban_authorization-classic_account_with_weights-deep_tree-success_with_duplicate_auth_entries", "343cb2cb92cd8aca" : "Soroban_authorization-classic_and_custom_accounts-wide_tree-no_auth", - "34bb302b64ca6cea" : "archival_meta-protocol_version_27-persistent_entry_meta-entry_evicted-eviction_meta-restore,_update_value_in_next_tx-same_stage", + "3468dbd89e1d09e5" : "classic_phase_bumps_sequence_of_soroban_source_account-protocol_version_28", + "34bda29a61241c80" : "state_archival-protocol_version_28-conditional_TTL_extension-calculate_refund", + "34c4629e4bafa2dd" : "contract_storage-protocol_version_28-footprint-no_footprint", "35117649a10b863c" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_11", "35b99a95ff36fd47" : "Soroban_authorization-default_classic_account-deep_tree-unused_auth_entries-failure_with_long_malformed_function_name", "36193429a9fd13f9" : "Soroban_authorization-classic_account_with_weights-single_call-failure_for_tree_with_missing_node", @@ -161,205 +157,189 @@ "370b65bf45bf359a" : "Soroban_footprint_validation-invokeHostFunction-readWrite-claimable_balance", "372873b046d26a73" : "transaction_validation_diagnostics", "375e418b328316a8" : "Soroban_classic_account_authentication-default_account-incomplete_signature", - "389a0818b81bb84d" : "basic_contract_invocation-protocol_version_27-insufficient_instructions", - "38cfd148d6296478" : "basic_contract_invocation-protocol_version_26-insufficient_instructions", "38d9c5df4335cbbf" : "Soroban_authorization-multisig_classic_account-wide_tree-unused_auth_entries-success_with_arbitrary_valid_function", + "393bdca30f6cfe37" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_deleted,_then_recreate_with_new_TX-same_stage", "394272a31b2f42f9" : "Soroban_footprint_validation-invokeHostFunction-readWrite-liquidity_pool", - "39cb1e990e856d1d" : "basic_contract_invocation-protocol_version_26-incorrect_invocation_parameters-too_few_parameters", "3abe7e7946b3a3aa" : "charge_rent_fees_for_storage_resize-resize_with_no_extend-failed_due_to_low_fee", "3ae3a09a2ac1bace" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_19", "3b0802ffb3b76400" : "Soroban_classic_account_authentication-default_account_with_additional_signer-missing_signature_field", - "3be02d8253170239" : "Soroban_delegated_signer_authentication-single_delegate-bad_delegate_payload", + "3b91093ca60bf8ca" : "basic_contract_invocation-protocol_version_28-insufficient_instructions", "3c1ebb13484322b9" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_2", "3c84ec0cd4e29a9e" : "Soroban_authorization-classic_account_with_weights-deep_tree-success", + "3da98fc3d352b14a" : "merge_account_then_SAC_payment_scenarios-protocol_version_28-SAC_payment_from_the_merged_account", "3db91544d5ae2281" : "settings_upgrade-from_init_settings", - "3e658e0ecfc377ad" : "multiple_soroban_ops_in_a_tx-protocol_version_26-with_fee_bump", "3ebb523abd74e1c1" : "readonly_ttl_bumps_across_threads_and_stages-extend_persistent_contract_function_across_stages", "3ed1bb2f1af2ea38" : "resource_fee_exceeds_uint32-other_account_fee_bump-failure-fee_bump_fee_is_not_sufficient_to_cover_the_resource_fee_with_low_resource_fee", "3ef1fb92602e14d5" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-manual_restore-across_stages", "3f41a40a5611b7d8" : "Soroban_authorization-classic_account_with_weights-single_call-unused_auth_entries-failure_with_malformed_function_name", - "402edcc32b71876e" : "archival_meta-protocol_version_27-persistent_entry_meta-restore_expired_but_not_evicted-restore,_update_value_in_next_tx-same_stage", "40cc10c2a3fe22f0" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_18", "40fc1592b7b8d9a7" : "Soroban_classic_account_authentication-default_account-wrong_field_order", - "4156bba62911258f" : "merge_account_then_SAC_payment_scenarios-protocol_version_27-SAC_payment_with_merged_account_as_source", - "416716038d1bf264" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_delete", "41a75a802c103130" : "Soroban_classic_account_authentication-default_account_with_additional_signer-success", - "4257d5b49a04ee9a" : "contract_storage-protocol_version_27-Same_ScVal_key,_different_types", + "41b156d3fa61a392" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_updated_value", + "426bf7e8fc76eaea" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_deleted,_then_recreate_with_new_TX-same_stage", + "429b2f1e9f48bfe9" : "source_account_of_first_tx_is_in_second_txs_footprint-protocol_version_28", "432866f9e4658727" : "Soroban_classic_account_authentication-default_account_with_additional_signer-uninitialized_map", "43509a8017a394ec" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-wrong_signature_name", - "4387bc73975627a6" : "archival_meta-protocol_version_27-persistent_entry_meta-entry_evicted-eviction_meta-manual_restore", "43aa6585c53544c0" : "Soroban_classic_account_authentication-default_account_with_additional_signer-uninitialized_vector_signature", - "43ab812359d242e5" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-autorestore,_delete_value_in_next_tx-across_stages", - "43caed795b61ad7c" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-autorestore,_delete_value_in_next_tx-same_stage", "43d0750bf32a8142" : "Soroban_authorization-classic_and_custom_accounts-single_call-success_for_tree_with_extra_nodes", "4403f2717365f3f1" : "Soroban_authorization-classic_and_custom_accounts-wide_tree-success_for_tree_with_extra_nodes", "444e7910e5721658" : "Soroban_authorization-default_classic_account-wide_tree-no_auth", - "44aed0d0d619653f" : "basic_contract_invocation-protocol_version_26-insufficient_read_bytes_before_p23", "44ed42af0c335da0" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_15", "45bb7c67fa144f76" : "Soroban_classic_account_authentication-account_with_required_multisig-empty_vector_signature", "45fafb2b89af5af9" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_7", "463cc045e4e770ef" : "loadgen_Wasm_executes_properly", "46841d2f33918f97" : "Soroban_authorization-multisig_classic_account-single_call-failure_for_tree_with_missing_node", - "46aeed7918681e81" : "archival_meta-protocol_version_27-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_delete", + "46b0acde0e911bc2" : "state_archival-protocol_version_28-max_TTL_extension-extension_op", "46bb33ad49f0924d" : "Soroban_authorization-classic_account_with_weights-single_call-no_auth", "46bc30f464b80820" : "Soroban_footprint_validation-invokeHostFunction-readWrite-valid", "46ee08cbe6a5345e" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_0", "471f63ec9db5a9dd" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_19", "472ac360b2cee870" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-claimable_balance", + "47ca3b5bf744ccaa" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_delete", "47efc2a10557bd97" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_0", "47fee2a3bc870ecc" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-autorestore,_delete,_then_create-same_stage", "485a9f1997660b04" : "Soroban_footprint_validation-autorestore_footprint-classic_key_marked_as_archived", "4876c2f30088ca20" : "Soroban_authorization-classic_account_with_weights-single_call-success_for_tree_with_extra_nodes", - "48c781bbceb21112" : "basic_contract_invocation-protocol_version_26-correct_invocation", "490a163425465416" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_9", + "490f1f4997c0b5d4" : "basic_contract_invocation-protocol_version_28-insufficient_refundable_resource_fee", "49689aae806682f8" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_16", - "498193fdba08697c" : "state_archival-protocol_version_27-contract_storage_archival-TTL_enforcement-entry_accessible_when_currentLedger_==_liveUntilLedger", "49f65f2d365f1cf2" : "Soroban_authorization-classic_and_custom_accounts-wide_tree-failure_for_tree_with_missing_node", "4a1932cf528ee7ca" : "Soroban_classic_account_authentication-account_with_required_multisig-wrong_key_name", "4a8c58a85988d163" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_4", "4aa2d8d102f584a4" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_16", "4ae7dbea4b507a75" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_5", + "4b48a6a4f275f4e1" : "basic_contract_invocation-protocol_version_28-incorrect_invocation_parameters-malformed_parameters", "4b4fde93869500d3" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_3", - "4b78ba479ffbf011" : "Soroban_delegated_signer_authentication-single_delegate-wrong_delegate_signature_type", "4b7e19f44373ff48" : "Soroban_footprint_validation-invokeHostFunction-readOnly-liquidity_pool", "4bc0adc4bfd824ae" : "Soroban_footprint_validation-invokeHostFunction-readOnly-claimable_balance", "4c5cc01aded482f8" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_18", "4cd30f7ebe173060" : "Soroban_classic_account_authentication-default_account-missing_key_field", "4db1a66114f8b194" : "Soroban_authorization-classic_account_with_weights-deep_tree-no_auth", - "4dd9d6e34a32ddf2" : "refund_to_source_in_tx1_and_SAC_transfer_from_same_account_in_tx2-protocol_version_27-failure", "4eaeadc112025f27" : "create_in_first_stage_delete_in_second_stage", - "4ebc63e7a17f728c" : "basic_contract_invocation-protocol_version_27-insufficient_refundable_resource_fee", "4ee0f3b0ffb1a967" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_18", + "4ef066d1bdf57a24" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_updated_value", "4ff86e8ec6d8f89c" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-empty_map", + "50b8c59ec9bdb6bf" : "classic_phase_sets_master_weight_of_soroban_source_account_to_0-protocol_version_28", + "50da3c19b259f60b" : "state_archival-protocol_version_28-contract_instance_and_Wasm_archival-restore_contract_instance_and_wasm", "51616f70e97b17d5" : "Soroban_authorization-classic_account_with_weights-single_call-unused_auth_entries-success_with_arbitrary_valid_function", "5171bdbde7eb7562" : "Soroban_authorization-custom_account-single_call-unused_auth_entries-failure_with_malformed_function_name", "519ee0e221d13e7a" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-data", "51e36c475d33d2bb" : "Soroban_authorization-classic_and_custom_accounts-single_call-unused_auth_entries-success_with_arbitrary_valid_function", "51f0bd683d0d5829" : "Soroban_authorization-classic_and_custom_accounts-wide_tree-unused_auth_entries-failure_with_long_malformed_function_name", "52c707bc77bf01f6" : "Module_cache_miss_on_immediate_execution-separate_ledger_upload_and_execution", - "5320263ea9731510" : "basic_contract_invocation-protocol_version_26-incorrect_invocation_parameters-too_many_parameters", "536297cefb569ed7" : "Soroban_authorization-custom_account-single_call-unused_auth_entries-success_with_arbitrary_valid_function", "5365a779053a148d" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_3", "53b461e8db0fddd1" : "Soroban_authorization-multisig_classic_account-single_call-success_for_tree_with_extra_nodes", + "53c11b905406d9ca" : "basic_contract_invocation-protocol_version_28-account_address", "540eac72b8688d25" : "Soroban_footprint_validation-invokeHostFunction-readOnly-native_asset_trustline", - "5416ca18f9a5fa27" : "state_archival_operation_errors-protocol_version_26-restore_operation-exceeded_writeBytes", "546a3cc311788248" : "Soroban_classic_account_authentication-account_with_weights-success_with_credentials_v2", - "54e3fdf28cd70bd4" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_deleted,_then_recreate_with_new_TX-across_stages", "54f8492f87d26b35" : "Soroban_authorization-default_classic_account-single_call-no_auth", + "55c7bac6754e8daf" : "contract_storage-protocol_version_28-Same_ScVal_key,_different_types", "569840c5704c5e44" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_16", "57207be4a3e12536" : "Soroban_classic_account_authentication-account_with_required_multisig-missing_key_field", "57659d96c64bd183" : "Soroban_classic_account_authentication-duplicate_signature_not_allowed_with_multisig", "5770d78319f7e869" : "resource_fee_exceeds_uint32-other_account_fee_bump-failure-fee_bump_fee_is_not_sufficient_to_cover_the_resource_fee", "585310a1b2f3c9e1" : "Soroban_classic_account_authentication-multiple_signers_with_insufficient_weight_not_authenticated", "588e655d03094c0e" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_13", - "5897c539e59df560" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-restore,_delete_value_in_next_tx-across_stages", "58d33db7d651fcd6" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_13", + "58e3b7a81b4b1fbc" : "state_archival_operation_errors-protocol_version_28-extend_operation-insufficient_refundable_fee", "59096fc089c399f5" : "parallel_txs-delete_and_re-create_persistent_entry_with_lower_TTL-across_stages", "594d4af3fbb90e26" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-restore,_delete,_restore-across_stages", "598b33597b504a5f" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-uninitialized_vector_signature", "59a15bc254310ed9" : "Soroban_classic_account_authentication-account_with_weights-missing_signature_field", "59a168278f646f8f" : "Soroban_authorization-classic_account_with_weights-single_call-success_with_duplicate_auth_entries", - "59c181d5ff7acc7e" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-autorestore,_delete_value_in_next_tx-same_stage", + "5a067d6f1a7c300f" : "state_archival-protocol_version_28-contract_instance_and_Wasm_archival-restore_contract_Wasm,_not_instance", "5b5419e7ec6c21c3" : "Soroban_authorization-classic_and_custom_accounts-deep_tree-unused_auth_entries-failure_with_long_malformed_function_name", - "5bd72d146c15215c" : "state_archival-protocol_version_26-contract_instance_and_Wasm_archival-restore_contract_Wasm,_not_instance", - "5da4c3861d2a2428" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-restore,_delete_value_in_next_tx-same_stage", - "5e6b825862f70957" : "archival_meta-protocol_version_27-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_updated_value", "5e733f15f9fe6c15" : "parallel_txs_hit_declared_readBytes-restore", "5e8558b4e95d77a3" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-liquidity_pool", - "5e95d63123990f96" : "classic_payment_source_same_as_soroban_fee_bump_source-protocol_version_26", - "5f0e7c9e5b14d2fa" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_deleted,_then_recreate_with_new_TX-same_stage", + "5eed63dee9c1b99a" : "Soroban_classic_account_authentication-default_account_with_additional_signer-wrong_signature_key_type", + "5f484e7d113eb7b9" : "basic_contract_invocation-protocol_version_28-malformed_function_names", "5f7b6356a31b9872" : "Soroban_classic_account_authentication-default_account-wrong_signature_type", "6031e1f0663cfda5" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_13", "608765b88758cdff" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-liquidity_pool", "60d32d465e9ef646" : "Soroban_authorization-classic_account_with_weights-deep_tree-unused_auth_entries-failure_with_malformed_function_name", "6172930301eec1db" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-empty_vector_signature", "61aaf65d2d2be2df" : "Soroban_authorization-multisig_classic_account-wide_tree-success_for_tree_with_extra_nodes", + "61c90fa30af7ebec" : "state_archival-protocol_version_28-contract_storage_archival-write_does_not_increase_TTL", "61f1ec50d0457920" : "Soroban_authorization-default_classic_account-wide_tree-success", - "622a635fa0e892e7" : "Soroban_delegated_signer_authentication-single_delegate-void_delegate_signature", "62ae728143dd1ae3" : "Soroban_authorization-default_classic_account-single_call-failure_for_tree_with_missing_node", "630112e28640b3dc" : "Soroban_classic_account_authentication-default_account_with_additional_signer-incomplete_signature", - "63050b4296b7bd70" : "Soroban_delegated_signer_authentication-deep_delegate_tree-above_depth_limit", "633ede77405d5244" : "contract_constructor_support-constructor_with_arguments_and_auth", "63973d7e63330d22" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_23", "63bf3b0d817b48a3" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-native_asset_trustline", + "63eb63e8c2c13d4e" : "state_archival-protocol_version_28-contract_storage_archival-TTL_enforcement-entry_accessible_when_currentLedger_==_liveUntilLedger", "6445b19d68f45e62" : "Soroban_authorization-default_classic_account-deep_tree-success_for_tree_with_extra_nodes", - "6452cb6f030f5835" : "Soroban_delegated_signer_authentication-single_delegate-successful_authentication", "647908425725f18e" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_18", "64c67c03ad8477ca" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_20", "64def0179fc4dbe6" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_10", "6519e434acf354b7" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_9", "659ac68c6d773240" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-contract_data_key_above_limit", - "65a4f7bacbc7afa1" : "classic_phase_bumps_sequence_of_soroban_source_account-protocol_version_27", + "65be2448771fb442" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-restore,_delete_value_in_next_tx-same_stage", "65d4ab7a4ee03638" : "contract_errors_cause_transaction_to_fail-ok_val_err", "660ffaf163aa3a0d" : "Soroban_authorization-custom_account-single_call-unused_auth_entries-failure_with_long_malformed_function_name", "666cc90ebbdab3dd" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-missing_key_field", "66755facd883bef4" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-offer", "6716ff61cd9b5a3f" : "Soroban_authorization-multisig_classic_account-single_call-success_with_duplicate_auth_entries", "675cca94471892a1" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_4", + "6781141559d52ed3" : "basic_contract_invocation-protocol_version_28-insufficient_read_bytes_after_p23", "678620649d7edfe9" : "persistent_entry_archival-eviction-key_accessible_after_restore-autorestore", "67c57dc9f673aa9e" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-wrong_field_order", - "6816f0c97293fa83" : "trustline_deletion_then_SAC_payment-protocol_version_27", "68392e6abed97fb5" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-autorestore-same_stage", "6856b0b044010cae" : "Soroban_custom_account_authentication-successful_authentication", - "686a3a2a7946fa12" : "state_archival-protocol_version_27-contract_storage_archival-extendOp_when_currentLedger_==_liveUntilLedger", + "68cbff25009fe342" : "basic_contract_invocation-protocol_version_28-non-existent_contract_id", "68f165975379ef6f" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-config_setting", "69051a1b441d9996" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_8", + "691cd6b55fa9a9fb" : "state_archival_operation_errors-protocol_version_28-restore_operation-success", "69abe494995566fb" : "Soroban_authorization-classic_and_custom_accounts-deep_tree-unused_auth_entries-success_with_arbitrary_valid_function", "69d72740ac448701" : "Soroban_authorization-classic_and_custom_accounts-wide_tree-unused_auth_entries-success_with_arbitrary_valid_function", - "69ea6faa228bf063" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_deleted,_then_recreate_with_new_TX-same_stage", "6a0fcad7207a7356" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_18", "6a5c2ecc147d9ba9" : "parallel_restore_and_update", - "6a620fbe985dd6c3" : "archival_meta-protocol_version_27-persistent_entry_meta-entry_evicted-eviction_meta-autorestore,_delete_value_in_next_tx-across_stages", "6b1bba1cde19195d" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-config_setting", "6b7ea8905416d282" : "contract_constructor_support-constructor_with_no_arguments-v1_host_function,_v1_auth", "6be1723f2de82c90" : "Soroban_classic_account_authentication-default_account_with_additional_signer-wrong_key_name", "6c7ee12d6e1882df" : "Soroban_authorization-default_classic_account-single_call-success", - "6c96764439456a9a" : "contract_storage-protocol_version_27-footprint-no_footprint", "6ca3ca208041d5d9" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_10", - "6db81f07c56cd237" : "refund_still_happens_on_bad_auth-protocol_version_27", + "6d661fda6fedbadc" : "state_archival-protocol_version_28-contract_storage_archival-extendOp_when_currentLedger_==_liveUntilLedger", "6de1fadf0f1a6789" : "version_test", "6e020886d77520ee" : "Soroban_authorization-classic_account_with_weights-deep_tree-unused_auth_entries-failure_with_long_malformed_function_name", "6e0258e8cfa3ab47" : "Soroban_footprint_validation-extendOp-valid", - "6e088a4585762b89" : "state_archival-protocol_version_27-conditional_TTL_extension-calculate_refund", "6e1d5421cf61b82d" : "Soroban_authorization-classic_and_custom_accounts-deep_tree-no_auth", - "6e4f201baf180e8f" : "contract_storage-protocol_version_27-footprint-unused_readWrite_key", + "6e2ec29147b7b931" : "archival_meta-protocol_version_28-Create_temp_entry_with_same_key_as_an_expired_entry_on_eviction_ledger", "6f27e3a9c63fca5b" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-data", "6f3467c6e13a1648" : "Soroban_footprint_validation-extendOp-readWrite_set_with_Soroban_key", "6fe7ad5169387958" : "parallel_txs-basic_test", "6ffafbc029e47549" : "Soroban_authorization-default_classic_account-wide_tree-success_for_tree_with_extra_nodes", "701983d81c015a60" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_12", - "709174bd5006953a" : "archival_meta-protocol_version_27-persistent_entry_meta-restore_expired_but_not_evicted-restore,_update_value_in_next_tx-across_stages", "70b7679c1de24a4b" : "Soroban_authorization-custom_account-single_call-failure_for_tree_with_missing_node", - "711a5390f886c7ff" : "basic_contract_invocation-protocol_version_26-account_address", "714af0a63932eb6b" : "Soroban_authorization-multisig_classic_account-single_call-unused_auth_entries-success_with_arbitrary_valid_function", "71db73c744a926be" : "Soroban_footprint_validation-soroban_entries-archived_entries-max_+_1", "725278041cf421e0" : "Soroban_authorization-default_classic_account-single_call-unused_auth_entries-failure_with_malformed_function_name", "729f8af24dc7fbd8" : "autorestore_with_storage_resize-autorestore", "72e32d5e4cbe23f2" : "delete_non_existent_entry_with_parallel_apply", + "734335eb1ab5000f" : "refund_still_happens_on_bad_auth-protocol_version_28", "73d97239afd1a289" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-wrong_signature_type", "7476d7d3f060cf1d" : "overly_large_soroban_values_are_handled_gracefully-event_data", - "749c8a69d4dfde05" : "state_archival_operation_errors-protocol_version_27-extend_operation-success", + "748c7e19021ce5e2" : "contract_storage-protocol_version_28-write_bytes_limit_enforced", "749d86ef2b83de64" : "Soroban_footprint_validation-autorestore_footprint-valid_keys", "74cb309604b87ad5" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_12", + "74eec9cae165fa50" : "state_archival-protocol_version_28-contract_instance_and_Wasm_archival-restore_contract_instance,_not_wasm", + "755302381dc99f66" : "basic_contract_invocation-protocol_version_28-incorrect_footprint", "7560b4ebec62de03" : "Soroban_authorization-classic_and_custom_accounts-single_call-success_with_duplicate_auth_entries", - "7568bb8f0982c3e1" : "refund_to_source_in_tx1_and_SAC_transfer_from_same_account_in_tx2-protocol_version_27-success", "75a857ffd876a72d" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_1", - "76059f3fbf0f12ce" : "classic_phase_sets_master_weight_of_soroban_source_account_to_0-protocol_version_27", "7623428964713c55" : "Soroban_authorization-multisig_classic_account-wide_tree-failure_for_tree_with_missing_node", "7624c43e428ee32d" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_4", "763b53bb30a2499d" : "Soroban_footprint_validation-classic_entries_counted_as_disk-read_only-max_+_1", "77904c0e7819a7eb" : "Soroban_authorization-default_classic_account-wide_tree-failure_for_tree_with_missing_node", "77b0f96ee78d5679" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_5", + "77f16a104596eb69" : "validate_return_values-protocol_version_28", "7811a2db272e2bc5" : "Soroban_authorization-multisig_classic_account-single_call-no_auth", "781c971d7b58563a" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_15", "78d19632e893bee4" : "persistent_entry_archival-expiration_without_eviction-restore_with_nonexistent_key", "7974f01f0568597f" : "autorestore_with_storage_resize-autorestore_with_rent_bump_and_resize", - "79c1100f9d245b7a" : "state_archival_operation_errors-protocol_version_27-restore_operation-success", - "7a1c55d49a8e88da" : "archival_meta-protocol_version_27-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_deleted,_then_recreate_with_new_TX-same_stage", + "79e52eb41531b9e3" : "refund_to_source_in_tx1_and_SAC_transfer_from_same_account_in_tx2-protocol_version_28-success", + "7ab8a5bbd143dfa8" : "state_archival_operation_errors-protocol_version_28-extend_operation-success", "7af34c851b5af2ba" : "Soroban_classic_account_authentication-default_account-success_with_credentials_v2", "7b24f552eb083ed6" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_19", - "7b7c95deffd18889" : "state_archival-protocol_version_27-max_TTL_extension-extend_host_function_persistent", - "7be77ec5fe6752ae" : "basic_contract_invocation-protocol_version_27-incorrect_footprint", "7c3fa2905342aef3" : "Soroban_classic_account_authentication-default_account_with_additional_signer-empty_vector_signature", "7c588d1eada8e956" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_14", "7c7ac7fe41e94018" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_17", @@ -367,12 +347,10 @@ "7cf5a062e427a3b3" : "Soroban_custom_account_authentication-void_signature", "7db90301e11fa5d0" : "Soroban_classic_account_authentication-account_with_required_multisig-wrong_key_type", "7dd9f6410b671c2f" : "overly_large_soroban_values_are_handled_gracefully-store_key", + "7e2cf78094517d5a" : "non-fee_source_account_is_recipient_of_payment_in_both_classic_and_soroban-protocol_version_28", "7f1fec7fe0be9e43" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_13", - "7f4f40cb7a2fbb6f" : "state_archival-protocol_version_26-contract_instance_and_Wasm_archival-restore_contract_instance,_not_wasm", "7f737b8fa30b66b4" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_6", "7f7e72aa985692ae" : "Soroban_classic_account_authentication-account_with_required_multisig-wrong_signature_order", - "80a11f0f32de97dd" : "basic_contract_invocation-protocol_version_27-account_address", - "81176083f7d715c7" : "refund_is_sent_to_fee-bump_source-protocol_version_27", "811ecb1190787c4f" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_20", "81c974086b0e4f56" : "Soroban_custom_account_authentication-owner_change", "824743daeb17e7e9" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_21", @@ -380,14 +358,9 @@ "83f9b0ae9387fa6d" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-contract_data_key_above_limit", "841b5a633ba3dcd4" : "Soroban_authorization-custom_account-single_call-success", "84315cd6d68b5749" : "Soroban_authorization-classic_account_with_weights-single_call-unused_auth_entries-failure_with_long_malformed_function_name", - "8433fde0f0bbd2f7" : "basic_contract_invocation-protocol_version_26-insufficient_refundable_resource_fee", "843c6cc8cb69c839" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_1", - "846ca1ad625e9ea7" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_updated_value", - "846db27a79a2ec7d" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-autorestore", - "8557bde173bf4813" : "archival_meta-protocol_version_27-persistent_entry_meta-entry_evicted-eviction_meta-restore,_delete_value_in_next_tx-same_stage", "858ea3c6fa587d2c" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_11", "860c9ebb141ea269" : "Soroban_classic_account_authentication-default_account-missing_signature_field", - "865eb531cfdba544" : "contract_storage-protocol_version_27-write_bytes_limit_enforced", "8666b7f3149900ec" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-incomplete_key", "86c090d2b24bc515" : "Soroban_footprint_validation-classic_entries_counted_as_disk-read_write-max_+_1", "86ec0b605b279d49" : "Soroban_classic_account_authentication-account_with_required_multisig-wrong_signature_name", @@ -397,183 +370,150 @@ "887c083fc1639e43" : "Soroban_authorization-classic_account_with_weights-wide_tree-unused_auth_entries-failure_with_malformed_function_name", "8900d5bd1b2b9f70" : "Soroban_footprint_validation-invokeHostFunction-readWrite-issuer_trustline", "891a276e7ce06b91" : "Soroban_authorization-multisig_classic_account-deep_tree-success_for_tree_with_extra_nodes", - "894fd4e0f979d673" : "refund_is_sent_to_fee-bump_source-protocol_version_26", "895b3456160d157c" : "Soroban_authorization-classic_account_with_weights-deep_tree-unused_auth_entries-success_with_arbitrary_valid_function", "897ee371b2a80230" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-autorestore_then_delete", "898221ce90bbe12a" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-autorestore_then_delete", "89f9145d00c68451" : "overly_large_soroban_values_are_handled_gracefully-event_topic", - "89fc4f3bfc2e66a6" : "trustline_deletion_then_SAC_payment-protocol_version_26", - "8a4997adf65f1f5e" : "archival_meta-protocol_version_27-temp_entry_meta", "8adead0567fe7d71" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-native_asset_trustline", "8b13d91d773c9085" : "Soroban_authorization-custom_account-wide_tree-success_with_duplicate_auth_entries", - "8b327a3e8ca7a777" : "state_archival-protocol_version_26-conditional_TTL_extension-absolute_refund", - "8b6fc74220d12dc7" : "archival_meta-protocol_version_27-persistent_entry_meta-entry_evicted-eviction_meta-autorestore", - "8c1e0ede96cc0dbf" : "state_archival-protocol_version_27-contract_storage_archival-write_does_not_increase_TTL", "8cf745afc0a51283" : "Soroban_footprint_validation-soroban_entries-archived_entries-max", "8d0a24bb396f996d" : "parallel_txs-delete_and_re-create_temporary_entry_with_lower_TTL-across_stages", "8dd5261011c6c3bc" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_16", "8dfbc063af86ec35" : "overly_large_soroban_values_are_handled_gracefully-store_in_instance_storage", - "8e8e3849c9d329b6" : "archival_meta-protocol_version_27-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_deleted,_then_recreate_with_new_TX-across_stages", "8e99b44b297caaac" : "Soroban_footprint_validation-restoreOp-valid", - "8f46b4013f8e249b" : "archival_meta-protocol_version_26-Create_temp_entry_with_same_key_as_an_expired_entry_on_eviction_ledger", + "8f96b2243358519a" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-autorestore", + "8f9963180cf54ace" : "archival_meta-protocol_version_28-temp_entry_meta", "8fa77a7691d9a43d" : "Soroban_classic_account_authentication-account_with_required_multisig-missing_signature_field", - "90153646e94af892" : "state_archival-protocol_version_26-max_TTL_extension-extend_host_function_persistent", "908acbd3aceb8316" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_11", - "90bf93d9cc8919fb" : "fee_bump_inner_account_merged_then_used_as_inner_account_on_soroban_fee_bump-protocol_version_26", "90d44cefcaf5f29b" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-incomplete_signature", "91eb7b4592150c3e" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_6", "9209c586bd226b99" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_6", - "920a1fad5ca8a29b" : "state_archival-protocol_version_26-contract_instance_and_Wasm_archival-lifetime_extensions", "9245f43fc2fba8b0" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-offer", - "924e5b97b225be05" : "archival_meta-protocol_version_27-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_updated_value", - "92680c457fe83aa7" : "state_archival_operation_errors-protocol_version_26-restore_operation-success", "92b288c4d95b05f9" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-autorestore,_delete,_then_has-across_stages", "930b08e2d077bfdc" : "Soroban_classic_account_authentication-account_with_weights-uninitialized_vector_signature", "932641f2b5405789" : "overly_large_soroban_values_are_handled_gracefully-return_value", "93481a30a4ea3f79" : "Soroban_authorization-custom_account-deep_tree-unused_auth_entries-success_with_arbitrary_valid_function", + "93b030d05e31f59e" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-restore,_delete_value_in_next_tx-across_stages", "93ba029750a86166" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_20", "940e8bdc84f9af94" : "readonly_ttl_bumps_across_threads_and_stages-readonly_ttl_bumps_with_mixed_stages", "9435de885ff30026" : "Soroban_authorization-custom_account-wide_tree-no_auth", "94f5f9a57e087669" : "overly_large_soroban_values_are_handled_gracefully-serialize", - "94faf61bbc28fffa" : "merge_account_then_SAC_payment_scenarios-protocol_version_27-SAC_payment_from_the_merged_account", - "955397e091e35fad" : "archival_meta-protocol_version_26-temp_entry_meta", "9592b7d06c5fd16c" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_12", - "959828d2eba03d9c" : "basic_contract_invocation-protocol_version_27-non-existent_contract_id", "95dc94b3567bf81b" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_5", "95dfceb1b6e1c811" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_10", "95ede71a6074dc1b" : "Soroban_authorization-custom_account-wide_tree-success", "964450cc2eb51081" : "Soroban_classic_account_authentication-default_account-wrong_key_type", - "96690328bd10efc5" : "refund_test_with_closeLedger-protocol_version_26", - "97afc8ac2ddb94d7" : "basic_contract_invocation-protocol_version_27-malformed_function_names", "98958916fd28f843" : "autorestore_contract_instance-autorestore_fees", - "98dd9afc9aec58e3" : "state_archival-protocol_version_26-contract_storage_archival-write_does_not_increase_TTL", "99541d3371b2ebcf" : "Module_cache_across_protocol_versions", + "99cfc2b1081eda32" : "Soroban_classic_account_authentication-account_with_weights-wrong_signature_key_type", "9a2c38c5272df06c" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_14", "9a4d995b45b4db13" : "Soroban_footprint_validation-autorestore_footprint-index_out_of_bounds", "9abda59d0cea408b" : "Soroban_classic_account_authentication-duplicate_signature_not_allowed_with_sufficient_single_signature_threshold", "9b5ea22fe53632fe" : "Soroban_footprint_validation-invokeHostFunction-readOnly-data", - "9b7aa5eb73370090" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-restore,_delete_value_in_next_tx-across_stages", - "9bd255e6ae916270" : "state_archival_operation_errors-protocol_version_27-extend_operation-too_large_extension", "9c169e4a17366ef4" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_16", "9c319f6ebbf74238" : "Soroban_authorization-multisig_classic_account-wide_tree-unused_auth_entries-failure_with_malformed_function_name", "9c797412cd0d11b5" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_14", - "9c99d2135d9d7d77" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-restore,_update_value_in_next_tx-same_stage", "9cbd66b8c4018c16" : "Soroban_authorization-classic_account_with_weights-deep_tree-failure_for_tree_with_missing_node", "9ccccec1202f5b81" : "resource_fee_exceeds_uint32-self_fee_bump-failure-fee_bump_fee_is_not_sufficient_to_cover_the_resource_fee_with_high_inclusion_fee", - "9de975c631418bb4" : "Trustline_stellar_asset_contract-protocol_version_27", - "9e44fefde737f8bc" : "contract_storage-protocol_version_26-footprint-RO_footprint_for_RW_entry", - "9e7665dc9e35c9d3" : "non-fee_source_account_is_recipient_of_payment_in_both_classic_and_soroban-protocol_version_27", "9e7d59169e4ded64" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-wrong_key_type", "9e81b4f36cfd3af7" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_7", "9f130c1b0c7b7a7a" : "Soroban_classic_account_authentication-account_with_weights-wrong_signature_type", "9f280040dbfe9ebd" : "overly_large_soroban_values_are_handled_gracefully-store_in_instance_storage_key", "9fa92df05d0615bf" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-restore,_delete,_restore-delete_in_same_stage_as_first_restore", "a0119ab86c638bee" : "Soroban_footprint_validation-autorestore_footprint-entry_in_readOnly_footprint", - "a0964aad16627449" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-restore,_update_value_in_next_tx-across_stages", "a0b7e7243a96c9c6" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_4", "a0d59eaf3b79413c" : "Soroban_authorization-default_classic_account-deep_tree-success_with_duplicate_auth_entries", "a0fd94b0902a1c7f" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-manual_restore-same_stage", "a258cc5505846d79" : "Soroban_authorization-classic_account_with_weights-wide_tree-success_for_tree_with_extra_nodes", "a4453c1269875574" : "parallel_txs_hit_declared_readBytes-invoke", - "a472c5e6b0b3d40c" : "source_account_of_first_tx_is_in_second_txs_footprint-protocol_version_27", - "a4f13a2fa6293428" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_delete", "a71e4d9203d52748" : "Soroban_authorization-classic_and_custom_accounts-single_call-no_auth", "a72c947ed7b434d3" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_2", - "a7a45d93c64cf3d9" : "Soroban_delegated_signer_authentication-deep_delegate_tree-significantly_above_depth_limit", "a80621eee94baae6" : "Soroban_classic_account_authentication-account_with_required_multisig-uninitialized_vector_signature", "a8a9725a33441cb5" : "Soroban_classic_account_authentication-default_account_with_additional_signer-wrong_signature_type", "a8d1cb44f470573f" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-autorestore-across_stages", "a904442b4503e607" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_8", "a94afbf4a15753e8" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-uninitialized_map", "a9af3a29cf25b4d2" : "Soroban_authorization-classic_and_custom_accounts-single_call-unused_auth_entries-failure_with_long_malformed_function_name", + "aa167c6283a763db" : "contract_storage-protocol_version_28-footprint-unused_readWrite_key", "aa53f5c640a1c97e" : "resource_fee_exceeds_uint32-self_fee_bump-success-low_inclusion_fee", - "aa722688a0fedfc0" : "refund_account_merged-protocol_version_26", - "aae06d9411888821" : "basic_contract_invocation-protocol_version_27-insufficient_read_bytes_after_p23", "ab3bce4773581342" : "Soroban_authorization-custom_account-deep_tree-unused_auth_entries-failure_with_long_malformed_function_name", - "ab898f0b7ce30529" : "classic_phase_bumps_sequence_of_soroban_source_account-protocol_version_26", "abe9daab6e04747a" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_0", "ac9dbf09c7cb19e8" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_18", "ad00903073e6c1d2" : "Soroban_authorization-classic_account_with_weights-wide_tree-failure_for_tree_with_missing_node", "ad19485cea9fa38c" : "read-only_bumps_across_threads", "ae601103b9e4498d" : "Soroban_authorization-classic_and_custom_accounts-deep_tree-failure_for_tree_with_missing_node", "aec6a7cfd3c1af73" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_5", + "aedd27a8939d199b" : "basic_contract_invocation-protocol_version_28-incorrect_invocation_parameters-too_many_parameters", "aef8c4cf49c5cce1" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_8", "af54a98dbdd88b52" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-TTL_entry", "afa256621921b22e" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-issuer_trustline", "afe35bda9ebb3f2c" : "Soroban_authorization-multisig_classic_account-deep_tree-failure_for_tree_with_missing_node", - "b0401e90e28f708e" : "multiple_soroban_ops_in_a_tx-protocol_version_27-without_fee_bump", "b045bf491859a6b8" : "Soroban_authorization-custom_account-deep_tree-no_auth", "b064c60719fa9bec" : "Soroban_footprint_validation-classic_entries_counted_as_disk-read_write-max", - "b07277fd54b0b7bc" : "Soroban_delegated_signer_authentication-single_delegate-empty_top-level_enum_signature", - "b10cae19c938ae9a" : "archival_meta-protocol_version_27-persistent_entry_meta-restore_expired_but_not_evicted-restore,_delete_value_in_next_tx-same_stage", "b136f91677750cd4" : "contract_errors_cause_transaction_to_fail-err_eek", "b149a7eb981b5ed6" : "autorestore_contract_instance-restore_with_no_writes-classic_entries_count_towards_read_bytes-classic_keys_count_towards_read_bytes", - "b169a02913bbd1c1" : "state_archival-protocol_version_27-conditional_TTL_extension-absolute_refund", + "b19f5bf32940c80d" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-restore,_delete_value_in_next_tx-across_stages", "b1d5a1bda5b51e5b" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_17", - "b2504084ae27cf3f" : "basic_contract_invocation-protocol_version_27-incorrect_invocation_parameters-too_few_parameters", + "b20d08c08e32c884" : "state_archival_operation_errors-protocol_version_28-restore_operation-exceeded_readBytes", + "b295e5d7cd1ec038" : "fee_bump_refund_account_merged-protocol_version_28", "b3082e3bcd3a078c" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-autorestore-same_stage", "b3101bb9f07292f5" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_1", "b3437be97f124777" : "Soroban_authorization-classic_and_custom_accounts-deep_tree-success", "b34f3ecaf4fdb062" : "Soroban_classic_account_authentication-default_account-success", - "b3551c1c4d83c811" : "basic_contract_invocation-protocol_version_27-incorrect_invocation_parameters-too_many_parameters", "b3f7fce5e8492f2e" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_16", "b4148adbbba04047" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-restore,_delete,_restore-same_stage", + "b416ed58e16fa07d" : "state_archival-protocol_version_28-conditional_TTL_extension-absolute_refund", + "b457c6cb2cf0da70" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-autorestore,_delete_value_in_next_tx-same_stage", "b5a503183a69e95f" : "contract_errors_cause_transaction_to_fail-ok_err", + "b5db087139748e93" : "Soroban_classic_account_authentication-default_account-wrong_signature_key_type", "b5e418a8a8cf65b9" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_2", - "b5fa55495e17de95" : "state_archival-protocol_version_27-max_TTL_extension-extension_op", "b652542975ff5560" : "persistent_entry_archival-eviction-key_accessible_after_restore-restore_op", - "b6ce7aade1aed1e3" : "state_archival_operation_errors-protocol_version_26-extend_operation-success", - "b71e067496723cb3" : "multiple_soroban_ops_in_a_tx-protocol_version_26-without_fee_bump", - "b74618989cc0605c" : "Soroban_non-refundable_resource_fees_are_stable-protocol_version_26", - "b7b912f58baee8ea" : "archival_meta-protocol_version_27-persistent_entry_meta-restore_expired_but_not_evicted-restore,_delete_value_in_next_tx-across_stages", "b7db472d275c4797" : "autorestore_contract_instance-restore_with_no_writes-insufficient_read_bytes", - "b808b59ac14049b2" : "state_archival-protocol_version_26-max_TTL_extension-extend_host_function_temp", "b9862c0b86a145aa" : "Soroban_authorization-default_classic_account-single_call-unused_auth_entries-failure_with_long_malformed_function_name", + "b9a60ebb460b7c41" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-restore,_delete_value_in_next_tx-same_stage", "b9bdda6eada575ea" : "Soroban_authorization-classic_and_custom_accounts-wide_tree-success", "ba8824d29063376f" : "resource_fee_exceeds_uint32-other_account_fee_bump-success-inclusion_fee_exceeds_uint32", "ba9e85782489d4b3" : "Soroban_authorization-default_classic_account-single_call-unused_auth_entries-success_with_arbitrary_valid_function", "baa71b7a006a3951" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-TTL_entry", "bb10b7a54991da41" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_3", - "bd0e2c7d9d444eb7" : "state_archival_operation_errors-protocol_version_26-extend_operation-readBytes_limit", + "bb90c142fc6d2475" : "state_archival_operation_errors-protocol_version_28-restore_operation-insufficient_refundable_fee", + "bc4e53b6b14ed910" : "Soroban_classic_account_authentication-account_with_required_multisig-wrong_signature_key_type", + "bc6d1b280111560a" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-autorestore", + "bca8245505310e26" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-restore,_update_value_in_next_tx-across_stages", "bd7ec9becd2cf279" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_9", "bdf21d276e44df51" : "Soroban_classic_account_authentication-account_with_required_multisig-success", "bdfcd5f448d7a9cd" : "Soroban_authorization-multisig_classic_account-deep_tree-unused_auth_entries-failure_with_malformed_function_name", "be52cd7f42814b0a" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-autorestore,_delete,_then_create-across_stages", "be6ebb5f038aa456" : "Soroban_classic_account_authentication-account_with_too_high_med_threshold_not_authenticated", + "be8c8e64b30e9fc1" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-restore,_update_value_in_next_tx-across_stages", "be9fcc614f398cf3" : "Soroban_footprint_validation-invokeHostFunction-readOnly-contract_data_key_above_limit", "bec5319840022194" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_11", "bec915835775f88a" : "Soroban_classic_account_authentication-default_account_with_additional_signer-wrong_signature_order", "beed566485392053" : "Soroban_footprint_validation-autorestore_footprint-duplicate_entries", "beee405585556b28" : "Soroban_authorization-custom_account-wide_tree-unused_auth_entries-failure_with_long_malformed_function_name", "bf27f88df8fb68c5" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-missing_signature_field", - "bf6b1019d0b7569d" : "Soroban_delegated_signer_authentication-single_delegate-wrong_top-level_signature_type", - "bf98f153a8789f78" : "state_archival_operation_errors-protocol_version_26-extend_operation-too_large_extension", "bfa396d5747102ff" : "Soroban_authorization-multisig_classic_account-single_call-success", "bfab28e80790dd46" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_22", "c03bbceaf1428236" : "readonly_ttl_bumps_across_threads_and_stages-multiple_readonly_ttl_bumps_across_stages", - "c07830e846670e5d" : "merge_account_then_SAC_payment_scenarios-protocol_version_26-SAC_payment_from_the_merged_account", + "c06470e7654bc2b1" : "state_archival-protocol_version_28-max_TTL_extension-extend_host_function_temp", + "c0e8033d91a1c841" : "state_archival-protocol_version_28-max_TTL_extension-extend_host_function_persistent", "c18c912409884beb" : "Soroban_classic_account_authentication-default_account_with_additional_signer-empty_map", - "c1a3227b9d15d7db" : "classic_payment_to_soroban_fee_bump_account-protocol_version_27", "c1b1663060d151c0" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_6", "c1b4226571cd3ae1" : "Soroban_authorization-multisig_classic_account-deep_tree-no_auth", "c1c7ac4fa5ae147c" : "Soroban_classic_account_authentication-duplicate_signature_not_allowed_with_multisig_and_insufficient_threshold", "c252cebb25294eab" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_6", - "c255cd77235ad3c4" : "basic_contract_invocation-protocol_version_26-insufficient_read_bytes_after_p23", "c2ac55826ca7e6de" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-autorestore,_delete,_then_has-across_stages", "c2c932cf464209f1" : "Soroban_footprint_validation-invokeHostFunction-readWrite-config_setting", - "c312c5d7aa1dfb38" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_deleted,_then_recreate_with_new_TX-across_stages", - "c36cbaffe2709df8" : "contract_storage-protocol_version_26-Same_ScVal_key,_different_types", "c3962c4a93291d74" : "Soroban_authorization-classic_account_with_weights-deep_tree-success_for_tree_with_extra_nodes", "c3bb0eae31d31633" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_9", - "c443a7bba49e0e10" : "state_archival_operation_errors-protocol_version_26-extend_operation-insufficient_refundable_fee", - "c455542f23c8635a" : "refund_still_happens_on_bad_auth-protocol_version_26", + "c598120b02e657a7" : "fee_bump_inner_account_merged_then_used_as_inner_account_on_soroban_fee_bump-protocol_version_28", "c5d57c89c419e4af" : "Soroban_authorization-multisig_classic_account-single_call-unused_auth_entries-failure_with_long_malformed_function_name", "c5f89e8c3c843590" : "resource_fee_exceeds_uint32-other_account_fee_bump-success-inclusion_fee_and_refund_exceed_uint32", - "c677964e9c2cb9f6" : "state_archival_operation_errors-protocol_version_27-restore_operation-insufficient_refundable_fee", + "c645124e1d97c334" : "state_archival-protocol_version_28-contract_storage_archival-entry_accessible_when_currentLedger_==_liveUntilLedger", + "c6aec74706bb6238" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_deleted,_then_recreate_with_new_TX-across_stages", "c6c3d9865a04db5b" : "Soroban_classic_account_authentication-account_with_weights-incomplete_key", "c6d25066860431e0" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_8", - "c80cfb603215a760" : "basic_contract_invocation-protocol_version_27-incorrect_invocation_parameters-malformed_parameters", - "c81666a24e4770bd" : "contract_storage-protocol_version_26-read_bytes_limit_enforced", + "c866aa143d53bf2c" : "basic_contract_invocation-protocol_version_28-incorrect_invocation_parameters-too_few_parameters", "c89523486b59f106" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_2", "c8b43ab94c4aada0" : "resource_fee_exceeds_uint32-self_fee_bump-failure-fee_bump_fee_is_not_sufficient_to_cover_the_resource_fee", "c8f28ce0094c5916" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_3", @@ -584,17 +524,13 @@ "c9a9eaa405e6134c" : "failure_diagnostics", "c9dbd32afe107afb" : "Soroban_authorization-classic_and_custom_accounts-wide_tree-success_with_duplicate_auth_entries", "c9eca15bdeb9bf48" : "complex_contract-diagnostics_enabled", - "ca0691e9261af616" : "state_archival-protocol_version_27-contract_instance_and_Wasm_archival-lifetime_extensions", "ca44bb06db470a22" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-config_setting", - "ca650e4c7b90fa84" : "state_archival-protocol_version_27-max_TTL_extension-extend_host_function_temp", "ca81ee3779279e5f" : "Soroban_authorization-custom_account-single_call-incorrect_signature_payload", "ca96297c5d814422" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_5", "cab764de9b6ee4b7" : "Soroban_authorization-custom_account-deep_tree-success_for_tree_with_extra_nodes", "cb9097b6c1c38bdd" : "Soroban_classic_account_authentication-account_with_weights-empty_map", - "cc8e5617818c25e6" : "state_archival-protocol_version_26-contract_storage_archival-TTL_enforcement-restoreOp_skips_when_currentLedger_==_liveUntilLedger", "cc952a3d07337931" : "Soroban_authorization-custom_account-deep_tree-failure_for_tree_with_missing_node", "ccda2d8c73bceae6" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_2", - "cd577b89ed04d414" : "refund_to_source_in_tx1_and_SAC_transfer_from_same_account_in_tx2-protocol_version_26-success", "cd9b67cc851ef13d" : "autorestore_contract_instance-missing_archived_key_index", "cdc0fbbed34915f1" : "Soroban_classic_account_authentication-default_account-empty_vector_signature", "ce5735da86b32673" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-restore,_delete,_restore-same_stage", @@ -603,60 +539,49 @@ "ce8d1ee97a0d686d" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_13", "cebea90af92b39d2" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-success", "ced5e149f8263218" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_6", + "cf141d5e0e528a1f" : "state_archival_operation_errors-protocol_version_28-restore_operation-exceeded_writeBytes", "cf226151fb04c10f" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_7", "cf2d86dd85a2417a" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-liquidity_pool", "cf339a74cb38c15b" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-success_with_credentials_v2", - "cf945e15fa87e693" : "archival_meta-protocol_version_27-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_delete", - "d0994aa43a850a1a" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-autorestore,_delete_value_in_next_tx-across_stages", "d10f1da9f73be05f" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_3", "d1522d4667822bc2" : "Native_stellar_asset_contract", "d15d2c79a5a0afad" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-restore,_delete,_restore-delete_in_same_stage_as_second_restore", "d192ab90b43eeb6a" : "Soroban_authorization-default_classic_account-single_call-success_with_duplicate_auth_entries", - "d1f5d115b26f2c2d" : "basic_contract_invocation-protocol_version_26-malformed_function_names", "d2284024d86a9f4a" : "autorestore_contract_instance-restore_with_no_writes-classic_entries_count_towards_read_bytes-insufficient_read_bytes", - "d2ef4dd8a3326b1f" : "state_archival-protocol_version_26-contract_storage_archival-entry_accessible_when_currentLedger_==_liveUntilLedger", "d2fdf5f43cd795da" : "parallel_restore_and_extend_op", "d312c2e2a5a50ba8" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_19", - "d3e7a4929af1352e" : "Soroban_delegated_signer_authentication-single_delegate-uninitialized_top-level_vector_signature", "d3ee1065ef42391b" : "Soroban_authorization-classic_and_custom_accounts-single_call-failure_for_tree_with_missing_node", "d3fa9dd1a7ce68e3" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-autorestore,_delete,_then_has-same_stage", - "d46c533f474e3130" : "archival_meta-protocol_version_27-persistent_entry_meta-restore_expired_but_not_evicted-autorestore", "d481fd33556741b2" : "Soroban_footprint_validation-invokeHostFunction-readOnly-issuer_trustline", "d4d73e492b2aa30e" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_6", "d4e4024caa6dbbc4" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_20", + "d51772a787c99bc1" : "merge_account_then_SAC_payment_scenarios-protocol_version_28-SAC_payment_to_the_merged_account", "d580226d468cd36a" : "contract_constructor_support-constructor_with_no_arguments-v2_host_function,_v2_auth", "d5d3d3dd818a7366" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-manual_restore-across_stages", "d604f76431c95e5e" : "contract_constructor_support-constructor_with_no_arguments-v2_host_function,_v1_auth", "d697bb21e32f6aef" : "autorestore_from_another_contract", - "d6c263fd13775d0e" : "archival_meta-protocol_version_27-persistent_entry_meta-entry_evicted-eviction_meta-restore,_delete_value_in_next_tx-across_stages", + "d7c375608e942b41" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-manual_restore", + "d7e07d73417f717c" : "contract_storage-protocol_version_28-read_bytes_limit_enforced", "d7ea63b86adedc73" : "Soroban_custom_account_authentication-wrong_signature_type", - "d888d3403368dc50" : "state_archival_operation_errors-protocol_version_26-restore_operation-exceeded_readBytes", + "d85c6ee668e4f7cd" : "trustline_deletion_then_SAC_payment-protocol_version_28", "d8cb2c3e8c67a529" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_17", - "d8f18264015ca76d" : "state_archival_operation_errors-protocol_version_26-restore_operation-insufficient_refundable_fee", - "d913ab5d872a03f8" : "state_archival-protocol_version_26-max_TTL_extension-extension_op", "d927cb7228c4823f" : "buying_liabilities_plus_refund_is_greater_than_INT64_MAX", "da22a08dbb5b6591" : "Soroban_classic_account_authentication-default_account-uninitialized_vector_signature", - "da3e07eb8d9592dd" : "archival_meta-protocol_version_27-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_deleted,_then_recreate_with_new_TX-same_stage", "da9288450114401d" : "Soroban_footprint_validation-classic_entries_counted_as_disk-read_only-max", + "dad5f5e846b5ed75" : "state_archival-protocol_version_28-TTL_threshold", "db09947c9187fb8f" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_24", - "db5fe148a3049b78" : "state_archival_operation_errors-protocol_version_27-restore_operation-exceeded_writeBytes", "dbade792400bbd36" : "Soroban_authorization-classic_account_with_weights-wide_tree-success_with_duplicate_auth_entries", "dbe020e6910c1bb8" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_4", "dc8cff5869997641" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_10", "dcc73c9629f5a427" : "Soroban_classic_account_authentication-account_with_weights-wrong_key_name", - "dce0c7e1d6084e19" : "archival_meta-protocol_version_27-persistent_entry_meta-entry_evicted-eviction_meta-restore,_update_value_in_next_tx-across_stages", - "dd4c4f107f80004e" : "archival_meta-protocol_version_27-persistent_entry_meta-entry_evicted-eviction_meta-autorestore,_delete_value_in_next_tx-same_stage", "deaef712a256815b" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-claimable_balance", "debccecc0064889e" : "Soroban_classic_account_authentication-default_account_with_additional_signer-wrong_key_type", - "df5e46d7a306de43" : "Soroban_delegated_signer_authentication-deep_delegate_tree-within_depth_limit", + "df7bbe01e8ddcfb1" : "Trustline_stellar_asset_contract-protocol_version_28", "df8ad69b2e875c3e" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_15", "dfd8d97545a410c4" : "charge_rent_fees_for_storage_resize-resize_with_no_extend-success", - "dff72321aec96f70" : "merge_account_then_SAC_payment_scenarios-protocol_version_26-SAC_payment_with_merged_account_as_source", "e0180b51b72fe65a" : "Soroban_custom_account_authentication-empty_bytes_signature", "e095dd79e65ba973" : "Soroban_classic_account_authentication-account_with_weights-wrong_field_order", - "e0f09f1dcf955676" : "merge_account_then_SAC_payment_scenarios-protocol_version_26-SAC_payment_to_the_merged_account", "e17007564165c691" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-manual_restore-same_stage", - "e1a332399c923196" : "refund_test_with_closeLedger-protocol_version_27", "e1b3a1546fcd4160" : "Soroban_authorization-multisig_classic_account-single_call-incorrect_signature_payload", "e1bbd873f50bb8a5" : "persistent_entry_archival-eviction-restore_with_nonexistent_key", "e1c9fd2d21f89d7e" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-native_asset_trustline", @@ -664,35 +589,28 @@ "e260a8f0f8749e3c" : "Soroban_classic_account_authentication-account_with_weights-missing_key_field", "e267116f1684f812" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_5", "e26ad1849453e9f9" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-claimable_balance", + "e2c37e3d0ece05a9" : "state_archival-protocol_version_28-contract_storage_archival-TTL_enforcement-restoreOp_skips_when_currentLedger_==_liveUntilLedger", "e2df180a92959730" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-offer", + "e3ba82a695ba7439" : "contract_storage-protocol_version_28-successful_storage_operations", + "e3be2a388e711b29" : "refund_to_source_in_tx1_and_SAC_transfer_from_same_account_in_tx2-protocol_version_28-failure", "e3fb4fe5cfe74d62" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_16", "e436eae1b108bf65" : "Module_cache_miss_on_immediate_execution-same_ledger_upload_and_execution", - "e473a38c1e8f7e01" : "Soroban_delegated_signer_authentication-single_delegate-uninitialized_delegate_vector_signature", "e48f578b74a713cb" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_4", "e4a693d475f137c9" : "Soroban_footprint_validation-soroban_entries-in-memory-max_+_1", - "e4a7e26b2bd75a51" : "state_archival-protocol_version_26-contract_storage_archival-extendOp_when_currentLedger_==_liveUntilLedger", "e4b75527318c3f4b" : "Soroban_authorization-default_classic_account-deep_tree-unused_auth_entries-success_with_arbitrary_valid_function", - "e4c325158111957e" : "state_archival_operation_errors-protocol_version_27-extend_operation-readBytes_limit", - "e55a18ea45f18d9a" : "archival_meta-protocol_version_27-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_deleted,_then_recreate_with_new_TX-across_stages", - "e58ecf019fb8ef4c" : "classic_phase_sets_master_weight_of_soroban_source_account_to_0-protocol_version_26", "e592b8e0d0c064f2" : "Soroban_authorization-classic_account_with_weights-wide_tree-no_auth", "e595ac8447e8be48" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_10", - "e5df0fc8c728a355" : "state_archival_operation_errors-protocol_version_27-extend_operation-insufficient_refundable_fee", - "e60437880d9a5342" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-manual_restore", "e65bc9d3ad40b232" : "Soroban_classic_account_authentication-account_with_required_multisig-wrong_field_order", "e663576331e88873" : "Soroban_classic_account_authentication-account_with_weights-wrong_key_type", "e668e4a1eb385caf" : "Soroban_authorization-classic_account_with_weights-wide_tree-unused_auth_entries-success_with_arbitrary_valid_function", "e6bd97c7e61b9c20" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-data", - "e7bc3224128af431" : "Soroban_delegated_signer_authentication-single_delegate-empty_delegate_enum_signature", "e7c93b4b2532635a" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-contract_data_key_above_limit", "e847e07471896a84" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-liquidity_pool", - "e8e3a93f6508722e" : "contract_storage-protocol_version_26-successful_storage_operations", - "e8e94108c4e35442" : "refund_to_source_in_tx1_and_SAC_transfer_from_same_account_in_tx2-protocol_version_26-failure", "e970c80dd6512e2a" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-issuer_trustline", "e978d88c40ed87f1" : "autorestore_with_storage_resize-autorestore_with_rent_bump", "e999346808076671" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_8", + "e9d2d4153e77f33a" : "refund_is_sent_to_fee-bump_source-protocol_version_28", "e9d3d132208dd2f6" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_20", - "ea4a1267d6c3a211" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-manual_restore", "ea940d6997fea54c" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_19", "eaa4c6f56373a470" : "Soroban_authorization-custom_account-single_call-success_for_tree_with_extra_nodes", "eadfba1154674062" : "Soroban_classic_account_authentication-default_account-incomplete_key", @@ -702,36 +620,29 @@ "ed348cde4f3127e8" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_14", "ed39ca2daf59835d" : "Soroban_authorization-classic_and_custom_accounts-deep_tree-unused_auth_entries-failure_with_malformed_function_name", "ed4083446fa69ab7" : "contract_errors_cause_transaction_to_fail-val", - "ed4298d1c34e0b79" : "Soroban_delegated_signer_authentication-single_delegate-bad_payload", "ed66735578635c64" : "parallel_txs-internal_error", "eda22224ec5ac6ea" : "Soroban_authorization-default_classic_account-single_call-success_for_tree_with_extra_nodes", "eda3dfe5b6940848" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_3", "eda811ebbd672d8d" : "autorestore_contract_instance-manual_restore", - "ede88dbbbadb7264" : "basic_contract_invocation-protocol_version_27-insufficient_read_bytes_before_p23", "edeef19bce43c3da" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-wrong_signature_order", - "edf8d15f65abdd7c" : "basic_contract_invocation-protocol_version_26-incorrect_footprint", "ee0f9fb5465b72ad" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-contract_data_key_above_limit", "ee277035f023392a" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-config_setting", "ee2f02eb252fcc27" : "Soroban_authorization-custom_account-wide_tree-failure_for_tree_with_missing_node", "ee3472dd29024e40" : "Soroban_classic_account_authentication-additional_signer_with_insufficient_weight_not_authenticated", - "ee378cbd0c119be4" : "archival_meta-protocol_version_27-Create_temp_entry_with_same_key_as_an_expired_entry_on_eviction_ledger", "eee17f706f7deb9a" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_9", "ef37aff90281f523" : "autorestore_contract_instance-restore_with_no_writes-classic_entries_count_towards_read_bytes-Success", - "ef78b3de24d812f7" : "basic_contract_invocation-protocol_version_26-incorrect_invocation_parameters-malformed_parameters", "ef79595a3c250a3a" : "autorestore_with_storage_resize-manual_restore-extend_after_resize", "ef80e6a78893c56c" : "Soroban_authorization-classic_and_custom_accounts-wide_tree-incorrect_signature_payload", "efc0bd51b5b29e40" : "Soroban_authorization-classic_account_with_weights-single_call-success", "efd47464023e9e55" : "Stellar_asset_contract_transfer_with_CAP-67_address_types-custom_asset", "efe4261cc946881e" : "Soroban_authorization-default_classic_account-wide_tree-unused_auth_entries-success_with_arbitrary_valid_function", + "f021726e70bb6c48" : "multiple_soroban_ops_in_a_tx-protocol_version_28-with_fee_bump", "f0638599b34ec8a1" : "contract_errors_cause_transaction_to_fail-err_err", - "f0ae5731df64cbe0" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_updated_value", "f0e8fbaf2d4bdbcd" : "Soroban_authorization-classic_and_custom_accounts-wide_tree-unused_auth_entries-failure_with_malformed_function_name", "f168c76aba835145" : "put_in_first_stage_and_then_update_value_in_second_stage", "f17be5b4b66ea006" : "Soroban_authorization-classic_account_with_weights-deep_tree-incorrect_signature_payload", "f1b13fa29eb12ca4" : "Soroban_authorization-default_classic_account-single_call-incorrect_signature_payload", - "f1f574cc8ac44007" : "non-fee_source_account_is_recipient_of_payment_in_both_classic_and_soroban-protocol_version_26", "f1fc663779e87b60" : "Soroban_authorization-default_classic_account-deep_tree-failure_for_tree_with_missing_node", - "f2530b53ad33fc1e" : "validate_return_values-protocol_version_26", "f26b5de9280bbacd" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_0", "f27c6aef8abbd723" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_15", "f287aa63bbdb6ba8" : "Soroban_classic_account_authentication-account_with_weights-incomplete_signature", @@ -739,24 +650,20 @@ "f2eb7607bcc37fbb" : "Soroban_footprint_validation-soroban_entries-in-memory-max", "f3230f7682e7de69" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_7", "f43fbd97002badc6" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_15", - "f4e70d5861ba223f" : "archival_meta-protocol_version_27-persistent_entry_meta-restore_expired_but_not_evicted-manual_restore", "f4f351372abade91" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_14", "f506528d32fd0652" : "Soroban_authorization-multisig_classic_account-wide_tree-no_auth", "f538b7222e421b51" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_0", "f57219130594aa83" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-failed_auto_restores_and_manual_restores_across_stages-two_failed_restores_and_a_successful_restore_in_the_same_stage", - "f5aefef219319924" : "contract_storage-protocol_version_27-read_bytes_limit_enforced", "f5d072a9fb1463da" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-autorestore,_delete,_then_create-across_stages", - "f5d58a30f834542b" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-restore,_delete_value_in_next_tx-same_stage", - "f709a2d8db627467" : "basic_contract_invocation-protocol_version_26-non-existent_contract_id", - "f7b2eaed80de4146" : "state_archival-protocol_version_26-contract_instance_and_Wasm_archival-restore_contract_instance_and_wasm", "f7ca893de81e0719" : "Soroban_custom_account_authentication-uninitialized_vector_signature", "f7e97011ed711385" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-failed_auto_restores_and_manual_restores_across_stages-two_failed_restores_across_stages", "f7f94eb704afa841" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_12", "f80ab46aebfceee5" : "settings_upgrade-from_min_settings", - "f83bee8c248aebe1" : "fee_bump_inner_account_merged_then_used_as_inner_account_on_soroban_fee_bump-protocol_version_27", + "f816b3efbdfa3b79" : "refund_account_merged-protocol_version_28", "f85719dc2181f545" : "Soroban_authorization-classic_and_custom_accounts-single_call-incorrect_signature_payload", "f860f4c299f7c690" : "Soroban_footprint_validation-invokeHostFunction-readOnly-TTL_entry", "f8630c82e2e21ee3" : "Soroban_authorization-custom_account-wide_tree-unused_auth_entries-failure_with_malformed_function_name", + "f8cddbe43429eb31" : "contract_storage-protocol_version_28-footprint-RO_footprint_for_RW_entry", "f98d63a422dc7316" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_10", "fa2ba8e3c2560e56" : "Soroban_authorization-default_classic_account-wide_tree-unused_auth_entries-failure_with_long_malformed_function_name", "fa3f6b4664496f4e" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-offer", @@ -768,15 +675,12 @@ "fbec9a9e0db4dfc9" : "charge_rent_fees_for_storage_resize-resize_and_extend-success", "fc180de263c6378d" : "resource_fee_exceeds_uint32-self_fee_bump-success-inclusion_fee_exceeds_uint32", "fc65c51cb0a307a8" : "resource_fee_exceeds_uint32-self_fee_bump-failure-insufficient_fee_bumper_balance", - "fca3eb413e17400c" : "contract_storage-protocol_version_26-write_bytes_limit_enforced", "fcc1d92eb9aefea4" : "Soroban_classic_account_authentication-default_account_with_additional_signer-wrong_signature_name", "fcc7940f9747ef41" : "Soroban_classic_account_authentication-account_with_weights-wrong_signature_name", "fdc0726b33a30b71" : "delete_in_first_stage_extend_in_second_stage", - "fdce9caeb61c5f3a" : "fee_bump_refund_account_merged-protocol_version_27", - "fde221cacfa15702" : "merge_account_then_SAC_payment_scenarios-protocol_version_27-SAC_payment_to_the_merged_account", "fecb8c7203544f20" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_20", - "fee22f3e7541405b" : "state_archival-protocol_version_27-contract_storage_archival-entry_accessible_when_currentLedger_==_liveUntilLedger", "ff17a6200f26a9e2" : "Soroban_authorization-custom_account-deep_tree-incorrect_signature_payload", "ff35b35da8c78163" : "Soroban_classic_account_authentication-account_with_required_multisig-wrong_signature_type", + "ff665fb4708c864d" : "merge_account_then_SAC_payment_scenarios-protocol_version_28-SAC_payment_with_merged_account_as_source", "ffde1b7463c8c452" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_12" } diff --git a/test-lcm-next/MergeTests/689f95b5f77609d7.xdr b/test-lcm-current/MergeTests/689f95b5f77609d7.xdr similarity index 100% rename from test-lcm-next/MergeTests/689f95b5f77609d7.xdr rename to test-lcm-current/MergeTests/689f95b5f77609d7.xdr diff --git a/test-lcm-current/MergeTests/7b2e6a32c85708f5.xdr b/test-lcm-current/MergeTests/7b2e6a32c85708f5.xdr deleted file mode 100644 index 4650ecaeac..0000000000 Binary files a/test-lcm-current/MergeTests/7b2e6a32c85708f5.xdr and /dev/null differ diff --git a/test-lcm-current/MergeTests/d5cacbf63b606f18.xdr b/test-lcm-current/MergeTests/d5cacbf63b606f18.xdr deleted file mode 100644 index 87fdfd07de..0000000000 Binary files a/test-lcm-current/MergeTests/d5cacbf63b606f18.xdr and /dev/null differ diff --git a/test-lcm-current/MergeTests/index.json b/test-lcm-current/MergeTests/index.json index 1271de3cec..6fc03c2ba4 100644 --- a/test-lcm-current/MergeTests/index.json +++ b/test-lcm-current/MergeTests/index.json @@ -1,4 +1,7 @@ { - "7b2e6a32c85708f5" : "merge_event_reconciler-protocol_version_27", - "d5cacbf63b606f18" : "merge_event_reconciler-protocol_version_26" + "!cfg protocol version" : 28, + "!rng seed" : 12345, + "!test all versions" : false, + "!versions to test" : [ 28 ], + "689f95b5f77609d7" : "merge_event_reconciler-protocol_version_28" } diff --git a/test-lcm-current/OfferTests/1e8e76b45b2c1981.xdr b/test-lcm-current/OfferTests/1e8e76b45b2c1981.xdr deleted file mode 100644 index 9a6c576563..0000000000 Binary files a/test-lcm-current/OfferTests/1e8e76b45b2c1981.xdr and /dev/null differ diff --git a/test-lcm-next/OfferTests/1f16368433da1628.xdr b/test-lcm-current/OfferTests/1f16368433da1628.xdr similarity index 100% rename from test-lcm-next/OfferTests/1f16368433da1628.xdr rename to test-lcm-current/OfferTests/1f16368433da1628.xdr diff --git a/test-lcm-next/OfferTests/457999c2534447ae.xdr b/test-lcm-current/OfferTests/457999c2534447ae.xdr similarity index 100% rename from test-lcm-next/OfferTests/457999c2534447ae.xdr rename to test-lcm-current/OfferTests/457999c2534447ae.xdr diff --git a/test-lcm-current/OfferTests/b22525840aebaec3.xdr b/test-lcm-current/OfferTests/b22525840aebaec3.xdr deleted file mode 100644 index 0a1dc1f1c4..0000000000 Binary files a/test-lcm-current/OfferTests/b22525840aebaec3.xdr and /dev/null differ diff --git a/test-lcm-current/OfferTests/f7a7364752aecebb.xdr b/test-lcm-current/OfferTests/f7a7364752aecebb.xdr deleted file mode 100644 index f12a186a1b..0000000000 Binary files a/test-lcm-current/OfferTests/f7a7364752aecebb.xdr and /dev/null differ diff --git a/test-lcm-current/OfferTests/fd69a358c98c0b3e.xdr b/test-lcm-current/OfferTests/fd69a358c98c0b3e.xdr deleted file mode 100644 index 4c5047016f..0000000000 Binary files a/test-lcm-current/OfferTests/fd69a358c98c0b3e.xdr and /dev/null differ diff --git a/test-lcm-current/OfferTests/index.json b/test-lcm-current/OfferTests/index.json index 7afde3642d..837155eaca 100644 --- a/test-lcm-current/OfferTests/index.json +++ b/test-lcm-current/OfferTests/index.json @@ -1,6 +1,8 @@ { - "1e8e76b45b2c1981" : "liabilities_match_created_offer-protocol_version_27-maximum_limits", - "b22525840aebaec3" : "liabilities_match_created_offer-protocol_version_27-minimum_limits", - "f7a7364752aecebb" : "liabilities_match_created_offer-protocol_version_26-minimum_limits", - "fd69a358c98c0b3e" : "liabilities_match_created_offer-protocol_version_26-maximum_limits" + "!cfg protocol version" : 28, + "!rng seed" : 12345, + "!test all versions" : false, + "!versions to test" : [ 28 ], + "1f16368433da1628" : "liabilities_match_created_offer-protocol_version_28-minimum_limits", + "457999c2534447ae" : "liabilities_match_created_offer-protocol_version_28-maximum_limits" } diff --git a/test-lcm-next/PathPaymentTests/0dfe5423d3e1cac7.xdr b/test-lcm-current/PathPaymentTests/0dfe5423d3e1cac7.xdr similarity index 100% rename from test-lcm-next/PathPaymentTests/0dfe5423d3e1cac7.xdr rename to test-lcm-current/PathPaymentTests/0dfe5423d3e1cac7.xdr diff --git a/test-lcm-current/PathPaymentTests/6b8dd7030be55252.xdr b/test-lcm-current/PathPaymentTests/6b8dd7030be55252.xdr deleted file mode 100644 index b073b86974..0000000000 Binary files a/test-lcm-current/PathPaymentTests/6b8dd7030be55252.xdr and /dev/null differ diff --git a/test-lcm-current/PathPaymentTests/7c1bf589acb90fd3.xdr b/test-lcm-current/PathPaymentTests/7c1bf589acb90fd3.xdr deleted file mode 100644 index 246efdafd1..0000000000 Binary files a/test-lcm-current/PathPaymentTests/7c1bf589acb90fd3.xdr and /dev/null differ diff --git a/test-lcm-current/PathPaymentTests/992e39399fe5e7e2.xdr b/test-lcm-current/PathPaymentTests/992e39399fe5e7e2.xdr deleted file mode 100644 index 0434ea6f98..0000000000 Binary files a/test-lcm-current/PathPaymentTests/992e39399fe5e7e2.xdr and /dev/null differ diff --git a/test-lcm-current/PathPaymentTests/9d0a379d332bf104.xdr b/test-lcm-current/PathPaymentTests/9d0a379d332bf104.xdr deleted file mode 100644 index 36070f62a8..0000000000 Binary files a/test-lcm-current/PathPaymentTests/9d0a379d332bf104.xdr and /dev/null differ diff --git a/test-lcm-next/PathPaymentTests/a89a28b26308d91a.xdr b/test-lcm-current/PathPaymentTests/a89a28b26308d91a.xdr similarity index 100% rename from test-lcm-next/PathPaymentTests/a89a28b26308d91a.xdr rename to test-lcm-current/PathPaymentTests/a89a28b26308d91a.xdr diff --git a/test-lcm-next/PathPaymentTests/d61f4d7a7dfbf38d.xdr b/test-lcm-current/PathPaymentTests/d61f4d7a7dfbf38d.xdr similarity index 100% rename from test-lcm-next/PathPaymentTests/d61f4d7a7dfbf38d.xdr rename to test-lcm-current/PathPaymentTests/d61f4d7a7dfbf38d.xdr diff --git a/test-lcm-current/PathPaymentTests/index.json b/test-lcm-current/PathPaymentTests/index.json index 3b19688d69..5747b149d4 100644 --- a/test-lcm-current/PathPaymentTests/index.json +++ b/test-lcm-current/PathPaymentTests/index.json @@ -1,8 +1,9 @@ { - "4a5fb7ad61be37b1" : "path_payment_uses_all_offers_in_a_loop-protocol_version_26-inside_issuers_missing", - "6b8dd7030be55252" : "path_payment_uses_all_offers_in_a_loop-protocol_version_26-no_issuers_missing", - "7c1bf589acb90fd3" : "path_payment_uses_all_offers_in_a_loop-protocol_version_27-inside_issuers_missing", - "992e39399fe5e7e2" : "path_payment_uses_all_offers_in_a_loop-protocol_version_27-outside_issuers_missing", - "9d0a379d332bf104" : "path_payment_uses_all_offers_in_a_loop-protocol_version_27-no_issuers_missing", - "a0d129f4a7f84481" : "path_payment_uses_all_offers_in_a_loop-protocol_version_26-outside_issuers_missing" + "!cfg protocol version" : 28, + "!rng seed" : 12345, + "!test all versions" : false, + "!versions to test" : [ 28 ], + "0dfe5423d3e1cac7" : "path_payment_uses_all_offers_in_a_loop-protocol_version_28-no_issuers_missing", + "a89a28b26308d91a" : "path_payment_uses_all_offers_in_a_loop-protocol_version_28-outside_issuers_missing", + "d61f4d7a7dfbf38d" : "path_payment_uses_all_offers_in_a_loop-protocol_version_28-inside_issuers_missing" } diff --git a/test-lcm-current/TxEnvelopeTests/33b31b8901ef27e4.xdr b/test-lcm-current/TxEnvelopeTests/33b31b8901ef27e4.xdr index 296ddc236a..e4c219cb76 100644 Binary files a/test-lcm-current/TxEnvelopeTests/33b31b8901ef27e4.xdr and b/test-lcm-current/TxEnvelopeTests/33b31b8901ef27e4.xdr differ diff --git a/test-lcm-current/TxEnvelopeTests/8a618c6bf87583c8.xdr b/test-lcm-current/TxEnvelopeTests/8a618c6bf87583c8.xdr deleted file mode 100644 index 552a8e3c1e..0000000000 Binary files a/test-lcm-current/TxEnvelopeTests/8a618c6bf87583c8.xdr and /dev/null differ diff --git a/test-lcm-next/TxEnvelopeTests/ab82fe7cbed50696.xdr b/test-lcm-current/TxEnvelopeTests/ab82fe7cbed50696.xdr similarity index 90% rename from test-lcm-next/TxEnvelopeTests/ab82fe7cbed50696.xdr rename to test-lcm-current/TxEnvelopeTests/ab82fe7cbed50696.xdr index ad4ab18923..82fbf86e56 100644 Binary files a/test-lcm-next/TxEnvelopeTests/ab82fe7cbed50696.xdr and b/test-lcm-current/TxEnvelopeTests/ab82fe7cbed50696.xdr differ diff --git a/test-lcm-current/TxEnvelopeTests/c5e8f50805e3d276.xdr b/test-lcm-current/TxEnvelopeTests/c5e8f50805e3d276.xdr deleted file mode 100644 index 552a8e3c1e..0000000000 Binary files a/test-lcm-current/TxEnvelopeTests/c5e8f50805e3d276.xdr and /dev/null differ diff --git a/test-lcm-next/TxEnvelopeTests/ed0dbfc79ec4422d.xdr b/test-lcm-current/TxEnvelopeTests/ed0dbfc79ec4422d.xdr similarity index 90% rename from test-lcm-next/TxEnvelopeTests/ed0dbfc79ec4422d.xdr rename to test-lcm-current/TxEnvelopeTests/ed0dbfc79ec4422d.xdr index ad4ab18923..82fbf86e56 100644 Binary files a/test-lcm-next/TxEnvelopeTests/ed0dbfc79ec4422d.xdr and b/test-lcm-current/TxEnvelopeTests/ed0dbfc79ec4422d.xdr differ diff --git a/test-lcm-current/TxEnvelopeTests/index.json b/test-lcm-current/TxEnvelopeTests/index.json index 250b01adae..2461384701 100644 --- a/test-lcm-current/TxEnvelopeTests/index.json +++ b/test-lcm-current/TxEnvelopeTests/index.json @@ -1,7 +1,9 @@ { + "!cfg protocol version" : 28, + "!rng seed" : 12345, + "!test all versions" : false, + "!versions to test" : [ 28 ], "33b31b8901ef27e4" : "txset_-_correct_apply_order", - "618e7e7d356e4a28" : "soroban_transaction_validation-protocol_version_27-footprint_limit-read-only_key_over_size_limit", - "8a618c6bf87583c8" : "soroban_transaction_validation-protocol_version_26-footprint_limit-read-only_key_over_size_limit", - "c5e8f50805e3d276" : "soroban_transaction_validation-protocol_version_26-footprint_limit-read-write_key_over_size_limit", - "dffa13279a64a929" : "soroban_transaction_validation-protocol_version_27-footprint_limit-read-write_key_over_size_limit" + "ab82fe7cbed50696" : "soroban_transaction_validation-protocol_version_28-footprint_limit-read-only_key_over_size_limit", + "ed0dbfc79ec4422d" : "soroban_transaction_validation-protocol_version_28-footprint_limit-read-write_key_over_size_limit" } diff --git a/test-lcm-current/TxResultsTests/00dc9d49f5e26349.xdr b/test-lcm-current/TxResultsTests/00dc9d49f5e26349.xdr deleted file mode 100644 index 9e3e506b51..0000000000 Binary files a/test-lcm-current/TxResultsTests/00dc9d49f5e26349.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/01a934d21d6aa937.xdr b/test-lcm-current/TxResultsTests/01a934d21d6aa937.xdr deleted file mode 100644 index 37403b8221..0000000000 Binary files a/test-lcm-current/TxResultsTests/01a934d21d6aa937.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/035b86ee46b88250.xdr b/test-lcm-current/TxResultsTests/035b86ee46b88250.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/035b86ee46b88250.xdr rename to test-lcm-current/TxResultsTests/035b86ee46b88250.xdr diff --git a/test-lcm-current/TxResultsTests/07c95288d49d06df.xdr b/test-lcm-current/TxResultsTests/07c95288d49d06df.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-current/TxResultsTests/07c95288d49d06df.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/0818f91bf50e070d.xdr b/test-lcm-current/TxResultsTests/0818f91bf50e070d.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-current/TxResultsTests/0818f91bf50e070d.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/083eef6d8b8e7e63.xdr b/test-lcm-current/TxResultsTests/083eef6d8b8e7e63.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/083eef6d8b8e7e63.xdr rename to test-lcm-current/TxResultsTests/083eef6d8b8e7e63.xdr diff --git a/test-lcm-current/TxResultsTests/084dee4b02745aa0.xdr b/test-lcm-current/TxResultsTests/084dee4b02745aa0.xdr deleted file mode 100644 index 37403b8221..0000000000 Binary files a/test-lcm-current/TxResultsTests/084dee4b02745aa0.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/0b136fe2833fb959.xdr b/test-lcm-current/TxResultsTests/0b136fe2833fb959.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/0b136fe2833fb959.xdr rename to test-lcm-current/TxResultsTests/0b136fe2833fb959.xdr diff --git a/test-lcm-next/TxResultsTests/0b1fd8ae1f8a728a.xdr b/test-lcm-current/TxResultsTests/0b1fd8ae1f8a728a.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/0b1fd8ae1f8a728a.xdr rename to test-lcm-current/TxResultsTests/0b1fd8ae1f8a728a.xdr diff --git a/test-lcm-next/TxResultsTests/123678ce92586472.xdr b/test-lcm-current/TxResultsTests/123678ce92586472.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/123678ce92586472.xdr rename to test-lcm-current/TxResultsTests/123678ce92586472.xdr diff --git a/test-lcm-current/TxResultsTests/16ba80aa94255ef1.xdr b/test-lcm-current/TxResultsTests/16ba80aa94255ef1.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-current/TxResultsTests/16ba80aa94255ef1.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/17a64d1bd4161b6f.xdr b/test-lcm-current/TxResultsTests/17a64d1bd4161b6f.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/17a64d1bd4161b6f.xdr rename to test-lcm-current/TxResultsTests/17a64d1bd4161b6f.xdr diff --git a/test-lcm-current/TxResultsTests/17d5554d10b7a5e0.xdr b/test-lcm-current/TxResultsTests/17d5554d10b7a5e0.xdr deleted file mode 100644 index 2b7674fcc6..0000000000 Binary files a/test-lcm-current/TxResultsTests/17d5554d10b7a5e0.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/19047566d252c15a.xdr b/test-lcm-current/TxResultsTests/19047566d252c15a.xdr deleted file mode 100644 index 37403b8221..0000000000 Binary files a/test-lcm-current/TxResultsTests/19047566d252c15a.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/23924bfaa36ab2f2.xdr b/test-lcm-current/TxResultsTests/23924bfaa36ab2f2.xdr deleted file mode 100644 index 37403b8221..0000000000 Binary files a/test-lcm-current/TxResultsTests/23924bfaa36ab2f2.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/25cdfa3e68d7b856.xdr b/test-lcm-current/TxResultsTests/25cdfa3e68d7b856.xdr deleted file mode 100644 index ae4462402f..0000000000 Binary files a/test-lcm-current/TxResultsTests/25cdfa3e68d7b856.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/2852a1192c7cb5f2.xdr b/test-lcm-current/TxResultsTests/2852a1192c7cb5f2.xdr deleted file mode 100644 index 37403b8221..0000000000 Binary files a/test-lcm-current/TxResultsTests/2852a1192c7cb5f2.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/2cba5e5756c2a336.xdr b/test-lcm-current/TxResultsTests/2cba5e5756c2a336.xdr deleted file mode 100644 index 37403b8221..0000000000 Binary files a/test-lcm-current/TxResultsTests/2cba5e5756c2a336.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/2fa9339745c0c86e.xdr b/test-lcm-current/TxResultsTests/2fa9339745c0c86e.xdr deleted file mode 100644 index 37403b8221..0000000000 Binary files a/test-lcm-current/TxResultsTests/2fa9339745c0c86e.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/360c0ad88fddfc15.xdr b/test-lcm-current/TxResultsTests/360c0ad88fddfc15.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/360c0ad88fddfc15.xdr rename to test-lcm-current/TxResultsTests/360c0ad88fddfc15.xdr diff --git a/test-lcm-next/TxResultsTests/37ab04a7caf3bde5.xdr b/test-lcm-current/TxResultsTests/37ab04a7caf3bde5.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/37ab04a7caf3bde5.xdr rename to test-lcm-current/TxResultsTests/37ab04a7caf3bde5.xdr diff --git a/test-lcm-current/TxResultsTests/3d108537d65b8bf5.xdr b/test-lcm-current/TxResultsTests/3d108537d65b8bf5.xdr deleted file mode 100644 index bbdbe54a03..0000000000 Binary files a/test-lcm-current/TxResultsTests/3d108537d65b8bf5.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/4648651a80c5b3d5.xdr b/test-lcm-current/TxResultsTests/4648651a80c5b3d5.xdr deleted file mode 100644 index d6e078c5f6..0000000000 Binary files a/test-lcm-current/TxResultsTests/4648651a80c5b3d5.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/46ae9d1460e628f2.xdr b/test-lcm-current/TxResultsTests/46ae9d1460e628f2.xdr deleted file mode 100644 index bbdbe54a03..0000000000 Binary files a/test-lcm-current/TxResultsTests/46ae9d1460e628f2.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/47301cd2824d3b67.xdr b/test-lcm-current/TxResultsTests/47301cd2824d3b67.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/47301cd2824d3b67.xdr rename to test-lcm-current/TxResultsTests/47301cd2824d3b67.xdr diff --git a/test-lcm-current/TxResultsTests/482259c23e233fb4.xdr b/test-lcm-current/TxResultsTests/482259c23e233fb4.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-current/TxResultsTests/482259c23e233fb4.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/4ade4004f3e35dfe.xdr b/test-lcm-current/TxResultsTests/4ade4004f3e35dfe.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/4ade4004f3e35dfe.xdr rename to test-lcm-current/TxResultsTests/4ade4004f3e35dfe.xdr diff --git a/test-lcm-current/TxResultsTests/4cf3b6bf74982e64.xdr b/test-lcm-current/TxResultsTests/4cf3b6bf74982e64.xdr deleted file mode 100644 index 9e3e506b51..0000000000 Binary files a/test-lcm-current/TxResultsTests/4cf3b6bf74982e64.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/50fab18e89f39e30.xdr b/test-lcm-current/TxResultsTests/50fab18e89f39e30.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-current/TxResultsTests/50fab18e89f39e30.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/55313d358359397b.xdr b/test-lcm-current/TxResultsTests/55313d358359397b.xdr deleted file mode 100644 index 9e3e506b51..0000000000 Binary files a/test-lcm-current/TxResultsTests/55313d358359397b.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/59e8520f1604cb21.xdr b/test-lcm-current/TxResultsTests/59e8520f1604cb21.xdr deleted file mode 100644 index 9e3e506b51..0000000000 Binary files a/test-lcm-current/TxResultsTests/59e8520f1604cb21.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/5a79c98453ad3636.xdr b/test-lcm-current/TxResultsTests/5a79c98453ad3636.xdr deleted file mode 100644 index 37403b8221..0000000000 Binary files a/test-lcm-current/TxResultsTests/5a79c98453ad3636.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/5ed6dacba78957ff.xdr b/test-lcm-current/TxResultsTests/5ed6dacba78957ff.xdr deleted file mode 100644 index 37403b8221..0000000000 Binary files a/test-lcm-current/TxResultsTests/5ed6dacba78957ff.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/5f006545d085e016.xdr b/test-lcm-current/TxResultsTests/5f006545d085e016.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-current/TxResultsTests/5f006545d085e016.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/607a79b7ef1c73b8.xdr b/test-lcm-current/TxResultsTests/607a79b7ef1c73b8.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/607a79b7ef1c73b8.xdr rename to test-lcm-current/TxResultsTests/607a79b7ef1c73b8.xdr diff --git a/test-lcm-current/TxResultsTests/63bb51706201f3dd.xdr b/test-lcm-current/TxResultsTests/63bb51706201f3dd.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-current/TxResultsTests/63bb51706201f3dd.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/6c945c0f2f0bb66c.xdr b/test-lcm-current/TxResultsTests/6c945c0f2f0bb66c.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-current/TxResultsTests/6c945c0f2f0bb66c.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/6d35e5e378e70370.xdr b/test-lcm-current/TxResultsTests/6d35e5e378e70370.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-current/TxResultsTests/6d35e5e378e70370.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/6f1c62881b7eb1c3.xdr b/test-lcm-current/TxResultsTests/6f1c62881b7eb1c3.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-current/TxResultsTests/6f1c62881b7eb1c3.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/6fc036e75b83fdfb.xdr b/test-lcm-current/TxResultsTests/6fc036e75b83fdfb.xdr deleted file mode 100644 index bb2ea0a889..0000000000 Binary files a/test-lcm-current/TxResultsTests/6fc036e75b83fdfb.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/71485755b9760b39.xdr b/test-lcm-current/TxResultsTests/71485755b9760b39.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-current/TxResultsTests/71485755b9760b39.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/720abad845b00441.xdr b/test-lcm-current/TxResultsTests/720abad845b00441.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/720abad845b00441.xdr rename to test-lcm-current/TxResultsTests/720abad845b00441.xdr diff --git a/test-lcm-current/TxResultsTests/83a41a882df066d0.xdr b/test-lcm-current/TxResultsTests/83a41a882df066d0.xdr deleted file mode 100644 index 37403b8221..0000000000 Binary files a/test-lcm-current/TxResultsTests/83a41a882df066d0.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/84449ae27e590b14.xdr b/test-lcm-current/TxResultsTests/84449ae27e590b14.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-current/TxResultsTests/84449ae27e590b14.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/848ed86acdf91404.xdr b/test-lcm-current/TxResultsTests/848ed86acdf91404.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/848ed86acdf91404.xdr rename to test-lcm-current/TxResultsTests/848ed86acdf91404.xdr diff --git a/test-lcm-current/TxResultsTests/86f6a508c0e33417.xdr b/test-lcm-current/TxResultsTests/86f6a508c0e33417.xdr deleted file mode 100644 index 9e3e506b51..0000000000 Binary files a/test-lcm-current/TxResultsTests/86f6a508c0e33417.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/893de201c4bd7047.xdr b/test-lcm-current/TxResultsTests/893de201c4bd7047.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/893de201c4bd7047.xdr rename to test-lcm-current/TxResultsTests/893de201c4bd7047.xdr diff --git a/test-lcm-current/TxResultsTests/8e564daf846e0ced.xdr b/test-lcm-current/TxResultsTests/8e564daf846e0ced.xdr deleted file mode 100644 index bbdbe54a03..0000000000 Binary files a/test-lcm-current/TxResultsTests/8e564daf846e0ced.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/8e8543f9b18c229c.xdr b/test-lcm-current/TxResultsTests/8e8543f9b18c229c.xdr deleted file mode 100644 index 37403b8221..0000000000 Binary files a/test-lcm-current/TxResultsTests/8e8543f9b18c229c.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/8f26a900876c7ea4.xdr b/test-lcm-current/TxResultsTests/8f26a900876c7ea4.xdr deleted file mode 100644 index 37403b8221..0000000000 Binary files a/test-lcm-current/TxResultsTests/8f26a900876c7ea4.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/948ceaf5339cffae.xdr b/test-lcm-current/TxResultsTests/948ceaf5339cffae.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-current/TxResultsTests/948ceaf5339cffae.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/9aef6d8f63ece51e.xdr b/test-lcm-current/TxResultsTests/9aef6d8f63ece51e.xdr deleted file mode 100644 index 37403b8221..0000000000 Binary files a/test-lcm-current/TxResultsTests/9aef6d8f63ece51e.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/9b4be2f747e8e62f.xdr b/test-lcm-current/TxResultsTests/9b4be2f747e8e62f.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/9b4be2f747e8e62f.xdr rename to test-lcm-current/TxResultsTests/9b4be2f747e8e62f.xdr diff --git a/test-lcm-current/TxResultsTests/9baadfd7a01bbf75.xdr b/test-lcm-current/TxResultsTests/9baadfd7a01bbf75.xdr deleted file mode 100644 index 37403b8221..0000000000 Binary files a/test-lcm-current/TxResultsTests/9baadfd7a01bbf75.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/9c150d4ef9043b6b.xdr b/test-lcm-current/TxResultsTests/9c150d4ef9043b6b.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-current/TxResultsTests/9c150d4ef9043b6b.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/9cb7e7a8f7878e3d.xdr b/test-lcm-current/TxResultsTests/9cb7e7a8f7878e3d.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/9cb7e7a8f7878e3d.xdr rename to test-lcm-current/TxResultsTests/9cb7e7a8f7878e3d.xdr diff --git a/test-lcm-current/TxResultsTests/a21de7d45c192198.xdr b/test-lcm-current/TxResultsTests/a21de7d45c192198.xdr deleted file mode 100644 index 37403b8221..0000000000 Binary files a/test-lcm-current/TxResultsTests/a21de7d45c192198.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/a38acff3f582b17e.xdr b/test-lcm-current/TxResultsTests/a38acff3f582b17e.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/a38acff3f582b17e.xdr rename to test-lcm-current/TxResultsTests/a38acff3f582b17e.xdr diff --git a/test-lcm-next/TxResultsTests/a4f2d0f620d7bcea.xdr b/test-lcm-current/TxResultsTests/a4f2d0f620d7bcea.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/a4f2d0f620d7bcea.xdr rename to test-lcm-current/TxResultsTests/a4f2d0f620d7bcea.xdr diff --git a/test-lcm-current/TxResultsTests/a7ad902854f944c7.xdr b/test-lcm-current/TxResultsTests/a7ad902854f944c7.xdr deleted file mode 100644 index bd5514b0fc..0000000000 Binary files a/test-lcm-current/TxResultsTests/a7ad902854f944c7.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/a7d4179af3795b9b.xdr b/test-lcm-current/TxResultsTests/a7d4179af3795b9b.xdr deleted file mode 100644 index 9e3e506b51..0000000000 Binary files a/test-lcm-current/TxResultsTests/a7d4179af3795b9b.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/ae373543df571763.xdr b/test-lcm-current/TxResultsTests/ae373543df571763.xdr deleted file mode 100644 index 37403b8221..0000000000 Binary files a/test-lcm-current/TxResultsTests/ae373543df571763.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/afde3f43c9eb1027.xdr b/test-lcm-current/TxResultsTests/afde3f43c9eb1027.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/afde3f43c9eb1027.xdr rename to test-lcm-current/TxResultsTests/afde3f43c9eb1027.xdr diff --git a/test-lcm-current/TxResultsTests/affa492c6f3b5ee0.xdr b/test-lcm-current/TxResultsTests/affa492c6f3b5ee0.xdr deleted file mode 100644 index bbdbe54a03..0000000000 Binary files a/test-lcm-current/TxResultsTests/affa492c6f3b5ee0.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/b88e41c2210b9273.xdr b/test-lcm-current/TxResultsTests/b88e41c2210b9273.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-current/TxResultsTests/b88e41c2210b9273.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/b94e47cd7fd23d5b.xdr b/test-lcm-current/TxResultsTests/b94e47cd7fd23d5b.xdr deleted file mode 100644 index bbdbe54a03..0000000000 Binary files a/test-lcm-current/TxResultsTests/b94e47cd7fd23d5b.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/bb308ccf3733c82c.xdr b/test-lcm-current/TxResultsTests/bb308ccf3733c82c.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-current/TxResultsTests/bb308ccf3733c82c.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/bd17b7c465d5042d.xdr b/test-lcm-current/TxResultsTests/bd17b7c465d5042d.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-current/TxResultsTests/bd17b7c465d5042d.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/bdb6f8c6c6c2023a.xdr b/test-lcm-current/TxResultsTests/bdb6f8c6c6c2023a.xdr deleted file mode 100644 index 37403b8221..0000000000 Binary files a/test-lcm-current/TxResultsTests/bdb6f8c6c6c2023a.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/bdf3153e6aa8bf67.xdr b/test-lcm-current/TxResultsTests/bdf3153e6aa8bf67.xdr deleted file mode 100644 index 37403b8221..0000000000 Binary files a/test-lcm-current/TxResultsTests/bdf3153e6aa8bf67.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/beaa58b0f46aafc6.xdr b/test-lcm-current/TxResultsTests/beaa58b0f46aafc6.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/beaa58b0f46aafc6.xdr rename to test-lcm-current/TxResultsTests/beaa58b0f46aafc6.xdr diff --git a/test-lcm-current/TxResultsTests/beb319a6de9dad42.xdr b/test-lcm-current/TxResultsTests/beb319a6de9dad42.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-current/TxResultsTests/beb319a6de9dad42.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/bf802dee14198853.xdr b/test-lcm-current/TxResultsTests/bf802dee14198853.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-current/TxResultsTests/bf802dee14198853.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/c580ebe17d445df5.xdr b/test-lcm-current/TxResultsTests/c580ebe17d445df5.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/c580ebe17d445df5.xdr rename to test-lcm-current/TxResultsTests/c580ebe17d445df5.xdr diff --git a/test-lcm-next/TxResultsTests/c95b50404ef8036f.xdr b/test-lcm-current/TxResultsTests/c95b50404ef8036f.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/c95b50404ef8036f.xdr rename to test-lcm-current/TxResultsTests/c95b50404ef8036f.xdr diff --git a/test-lcm-current/TxResultsTests/d34713da8df3e583.xdr b/test-lcm-current/TxResultsTests/d34713da8df3e583.xdr deleted file mode 100644 index 5ae8d5ec96..0000000000 Binary files a/test-lcm-current/TxResultsTests/d34713da8df3e583.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/d7342c9d22280d94.xdr b/test-lcm-current/TxResultsTests/d7342c9d22280d94.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/d7342c9d22280d94.xdr rename to test-lcm-current/TxResultsTests/d7342c9d22280d94.xdr diff --git a/test-lcm-next/TxResultsTests/d7ca635473c87471.xdr b/test-lcm-current/TxResultsTests/d7ca635473c87471.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/d7ca635473c87471.xdr rename to test-lcm-current/TxResultsTests/d7ca635473c87471.xdr diff --git a/test-lcm-current/TxResultsTests/d9f43d2f8b13bd76.xdr b/test-lcm-current/TxResultsTests/d9f43d2f8b13bd76.xdr deleted file mode 100644 index 37403b8221..0000000000 Binary files a/test-lcm-current/TxResultsTests/d9f43d2f8b13bd76.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/e0b80e7fe9bd74d0.xdr b/test-lcm-current/TxResultsTests/e0b80e7fe9bd74d0.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-current/TxResultsTests/e0b80e7fe9bd74d0.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/e6328efe6aafcccd.xdr b/test-lcm-current/TxResultsTests/e6328efe6aafcccd.xdr deleted file mode 100644 index 37403b8221..0000000000 Binary files a/test-lcm-current/TxResultsTests/e6328efe6aafcccd.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/e78ebf3330edacac.xdr b/test-lcm-current/TxResultsTests/e78ebf3330edacac.xdr deleted file mode 100644 index 37403b8221..0000000000 Binary files a/test-lcm-current/TxResultsTests/e78ebf3330edacac.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/ea9b1ca4d8672f21.xdr b/test-lcm-current/TxResultsTests/ea9b1ca4d8672f21.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/ea9b1ca4d8672f21.xdr rename to test-lcm-current/TxResultsTests/ea9b1ca4d8672f21.xdr diff --git a/test-lcm-next/TxResultsTests/eb73c7d0dd5043d8.xdr b/test-lcm-current/TxResultsTests/eb73c7d0dd5043d8.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/eb73c7d0dd5043d8.xdr rename to test-lcm-current/TxResultsTests/eb73c7d0dd5043d8.xdr diff --git a/test-lcm-next/TxResultsTests/ebe8cb86ddfc6bee.xdr b/test-lcm-current/TxResultsTests/ebe8cb86ddfc6bee.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/ebe8cb86ddfc6bee.xdr rename to test-lcm-current/TxResultsTests/ebe8cb86ddfc6bee.xdr diff --git a/test-lcm-next/TxResultsTests/f351f5d5ca1fb9a2.xdr b/test-lcm-current/TxResultsTests/f351f5d5ca1fb9a2.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/f351f5d5ca1fb9a2.xdr rename to test-lcm-current/TxResultsTests/f351f5d5ca1fb9a2.xdr diff --git a/test-lcm-next/TxResultsTests/fab4ae054612a770.xdr b/test-lcm-current/TxResultsTests/fab4ae054612a770.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/fab4ae054612a770.xdr rename to test-lcm-current/TxResultsTests/fab4ae054612a770.xdr diff --git a/test-lcm-current/TxResultsTests/fc4598caa5e37bed.xdr b/test-lcm-current/TxResultsTests/fc4598caa5e37bed.xdr deleted file mode 100644 index bbdbe54a03..0000000000 Binary files a/test-lcm-current/TxResultsTests/fc4598caa5e37bed.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/fce4063e23913ec1.xdr b/test-lcm-current/TxResultsTests/fce4063e23913ec1.xdr similarity index 100% rename from test-lcm-next/TxResultsTests/fce4063e23913ec1.xdr rename to test-lcm-current/TxResultsTests/fce4063e23913ec1.xdr diff --git a/test-lcm-current/TxResultsTests/fe76a0ad04fa1139.xdr b/test-lcm-current/TxResultsTests/fe76a0ad04fa1139.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-current/TxResultsTests/fe76a0ad04fa1139.xdr and /dev/null differ diff --git a/test-lcm-current/TxResultsTests/index.json b/test-lcm-current/TxResultsTests/index.json index 96931d90a9..c32ce052f0 100644 --- a/test-lcm-current/TxResultsTests/index.json +++ b/test-lcm-current/TxResultsTests/index.json @@ -1,62 +1,36 @@ { - "00dc9d49f5e26349" : "txresults-protocol_version_27-merge_account-normal", - "01a934d21d6aa937" : "txresults-protocol_version_27-transaction_errors-not_signed-missing_operation", - "07c95288d49d06df" : "txresults-protocol_version_26-transaction_errors-signed-insufficient_balance", - "0818f91bf50e070d" : "txresults-protocol_version_26-transaction_errors-double_signed-too_early", - "084dee4b02745aa0" : "txresults-protocol_version_27-transaction_errors-signed-bad_seq", - "16ba80aa94255ef1" : "txresults-protocol_version_26-transaction_errors-double_signed-missing_operation", - "17d5554d10b7a5e0" : "txresults-protocol_version_26-not_enough_signature_weight-before_tx", - "19047566d252c15a" : "txresults-protocol_version_27-transaction_errors-not_signed-too_late", - "23924bfaa36ab2f2" : "txresults-protocol_version_27-transaction_errors-double_signed-too_early", - "25cdfa3e68d7b856" : "txresults-protocol_version_27-fees_with_liabilities-selling_liabilities", - "2852a1192c7cb5f2" : "txresults-protocol_version_27-transaction_errors-signed-too_early", - "2cba5e5756c2a336" : "txresults-protocol_version_27-transaction_errors-double_signed-too_late", - "2fa9339745c0c86e" : "txresults-protocol_version_27-transaction_errors-double_signed-insufficient_fee", - "3d108537d65b8bf5" : "txresults-protocol_version_26-merge_account-normal", - "4648651a80c5b3d5" : "txresults-protocol_version_27-not_enough_signature_weight-before_tx", - "46ae9d1460e628f2" : "txresults-protocol_version_26-create_account-with_payment_after", - "482259c23e233fb4" : "txresults-protocol_version_26-transaction_errors-double_signed-too_late", - "4cf3b6bf74982e64" : "txresults-protocol_version_27-create_account-normal", - "50fab18e89f39e30" : "txresults-protocol_version_26-transaction_errors-not_signed-insufficient_balance", - "55313d358359397b" : "txresults-protocol_version_27-merge_account-with_operation_after", - "59e8520f1604cb21" : "txresults-protocol_version_27-not_enough_signature_weight-normal", - "5a79c98453ad3636" : "txresults-protocol_version_27-transaction_errors-signed-insufficient_balance", - "5ed6dacba78957ff" : "txresults-protocol_version_27-transaction_errors-double_signed-missing_operation", - "5f006545d085e016" : "txresults-protocol_version_26-transaction_errors-signed-no_account", - "63bb51706201f3dd" : "txresults-protocol_version_26-transaction_errors-double_signed-insufficient_balance", - "6c945c0f2f0bb66c" : "txresults-protocol_version_26-transaction_errors-signed-insufficient_fee", - "6d35e5e378e70370" : "txresults-protocol_version_26-transaction_errors-not_signed-missing_operation", - "6f1c62881b7eb1c3" : "txresults-protocol_version_26-transaction_errors-signed-too_early", - "6fc036e75b83fdfb" : "txresults-protocol_version_27-fees_with_liabilities-buying_liabilities", - "71485755b9760b39" : "txresults-protocol_version_26-transaction_errors-signed-too_late", - "83a41a882df066d0" : "txresults-protocol_version_27-transaction_errors-not_signed-too_early", - "84449ae27e590b14" : "txresults-protocol_version_26-transaction_errors-double_signed-insufficient_fee", - "86f6a508c0e33417" : "txresults-protocol_version_27-create_account-with_payment_after", - "8e564daf846e0ced" : "txresults-protocol_version_26-not_enough_signature_weight-normal", - "8e8543f9b18c229c" : "txresults-protocol_version_27-transaction_errors-not_signed-insufficient_balance", - "8f26a900876c7ea4" : "txresults-protocol_version_27-transaction_errors-signed-no_account", - "948ceaf5339cffae" : "txresults-protocol_version_26-transaction_errors-double_signed-bad_seq", - "9aef6d8f63ece51e" : "txresults-protocol_version_27-transaction_errors-signed-missing_operation", - "9baadfd7a01bbf75" : "txresults-protocol_version_27-transaction_errors-not_signed-bad_seq", - "9c150d4ef9043b6b" : "txresults-protocol_version_26-transaction_errors-not_signed-no_account", - "a21de7d45c192198" : "txresults-protocol_version_27-transaction_errors-double_signed-insufficient_balance", - "a7ad902854f944c7" : "txresults-protocol_version_26-fees_with_liabilities-buying_liabilities", - "a7d4179af3795b9b" : "txresults-protocol_version_27-not_enough_signature_weight-with_operation_after", - "ae373543df571763" : "txresults-protocol_version_27-transaction_errors-signed-too_late", - "affa492c6f3b5ee0" : "txresults-protocol_version_26-merge_account-with_operation_after", - "b88e41c2210b9273" : "txresults-protocol_version_26-transaction_errors-signed-bad_seq", - "b94e47cd7fd23d5b" : "txresults-protocol_version_26-not_enough_signature_weight-with_operation_after", - "bb308ccf3733c82c" : "txresults-protocol_version_26-transaction_errors-double_signed-no_account", - "bd17b7c465d5042d" : "txresults-protocol_version_26-transaction_errors-not_signed-too_early", - "bdb6f8c6c6c2023a" : "txresults-protocol_version_27-transaction_errors-double_signed-no_account", - "bdf3153e6aa8bf67" : "txresults-protocol_version_27-transaction_errors-double_signed-bad_seq", - "beb319a6de9dad42" : "txresults-protocol_version_26-transaction_errors-signed-missing_operation", - "bf802dee14198853" : "txresults-protocol_version_26-transaction_errors-not_signed-too_late", - "d34713da8df3e583" : "txresults-protocol_version_26-fees_with_liabilities-selling_liabilities", - "d9f43d2f8b13bd76" : "txresults-protocol_version_27-transaction_errors-not_signed-insufficient_fee", - "e0b80e7fe9bd74d0" : "txresults-protocol_version_26-transaction_errors-not_signed-insufficient_fee", - "e6328efe6aafcccd" : "txresults-protocol_version_27-transaction_errors-signed-insufficient_fee", - "e78ebf3330edacac" : "txresults-protocol_version_27-transaction_errors-not_signed-no_account", - "fc4598caa5e37bed" : "txresults-protocol_version_26-create_account-normal", - "fe76a0ad04fa1139" : "txresults-protocol_version_26-transaction_errors-not_signed-bad_seq" + "!cfg protocol version" : 28, + "!rng seed" : 12345, + "!test all versions" : false, + "!versions to test" : [ 28 ], + "035b86ee46b88250" : "txresults-protocol_version_28-not_enough_signature_weight-with_operation_after", + "083eef6d8b8e7e63" : "txresults-protocol_version_28-transaction_errors-signed-bad_seq", + "0b136fe2833fb959" : "txresults-protocol_version_28-transaction_errors-not_signed-insufficient_balance", + "0b1fd8ae1f8a728a" : "txresults-protocol_version_28-transaction_errors-double_signed-insufficient_fee", + "123678ce92586472" : "txresults-protocol_version_28-not_enough_signature_weight-before_tx", + "17a64d1bd4161b6f" : "txresults-protocol_version_28-transaction_errors-double_signed-no_account", + "360c0ad88fddfc15" : "txresults-protocol_version_28-transaction_errors-signed-too_late", + "37ab04a7caf3bde5" : "txresults-protocol_version_28-transaction_errors-double_signed-too_early", + "47301cd2824d3b67" : "txresults-protocol_version_28-transaction_errors-signed-insufficient_balance", + "4ade4004f3e35dfe" : "txresults-protocol_version_28-transaction_errors-double_signed-insufficient_balance", + "607a79b7ef1c73b8" : "txresults-protocol_version_28-transaction_errors-not_signed-no_account", + "720abad845b00441" : "txresults-protocol_version_28-fees_with_liabilities-selling_liabilities", + "848ed86acdf91404" : "txresults-protocol_version_28-transaction_errors-double_signed-missing_operation", + "893de201c4bd7047" : "txresults-protocol_version_28-transaction_errors-not_signed-bad_seq", + "9b4be2f747e8e62f" : "txresults-protocol_version_28-not_enough_signature_weight-normal", + "9cb7e7a8f7878e3d" : "txresults-protocol_version_28-merge_account-normal", + "a38acff3f582b17e" : "txresults-protocol_version_28-transaction_errors-not_signed-missing_operation", + "a4f2d0f620d7bcea" : "txresults-protocol_version_28-transaction_errors-not_signed-insufficient_fee", + "afde3f43c9eb1027" : "txresults-protocol_version_28-create_account-normal", + "beaa58b0f46aafc6" : "txresults-protocol_version_28-transaction_errors-double_signed-bad_seq", + "c580ebe17d445df5" : "txresults-protocol_version_28-merge_account-with_operation_after", + "c95b50404ef8036f" : "txresults-protocol_version_28-transaction_errors-signed-missing_operation", + "d7342c9d22280d94" : "txresults-protocol_version_28-fees_with_liabilities-buying_liabilities", + "d7ca635473c87471" : "txresults-protocol_version_28-transaction_errors-double_signed-too_late", + "ea9b1ca4d8672f21" : "txresults-protocol_version_28-transaction_errors-signed-no_account", + "eb73c7d0dd5043d8" : "txresults-protocol_version_28-transaction_errors-signed-too_early", + "ebe8cb86ddfc6bee" : "txresults-protocol_version_28-transaction_errors-not_signed-too_early", + "f351f5d5ca1fb9a2" : "txresults-protocol_version_28-transaction_errors-signed-insufficient_fee", + "fab4ae054612a770" : "txresults-protocol_version_28-transaction_errors-not_signed-too_late", + "fce4063e23913ec1" : "txresults-protocol_version_28-create_account-with_payment_after" } diff --git a/test-lcm-next/BeginSponsoringFutureReservesTests/17846470c1f6514e.xdr b/test-lcm-next/BeginSponsoringFutureReservesTests/17846470c1f6514e.xdr new file mode 100644 index 0000000000..5f5fe871fc Binary files /dev/null and b/test-lcm-next/BeginSponsoringFutureReservesTests/17846470c1f6514e.xdr differ diff --git a/test-lcm-next/BeginSponsoringFutureReservesTests/370cbe2630300593.xdr b/test-lcm-next/BeginSponsoringFutureReservesTests/370cbe2630300593.xdr new file mode 100644 index 0000000000..cf8feb9686 Binary files /dev/null and b/test-lcm-next/BeginSponsoringFutureReservesTests/370cbe2630300593.xdr differ diff --git a/test-lcm-next/BeginSponsoringFutureReservesTests/3b6d924921f59f9f.xdr b/test-lcm-next/BeginSponsoringFutureReservesTests/3b6d924921f59f9f.xdr deleted file mode 100644 index c4071f8bd1..0000000000 Binary files a/test-lcm-next/BeginSponsoringFutureReservesTests/3b6d924921f59f9f.xdr and /dev/null differ diff --git a/test-lcm-next/BeginSponsoringFutureReservesTests/3cb8cdd0c21fcfb1.xdr b/test-lcm-next/BeginSponsoringFutureReservesTests/3cb8cdd0c21fcfb1.xdr deleted file mode 100644 index dafe2119ae..0000000000 Binary files a/test-lcm-next/BeginSponsoringFutureReservesTests/3cb8cdd0c21fcfb1.xdr and /dev/null differ diff --git a/test-lcm-next/BeginSponsoringFutureReservesTests/3e67985b8288fe60.xdr b/test-lcm-next/BeginSponsoringFutureReservesTests/3e67985b8288fe60.xdr new file mode 100644 index 0000000000..1e9ab7b9d7 Binary files /dev/null and b/test-lcm-next/BeginSponsoringFutureReservesTests/3e67985b8288fe60.xdr differ diff --git a/test-lcm-next/BeginSponsoringFutureReservesTests/507604981827c989.xdr b/test-lcm-next/BeginSponsoringFutureReservesTests/507604981827c989.xdr deleted file mode 100644 index fddc3af197..0000000000 Binary files a/test-lcm-next/BeginSponsoringFutureReservesTests/507604981827c989.xdr and /dev/null differ diff --git a/test-lcm-current/BeginSponsoringFutureReservesTests/d97fe15b2aa04c9f.xdr b/test-lcm-next/BeginSponsoringFutureReservesTests/55fe0b9b963a80eb.xdr similarity index 75% rename from test-lcm-current/BeginSponsoringFutureReservesTests/d97fe15b2aa04c9f.xdr rename to test-lcm-next/BeginSponsoringFutureReservesTests/55fe0b9b963a80eb.xdr index af116df64b..e955d90471 100644 Binary files a/test-lcm-current/BeginSponsoringFutureReservesTests/d97fe15b2aa04c9f.xdr and b/test-lcm-next/BeginSponsoringFutureReservesTests/55fe0b9b963a80eb.xdr differ diff --git a/test-lcm-next/BeginSponsoringFutureReservesTests/5a61e6aac9038144.xdr b/test-lcm-next/BeginSponsoringFutureReservesTests/5a61e6aac9038144.xdr deleted file mode 100644 index 09c2543d9f..0000000000 Binary files a/test-lcm-next/BeginSponsoringFutureReservesTests/5a61e6aac9038144.xdr and /dev/null differ diff --git a/test-lcm-next/BeginSponsoringFutureReservesTests/9a006fdecc334584.xdr b/test-lcm-next/BeginSponsoringFutureReservesTests/9a006fdecc334584.xdr new file mode 100644 index 0000000000..b27480e1de Binary files /dev/null and b/test-lcm-next/BeginSponsoringFutureReservesTests/9a006fdecc334584.xdr differ diff --git a/test-lcm-next/BeginSponsoringFutureReservesTests/9bc0a679d6d62183.xdr b/test-lcm-next/BeginSponsoringFutureReservesTests/9bc0a679d6d62183.xdr deleted file mode 100644 index 16c313e8f3..0000000000 Binary files a/test-lcm-next/BeginSponsoringFutureReservesTests/9bc0a679d6d62183.xdr and /dev/null differ diff --git a/test-lcm-current/BeginSponsoringFutureReservesTests/507604981827c989.xdr b/test-lcm-next/BeginSponsoringFutureReservesTests/cfce0d762a751c3f.xdr similarity index 74% rename from test-lcm-current/BeginSponsoringFutureReservesTests/507604981827c989.xdr rename to test-lcm-next/BeginSponsoringFutureReservesTests/cfce0d762a751c3f.xdr index fddc3af197..7c95f0f2f7 100644 Binary files a/test-lcm-current/BeginSponsoringFutureReservesTests/507604981827c989.xdr and b/test-lcm-next/BeginSponsoringFutureReservesTests/cfce0d762a751c3f.xdr differ diff --git a/test-lcm-next/BeginSponsoringFutureReservesTests/e55c615e3d4d0fb9.xdr b/test-lcm-next/BeginSponsoringFutureReservesTests/e55c615e3d4d0fb9.xdr deleted file mode 100644 index 3cc650740d..0000000000 Binary files a/test-lcm-next/BeginSponsoringFutureReservesTests/e55c615e3d4d0fb9.xdr and /dev/null differ diff --git a/test-lcm-next/BeginSponsoringFutureReservesTests/e9b0303fe49e8211.xdr b/test-lcm-next/BeginSponsoringFutureReservesTests/e9b0303fe49e8211.xdr deleted file mode 100644 index ac2be4c21e..0000000000 Binary files a/test-lcm-next/BeginSponsoringFutureReservesTests/e9b0303fe49e8211.xdr and /dev/null differ diff --git a/test-lcm-next/BeginSponsoringFutureReservesTests/f67dddbf03bfbdf7.xdr b/test-lcm-next/BeginSponsoringFutureReservesTests/f67dddbf03bfbdf7.xdr new file mode 100644 index 0000000000..11ecc26e00 Binary files /dev/null and b/test-lcm-next/BeginSponsoringFutureReservesTests/f67dddbf03bfbdf7.xdr differ diff --git a/test-lcm-next/BeginSponsoringFutureReservesTests/index.json b/test-lcm-next/BeginSponsoringFutureReservesTests/index.json index 444ad01878..3e41960d42 100644 --- a/test-lcm-next/BeginSponsoringFutureReservesTests/index.json +++ b/test-lcm-next/BeginSponsoringFutureReservesTests/index.json @@ -1,16 +1,13 @@ { - "02426fcd1b6a0dbe" : "sponsor_future_reserves-protocol_version_28-already_sponsored", - "124577e8c014e46f" : "sponsor_future_reserves-protocol_version_28-add_sponsored_entry_before_adding_first_sponsored_signer", - "2f7cc6c5797d6418" : "sponsor_future_reserves-protocol_version_28-sponsorships_with_precondition_that_uses_v3_extension", - "3b6d924921f59f9f" : "sponsor_future_reserves-protocol_version_26-add_sponsored_entry_before_adding_first_sponsored_signer", - "3ca9bd46788ce395" : "sponsor_future_reserves-protocol_version_28-sponsoring_account_is_sponsored", - "3cb8cdd0c21fcfb1" : "sponsor_future_reserves-protocol_version_26-sponsoring_account_is_sponsored", - "476ba4fadb58a1ac" : "sponsor_future_reserves-protocol_version_28-success", - "507604981827c989" : "sponsor_future_reserves-protocol_version_26-already_sponsored", - "5a61e6aac9038144" : "sponsor_future_reserves-protocol_version_26-success", - "9bc0a679d6d62183" : "sponsor_future_reserves-protocol_version_26-bad_sponsorship", - "aec15f4898b342da" : "sponsor_future_reserves-protocol_version_28-sponsored_account_is_sponsoring", - "e55c615e3d4d0fb9" : "sponsor_future_reserves-protocol_version_26-sponsored_account_is_sponsoring", - "e657a64b555a35d5" : "sponsor_future_reserves-protocol_version_28-bad_sponsorship", - "e9b0303fe49e8211" : "sponsor_future_reserves-protocol_version_26-sponsorships_with_precondition_that_uses_v3_extension" + "!cfg protocol version" : 29, + "!rng seed" : 12345, + "!test all versions" : false, + "!versions to test" : [ 29 ], + "17846470c1f6514e" : "sponsor_future_reserves-protocol_version_29-add_sponsored_entry_before_adding_first_sponsored_signer", + "370cbe2630300593" : "sponsor_future_reserves-protocol_version_29-sponsored_account_is_sponsoring", + "3e67985b8288fe60" : "sponsor_future_reserves-protocol_version_29-sponsorships_with_precondition_that_uses_v3_extension", + "55fe0b9b963a80eb" : "sponsor_future_reserves-protocol_version_29-success", + "9a006fdecc334584" : "sponsor_future_reserves-protocol_version_29-bad_sponsorship", + "cfce0d762a751c3f" : "sponsor_future_reserves-protocol_version_29-already_sponsored", + "f67dddbf03bfbdf7" : "sponsor_future_reserves-protocol_version_29-sponsoring_account_is_sponsored" } diff --git a/test-lcm-next/FrozenLedgerKeysTests/0130d32614dbc252.xdr b/test-lcm-next/FrozenLedgerKeysTests/0130d32614dbc252.xdr index 3cf4907099..fbb11d506e 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/0130d32614dbc252.xdr and b/test-lcm-next/FrozenLedgerKeysTests/0130d32614dbc252.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/0269778d4c3c115b.xdr b/test-lcm-next/FrozenLedgerKeysTests/0269778d4c3c115b.xdr index 3cf4907099..fbb11d506e 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/0269778d4c3c115b.xdr and b/test-lcm-next/FrozenLedgerKeysTests/0269778d4c3c115b.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/03768f1cbe0eed0d.xdr b/test-lcm-next/FrozenLedgerKeysTests/03768f1cbe0eed0d.xdr index ab0006392b..f95182d420 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/03768f1cbe0eed0d.xdr and b/test-lcm-next/FrozenLedgerKeysTests/03768f1cbe0eed0d.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/0450c26d5d536a6e.xdr b/test-lcm-next/FrozenLedgerKeysTests/0450c26d5d536a6e.xdr index 81eb0c9c91..50419048c5 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/0450c26d5d536a6e.xdr and b/test-lcm-next/FrozenLedgerKeysTests/0450c26d5d536a6e.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/05d2d1b6ad2f25b9.xdr b/test-lcm-next/FrozenLedgerKeysTests/05d2d1b6ad2f25b9.xdr index 3cf4907099..fbb11d506e 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/05d2d1b6ad2f25b9.xdr and b/test-lcm-next/FrozenLedgerKeysTests/05d2d1b6ad2f25b9.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/09bc2d8793dcee32.xdr b/test-lcm-next/FrozenLedgerKeysTests/09bc2d8793dcee32.xdr index c6f8ebd99b..950228ec11 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/09bc2d8793dcee32.xdr and b/test-lcm-next/FrozenLedgerKeysTests/09bc2d8793dcee32.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/0ee7224ee3fe8e71.xdr b/test-lcm-next/FrozenLedgerKeysTests/0ee7224ee3fe8e71.xdr index e021045fb9..85fbde04df 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/0ee7224ee3fe8e71.xdr and b/test-lcm-next/FrozenLedgerKeysTests/0ee7224ee3fe8e71.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/0feb6c306147fd3a.xdr b/test-lcm-next/FrozenLedgerKeysTests/0feb6c306147fd3a.xdr index 6973722190..e3000ffd2b 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/0feb6c306147fd3a.xdr and b/test-lcm-next/FrozenLedgerKeysTests/0feb6c306147fd3a.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/104f5d62fa026b98.xdr b/test-lcm-next/FrozenLedgerKeysTests/104f5d62fa026b98.xdr index 4c52627baf..98aba6a806 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/104f5d62fa026b98.xdr and b/test-lcm-next/FrozenLedgerKeysTests/104f5d62fa026b98.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/11196eb4ceadfd80.xdr b/test-lcm-next/FrozenLedgerKeysTests/11196eb4ceadfd80.xdr index dec89d2cc1..2d74485142 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/11196eb4ceadfd80.xdr and b/test-lcm-next/FrozenLedgerKeysTests/11196eb4ceadfd80.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/12a1f394aac5f093.xdr b/test-lcm-next/FrozenLedgerKeysTests/12a1f394aac5f093.xdr index 358f1cdfb6..aa90c89f63 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/12a1f394aac5f093.xdr and b/test-lcm-next/FrozenLedgerKeysTests/12a1f394aac5f093.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/12dc44e49c5507a9.xdr b/test-lcm-next/FrozenLedgerKeysTests/12dc44e49c5507a9.xdr index c2f5e14a10..83ae4697f0 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/12dc44e49c5507a9.xdr and b/test-lcm-next/FrozenLedgerKeysTests/12dc44e49c5507a9.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/137b73a35107c4c5.xdr b/test-lcm-next/FrozenLedgerKeysTests/137b73a35107c4c5.xdr index 658e19fad1..53bf06b3a2 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/137b73a35107c4c5.xdr and b/test-lcm-next/FrozenLedgerKeysTests/137b73a35107c4c5.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/1c2cdf10f2e47111.xdr b/test-lcm-next/FrozenLedgerKeysTests/1c2cdf10f2e47111.xdr index 358f1cdfb6..aa90c89f63 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/1c2cdf10f2e47111.xdr and b/test-lcm-next/FrozenLedgerKeysTests/1c2cdf10f2e47111.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/1d6ae312fba487bb.xdr b/test-lcm-next/FrozenLedgerKeysTests/1d6ae312fba487bb.xdr index 429d2fa345..4d3036d612 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/1d6ae312fba487bb.xdr and b/test-lcm-next/FrozenLedgerKeysTests/1d6ae312fba487bb.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/1e016cd08d89d64c.xdr b/test-lcm-next/FrozenLedgerKeysTests/1e016cd08d89d64c.xdr index 10743e5060..6887a8ddeb 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/1e016cd08d89d64c.xdr and b/test-lcm-next/FrozenLedgerKeysTests/1e016cd08d89d64c.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/22c18bc7dafd431d.xdr b/test-lcm-next/FrozenLedgerKeysTests/22c18bc7dafd431d.xdr index 14ff2a9699..6cbdae2a38 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/22c18bc7dafd431d.xdr and b/test-lcm-next/FrozenLedgerKeysTests/22c18bc7dafd431d.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/233d74d8369feacb.xdr b/test-lcm-next/FrozenLedgerKeysTests/233d74d8369feacb.xdr index 987db1e090..2ed1856434 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/233d74d8369feacb.xdr and b/test-lcm-next/FrozenLedgerKeysTests/233d74d8369feacb.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/27e094a33ea270ce.xdr b/test-lcm-next/FrozenLedgerKeysTests/27e094a33ea270ce.xdr index bcc5ddac2c..a745acb1d2 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/27e094a33ea270ce.xdr and b/test-lcm-next/FrozenLedgerKeysTests/27e094a33ea270ce.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/2c135153a34652ed.xdr b/test-lcm-next/FrozenLedgerKeysTests/2c135153a34652ed.xdr index e8b3b3bb31..6a1d635560 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/2c135153a34652ed.xdr and b/test-lcm-next/FrozenLedgerKeysTests/2c135153a34652ed.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/2cc7de6ca7052b69.xdr b/test-lcm-next/FrozenLedgerKeysTests/2cc7de6ca7052b69.xdr index e6c26f392f..acff04b1dc 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/2cc7de6ca7052b69.xdr and b/test-lcm-next/FrozenLedgerKeysTests/2cc7de6ca7052b69.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/2d300368c9082831.xdr b/test-lcm-next/FrozenLedgerKeysTests/2d300368c9082831.xdr index 313cbbfcd6..316368fba5 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/2d300368c9082831.xdr and b/test-lcm-next/FrozenLedgerKeysTests/2d300368c9082831.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/2ecd5ac1d64a632a.xdr b/test-lcm-next/FrozenLedgerKeysTests/2ecd5ac1d64a632a.xdr index 187568cda4..f70fa1d68f 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/2ecd5ac1d64a632a.xdr and b/test-lcm-next/FrozenLedgerKeysTests/2ecd5ac1d64a632a.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/33d3622012e7482d.xdr b/test-lcm-next/FrozenLedgerKeysTests/33d3622012e7482d.xdr index 943d2d282c..1ded16d6e2 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/33d3622012e7482d.xdr and b/test-lcm-next/FrozenLedgerKeysTests/33d3622012e7482d.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/352575440c65c590.xdr b/test-lcm-next/FrozenLedgerKeysTests/352575440c65c590.xdr index 5c59ef6e76..f4e9e3028c 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/352575440c65c590.xdr and b/test-lcm-next/FrozenLedgerKeysTests/352575440c65c590.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/37c2d3c744db057c.xdr b/test-lcm-next/FrozenLedgerKeysTests/37c2d3c744db057c.xdr index b17e9b0800..243dfc50d7 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/37c2d3c744db057c.xdr and b/test-lcm-next/FrozenLedgerKeysTests/37c2d3c744db057c.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/37dc6f1b853351d3.xdr b/test-lcm-next/FrozenLedgerKeysTests/37dc6f1b853351d3.xdr index f9e0449f77..e7a7f1d947 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/37dc6f1b853351d3.xdr and b/test-lcm-next/FrozenLedgerKeysTests/37dc6f1b853351d3.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/395da6fd76d7d649.xdr b/test-lcm-next/FrozenLedgerKeysTests/395da6fd76d7d649.xdr index 1af41e1acd..33411f5b8e 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/395da6fd76d7d649.xdr and b/test-lcm-next/FrozenLedgerKeysTests/395da6fd76d7d649.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/3d6e5e32a6b48567.xdr b/test-lcm-next/FrozenLedgerKeysTests/3d6e5e32a6b48567.xdr index caa363acce..7867badf56 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/3d6e5e32a6b48567.xdr and b/test-lcm-next/FrozenLedgerKeysTests/3d6e5e32a6b48567.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/3dc9dab4e5a340ba.xdr b/test-lcm-next/FrozenLedgerKeysTests/3dc9dab4e5a340ba.xdr index 3cf4907099..fbb11d506e 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/3dc9dab4e5a340ba.xdr and b/test-lcm-next/FrozenLedgerKeysTests/3dc9dab4e5a340ba.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/3dd2b1f80c573d23.xdr b/test-lcm-next/FrozenLedgerKeysTests/3dd2b1f80c573d23.xdr index da3d32e3bb..2104f0f449 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/3dd2b1f80c573d23.xdr and b/test-lcm-next/FrozenLedgerKeysTests/3dd2b1f80c573d23.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/3dd600739a73c9cd.xdr b/test-lcm-next/FrozenLedgerKeysTests/3dd600739a73c9cd.xdr index 8c00fc4440..a008b04766 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/3dd600739a73c9cd.xdr and b/test-lcm-next/FrozenLedgerKeysTests/3dd600739a73c9cd.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/3e53ab37c0265962.xdr b/test-lcm-next/FrozenLedgerKeysTests/3e53ab37c0265962.xdr index 1ef88ffb65..6e51cd3a54 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/3e53ab37c0265962.xdr and b/test-lcm-next/FrozenLedgerKeysTests/3e53ab37c0265962.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/4e7a95b40ba45ec4.xdr b/test-lcm-next/FrozenLedgerKeysTests/4e7a95b40ba45ec4.xdr index 8c52638f45..5b1b4af8c1 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/4e7a95b40ba45ec4.xdr and b/test-lcm-next/FrozenLedgerKeysTests/4e7a95b40ba45ec4.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/4f462cc49f7a3568.xdr b/test-lcm-next/FrozenLedgerKeysTests/4f462cc49f7a3568.xdr index 5caef1ff09..fde37b1bbf 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/4f462cc49f7a3568.xdr and b/test-lcm-next/FrozenLedgerKeysTests/4f462cc49f7a3568.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/59ef7f546d376c85.xdr b/test-lcm-next/FrozenLedgerKeysTests/59ef7f546d376c85.xdr index 46c5d9b9d5..a5677a774d 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/59ef7f546d376c85.xdr and b/test-lcm-next/FrozenLedgerKeysTests/59ef7f546d376c85.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/5b465c56327dab17.xdr b/test-lcm-next/FrozenLedgerKeysTests/5b465c56327dab17.xdr index 2e3d9f01f3..2209f65cf8 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/5b465c56327dab17.xdr and b/test-lcm-next/FrozenLedgerKeysTests/5b465c56327dab17.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/5dd915bcf807a0c3.xdr b/test-lcm-next/FrozenLedgerKeysTests/5dd915bcf807a0c3.xdr index 2e3d9f01f3..2209f65cf8 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/5dd915bcf807a0c3.xdr and b/test-lcm-next/FrozenLedgerKeysTests/5dd915bcf807a0c3.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/5e98f6024777fd63.xdr b/test-lcm-next/FrozenLedgerKeysTests/5e98f6024777fd63.xdr index bbc3238825..ee80f84a8c 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/5e98f6024777fd63.xdr and b/test-lcm-next/FrozenLedgerKeysTests/5e98f6024777fd63.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/5f5d524416da196a.xdr b/test-lcm-next/FrozenLedgerKeysTests/5f5d524416da196a.xdr index b75239c4b4..476193a6ee 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/5f5d524416da196a.xdr and b/test-lcm-next/FrozenLedgerKeysTests/5f5d524416da196a.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/5f9dc515f9af2b30.xdr b/test-lcm-next/FrozenLedgerKeysTests/5f9dc515f9af2b30.xdr index ad4183f712..569b63d08c 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/5f9dc515f9af2b30.xdr and b/test-lcm-next/FrozenLedgerKeysTests/5f9dc515f9af2b30.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/61a97d20a77d2460.xdr b/test-lcm-next/FrozenLedgerKeysTests/61a97d20a77d2460.xdr index 1ef88ffb65..6e51cd3a54 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/61a97d20a77d2460.xdr and b/test-lcm-next/FrozenLedgerKeysTests/61a97d20a77d2460.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/66bd677986a05b7d.xdr b/test-lcm-next/FrozenLedgerKeysTests/66bd677986a05b7d.xdr index fc4a1d2f0e..c8d20877d6 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/66bd677986a05b7d.xdr and b/test-lcm-next/FrozenLedgerKeysTests/66bd677986a05b7d.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/693594ca2a8ed1db.xdr b/test-lcm-next/FrozenLedgerKeysTests/693594ca2a8ed1db.xdr index 66aba2d2e3..2dfd26eb47 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/693594ca2a8ed1db.xdr and b/test-lcm-next/FrozenLedgerKeysTests/693594ca2a8ed1db.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/6a558ed58db514ee.xdr b/test-lcm-next/FrozenLedgerKeysTests/6a558ed58db514ee.xdr index 0e9aac75fe..1a82a11b2c 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/6a558ed58db514ee.xdr and b/test-lcm-next/FrozenLedgerKeysTests/6a558ed58db514ee.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/6a5abe9a6365c9b2.xdr b/test-lcm-next/FrozenLedgerKeysTests/6a5abe9a6365c9b2.xdr index 4a23f6dd78..c53bc1e377 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/6a5abe9a6365c9b2.xdr and b/test-lcm-next/FrozenLedgerKeysTests/6a5abe9a6365c9b2.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/6c91038331995c3f.xdr b/test-lcm-next/FrozenLedgerKeysTests/6c91038331995c3f.xdr index 74960a757d..41eea63210 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/6c91038331995c3f.xdr and b/test-lcm-next/FrozenLedgerKeysTests/6c91038331995c3f.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/6fa3cd786ce04dd9.xdr b/test-lcm-next/FrozenLedgerKeysTests/6fa3cd786ce04dd9.xdr index 23b3c51688..a13f32d343 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/6fa3cd786ce04dd9.xdr and b/test-lcm-next/FrozenLedgerKeysTests/6fa3cd786ce04dd9.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/6fae3a68c806ec2d.xdr b/test-lcm-next/FrozenLedgerKeysTests/6fae3a68c806ec2d.xdr index 507d6a6af8..5bb6bd1cb1 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/6fae3a68c806ec2d.xdr and b/test-lcm-next/FrozenLedgerKeysTests/6fae3a68c806ec2d.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/74c8bfeabe26560a.xdr b/test-lcm-next/FrozenLedgerKeysTests/74c8bfeabe26560a.xdr index cc8448fcf3..94f824c4c7 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/74c8bfeabe26560a.xdr and b/test-lcm-next/FrozenLedgerKeysTests/74c8bfeabe26560a.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/7832644d33f07016.xdr b/test-lcm-next/FrozenLedgerKeysTests/7832644d33f07016.xdr index d3b19e1ba2..dd4cc4bf8d 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/7832644d33f07016.xdr and b/test-lcm-next/FrozenLedgerKeysTests/7832644d33f07016.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/7c60bd0a8e0d39a0.xdr b/test-lcm-next/FrozenLedgerKeysTests/7c60bd0a8e0d39a0.xdr index e0ddb5681c..ef37598e53 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/7c60bd0a8e0d39a0.xdr and b/test-lcm-next/FrozenLedgerKeysTests/7c60bd0a8e0d39a0.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/7d4cbe380503bd78.xdr b/test-lcm-next/FrozenLedgerKeysTests/7d4cbe380503bd78.xdr index de62882a42..b49a645018 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/7d4cbe380503bd78.xdr and b/test-lcm-next/FrozenLedgerKeysTests/7d4cbe380503bd78.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/7e60b33e97cf0d0a.xdr b/test-lcm-next/FrozenLedgerKeysTests/7e60b33e97cf0d0a.xdr index 9070651a8a..223d8e7d39 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/7e60b33e97cf0d0a.xdr and b/test-lcm-next/FrozenLedgerKeysTests/7e60b33e97cf0d0a.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/7e9cb3eb7498b526.xdr b/test-lcm-next/FrozenLedgerKeysTests/7e9cb3eb7498b526.xdr index 3cf4907099..fbb11d506e 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/7e9cb3eb7498b526.xdr and b/test-lcm-next/FrozenLedgerKeysTests/7e9cb3eb7498b526.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/7ea017ea5bfde3f5.xdr b/test-lcm-next/FrozenLedgerKeysTests/7ea017ea5bfde3f5.xdr index 13e057ab28..838894bad0 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/7ea017ea5bfde3f5.xdr and b/test-lcm-next/FrozenLedgerKeysTests/7ea017ea5bfde3f5.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/82e842e08727efde.xdr b/test-lcm-next/FrozenLedgerKeysTests/82e842e08727efde.xdr index 4b0e74d54b..a10aa248fc 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/82e842e08727efde.xdr and b/test-lcm-next/FrozenLedgerKeysTests/82e842e08727efde.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/84cef76b68d93cc9.xdr b/test-lcm-next/FrozenLedgerKeysTests/84cef76b68d93cc9.xdr index b60ab4667a..33ee1aa7fd 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/84cef76b68d93cc9.xdr and b/test-lcm-next/FrozenLedgerKeysTests/84cef76b68d93cc9.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/88686096bda31fb9.xdr b/test-lcm-next/FrozenLedgerKeysTests/88686096bda31fb9.xdr index 9b0f79f651..a0947213c1 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/88686096bda31fb9.xdr and b/test-lcm-next/FrozenLedgerKeysTests/88686096bda31fb9.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/8b16614bc082b932.xdr b/test-lcm-next/FrozenLedgerKeysTests/8b16614bc082b932.xdr index 6bdbe6e5b8..f9d6e8507f 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/8b16614bc082b932.xdr and b/test-lcm-next/FrozenLedgerKeysTests/8b16614bc082b932.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/90d52c9f9531509f.xdr b/test-lcm-next/FrozenLedgerKeysTests/90d52c9f9531509f.xdr index 8b87d493b9..75dcbf1e7a 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/90d52c9f9531509f.xdr and b/test-lcm-next/FrozenLedgerKeysTests/90d52c9f9531509f.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/92c3ac2898780b73.xdr b/test-lcm-next/FrozenLedgerKeysTests/92c3ac2898780b73.xdr index 1cbc8c8eb8..5fe17e123f 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/92c3ac2898780b73.xdr and b/test-lcm-next/FrozenLedgerKeysTests/92c3ac2898780b73.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/94dfaaeec842ae02.xdr b/test-lcm-next/FrozenLedgerKeysTests/94dfaaeec842ae02.xdr index 7cc0158ef1..1435534cec 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/94dfaaeec842ae02.xdr and b/test-lcm-next/FrozenLedgerKeysTests/94dfaaeec842ae02.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/95c3de7b21facafb.xdr b/test-lcm-next/FrozenLedgerKeysTests/95c3de7b21facafb.xdr index 27ac23e353..51103662ed 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/95c3de7b21facafb.xdr and b/test-lcm-next/FrozenLedgerKeysTests/95c3de7b21facafb.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/968502a58dcf1de3.xdr b/test-lcm-next/FrozenLedgerKeysTests/968502a58dcf1de3.xdr index 8e1d86bdf0..c003798a0f 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/968502a58dcf1de3.xdr and b/test-lcm-next/FrozenLedgerKeysTests/968502a58dcf1de3.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/971412d60c95c2db.xdr b/test-lcm-next/FrozenLedgerKeysTests/971412d60c95c2db.xdr index bcba1ad0e4..ff165e23b0 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/971412d60c95c2db.xdr and b/test-lcm-next/FrozenLedgerKeysTests/971412d60c95c2db.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/97b646ed2e8eda2c.xdr b/test-lcm-next/FrozenLedgerKeysTests/97b646ed2e8eda2c.xdr index fdab5e2485..8a4304dfbd 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/97b646ed2e8eda2c.xdr and b/test-lcm-next/FrozenLedgerKeysTests/97b646ed2e8eda2c.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/97d8d6bf78ee1cbb.xdr b/test-lcm-next/FrozenLedgerKeysTests/97d8d6bf78ee1cbb.xdr index 7cc0aa5cf1..a6fcb38d87 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/97d8d6bf78ee1cbb.xdr and b/test-lcm-next/FrozenLedgerKeysTests/97d8d6bf78ee1cbb.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/9b73d1cab44af790.xdr b/test-lcm-next/FrozenLedgerKeysTests/9b73d1cab44af790.xdr index fd030e98ce..5c1cd3552c 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/9b73d1cab44af790.xdr and b/test-lcm-next/FrozenLedgerKeysTests/9b73d1cab44af790.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/9de21df1739fe25b.xdr b/test-lcm-next/FrozenLedgerKeysTests/9de21df1739fe25b.xdr index 0819520d46..2919e1751a 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/9de21df1739fe25b.xdr and b/test-lcm-next/FrozenLedgerKeysTests/9de21df1739fe25b.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/9f2fb4fd2d09521f.xdr b/test-lcm-next/FrozenLedgerKeysTests/9f2fb4fd2d09521f.xdr index 3cf4907099..fbb11d506e 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/9f2fb4fd2d09521f.xdr and b/test-lcm-next/FrozenLedgerKeysTests/9f2fb4fd2d09521f.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/9f45874d5e43989d.xdr b/test-lcm-next/FrozenLedgerKeysTests/9f45874d5e43989d.xdr index e145ca9fd9..8a8b8bf17d 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/9f45874d5e43989d.xdr and b/test-lcm-next/FrozenLedgerKeysTests/9f45874d5e43989d.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/9fdee40b4a6bf39b.xdr b/test-lcm-next/FrozenLedgerKeysTests/9fdee40b4a6bf39b.xdr index 7cabcb09c8..e944c6eefc 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/9fdee40b4a6bf39b.xdr and b/test-lcm-next/FrozenLedgerKeysTests/9fdee40b4a6bf39b.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/9ffa8716dcb286c0.xdr b/test-lcm-next/FrozenLedgerKeysTests/9ffa8716dcb286c0.xdr index 91a182bf91..9af25d9096 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/9ffa8716dcb286c0.xdr and b/test-lcm-next/FrozenLedgerKeysTests/9ffa8716dcb286c0.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/a52d069eff3b6fc1.xdr b/test-lcm-next/FrozenLedgerKeysTests/a52d069eff3b6fc1.xdr index 383d186cec..d5bfd1cb22 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/a52d069eff3b6fc1.xdr and b/test-lcm-next/FrozenLedgerKeysTests/a52d069eff3b6fc1.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/a6cf4357be0adade.xdr b/test-lcm-next/FrozenLedgerKeysTests/a6cf4357be0adade.xdr index 1ef88ffb65..6e51cd3a54 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/a6cf4357be0adade.xdr and b/test-lcm-next/FrozenLedgerKeysTests/a6cf4357be0adade.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/a7277d96a361ea72.xdr b/test-lcm-next/FrozenLedgerKeysTests/a7277d96a361ea72.xdr index 0fc7e4e3ba..6c501a316a 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/a7277d96a361ea72.xdr and b/test-lcm-next/FrozenLedgerKeysTests/a7277d96a361ea72.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/a83e38c7dc6324a6.xdr b/test-lcm-next/FrozenLedgerKeysTests/a83e38c7dc6324a6.xdr index b64ff821de..7795b60d4a 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/a83e38c7dc6324a6.xdr and b/test-lcm-next/FrozenLedgerKeysTests/a83e38c7dc6324a6.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/a90b9e3d0747fc24.xdr b/test-lcm-next/FrozenLedgerKeysTests/a90b9e3d0747fc24.xdr index 2e3d9f01f3..2209f65cf8 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/a90b9e3d0747fc24.xdr and b/test-lcm-next/FrozenLedgerKeysTests/a90b9e3d0747fc24.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/a99193a97590525a.xdr b/test-lcm-next/FrozenLedgerKeysTests/a99193a97590525a.xdr index b3d5be689d..d6220abeec 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/a99193a97590525a.xdr and b/test-lcm-next/FrozenLedgerKeysTests/a99193a97590525a.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/aed719c9f3cffe43.xdr b/test-lcm-next/FrozenLedgerKeysTests/aed719c9f3cffe43.xdr index a38cab17d2..02b78d3a0e 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/aed719c9f3cffe43.xdr and b/test-lcm-next/FrozenLedgerKeysTests/aed719c9f3cffe43.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/b0eee42015a2800e.xdr b/test-lcm-next/FrozenLedgerKeysTests/b0eee42015a2800e.xdr index e01399dae0..2c08bb6e09 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/b0eee42015a2800e.xdr and b/test-lcm-next/FrozenLedgerKeysTests/b0eee42015a2800e.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/b1412f5ef3c6844a.xdr b/test-lcm-next/FrozenLedgerKeysTests/b1412f5ef3c6844a.xdr index 44d0736557..9b94df0b52 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/b1412f5ef3c6844a.xdr and b/test-lcm-next/FrozenLedgerKeysTests/b1412f5ef3c6844a.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/b17d186e3b574cc9.xdr b/test-lcm-next/FrozenLedgerKeysTests/b17d186e3b574cc9.xdr index 7a601cc4a0..c47d7ffcc7 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/b17d186e3b574cc9.xdr and b/test-lcm-next/FrozenLedgerKeysTests/b17d186e3b574cc9.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/b56fb200a9935407.xdr b/test-lcm-next/FrozenLedgerKeysTests/b56fb200a9935407.xdr index 8a9a9d0280..5c4bee3e94 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/b56fb200a9935407.xdr and b/test-lcm-next/FrozenLedgerKeysTests/b56fb200a9935407.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/b76397dcb0e46f93.xdr b/test-lcm-next/FrozenLedgerKeysTests/b76397dcb0e46f93.xdr index fafb98a3fb..dc338f976a 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/b76397dcb0e46f93.xdr and b/test-lcm-next/FrozenLedgerKeysTests/b76397dcb0e46f93.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/b871f9e66b3df4a4.xdr b/test-lcm-next/FrozenLedgerKeysTests/b871f9e66b3df4a4.xdr index a3294c274d..a727b5df51 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/b871f9e66b3df4a4.xdr and b/test-lcm-next/FrozenLedgerKeysTests/b871f9e66b3df4a4.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/be86f12c1a3c4428.xdr b/test-lcm-next/FrozenLedgerKeysTests/be86f12c1a3c4428.xdr index 987db1e090..2ed1856434 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/be86f12c1a3c4428.xdr and b/test-lcm-next/FrozenLedgerKeysTests/be86f12c1a3c4428.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/bf172f61f0f1bf37.xdr b/test-lcm-next/FrozenLedgerKeysTests/bf172f61f0f1bf37.xdr index 358f1cdfb6..aa90c89f63 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/bf172f61f0f1bf37.xdr and b/test-lcm-next/FrozenLedgerKeysTests/bf172f61f0f1bf37.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/c1da25bdd5f37532.xdr b/test-lcm-next/FrozenLedgerKeysTests/c1da25bdd5f37532.xdr index 3cf4907099..fbb11d506e 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/c1da25bdd5f37532.xdr and b/test-lcm-next/FrozenLedgerKeysTests/c1da25bdd5f37532.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/c56e571da1b376c9.xdr b/test-lcm-next/FrozenLedgerKeysTests/c56e571da1b376c9.xdr index 2d860e4b45..9ea44424b6 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/c56e571da1b376c9.xdr and b/test-lcm-next/FrozenLedgerKeysTests/c56e571da1b376c9.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/c981497abd448c3f.xdr b/test-lcm-next/FrozenLedgerKeysTests/c981497abd448c3f.xdr index 58697c6134..57468e7a5a 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/c981497abd448c3f.xdr and b/test-lcm-next/FrozenLedgerKeysTests/c981497abd448c3f.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/cbfd70c53b96ff0c.xdr b/test-lcm-next/FrozenLedgerKeysTests/cbfd70c53b96ff0c.xdr index 2e3d9f01f3..2209f65cf8 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/cbfd70c53b96ff0c.xdr and b/test-lcm-next/FrozenLedgerKeysTests/cbfd70c53b96ff0c.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/cd95267fadf7bb22.xdr b/test-lcm-next/FrozenLedgerKeysTests/cd95267fadf7bb22.xdr index 68a7ccc582..87d443a65b 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/cd95267fadf7bb22.xdr and b/test-lcm-next/FrozenLedgerKeysTests/cd95267fadf7bb22.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/ce3d2b256f805a34.xdr b/test-lcm-next/FrozenLedgerKeysTests/ce3d2b256f805a34.xdr index 875412be08..14990d03c6 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/ce3d2b256f805a34.xdr and b/test-lcm-next/FrozenLedgerKeysTests/ce3d2b256f805a34.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/cfbae9c5c8b66206.xdr b/test-lcm-next/FrozenLedgerKeysTests/cfbae9c5c8b66206.xdr index d6839864e6..ff8ef60e9c 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/cfbae9c5c8b66206.xdr and b/test-lcm-next/FrozenLedgerKeysTests/cfbae9c5c8b66206.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/d4abe4b07bba98dd.xdr b/test-lcm-next/FrozenLedgerKeysTests/d4abe4b07bba98dd.xdr index e100351f10..6310d66819 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/d4abe4b07bba98dd.xdr and b/test-lcm-next/FrozenLedgerKeysTests/d4abe4b07bba98dd.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/d55bb5b0991f7f30.xdr b/test-lcm-next/FrozenLedgerKeysTests/d55bb5b0991f7f30.xdr index 13f1b8c9e8..d8e04c2a6f 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/d55bb5b0991f7f30.xdr and b/test-lcm-next/FrozenLedgerKeysTests/d55bb5b0991f7f30.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/d62a40e1e6c94407.xdr b/test-lcm-next/FrozenLedgerKeysTests/d62a40e1e6c94407.xdr index 5bfd89ac7d..71dc2c46db 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/d62a40e1e6c94407.xdr and b/test-lcm-next/FrozenLedgerKeysTests/d62a40e1e6c94407.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/d7889dabf9db8ae0.xdr b/test-lcm-next/FrozenLedgerKeysTests/d7889dabf9db8ae0.xdr index 723f06214a..ff6af3140f 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/d7889dabf9db8ae0.xdr and b/test-lcm-next/FrozenLedgerKeysTests/d7889dabf9db8ae0.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/d8ed7e56f9a5fa9a.xdr b/test-lcm-next/FrozenLedgerKeysTests/d8ed7e56f9a5fa9a.xdr index 8592a1e416..6db2ef5498 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/d8ed7e56f9a5fa9a.xdr and b/test-lcm-next/FrozenLedgerKeysTests/d8ed7e56f9a5fa9a.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/d9197ac0364b429d.xdr b/test-lcm-next/FrozenLedgerKeysTests/d9197ac0364b429d.xdr index 2e3d9f01f3..2209f65cf8 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/d9197ac0364b429d.xdr and b/test-lcm-next/FrozenLedgerKeysTests/d9197ac0364b429d.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/d9a26f74c76ec5fe.xdr b/test-lcm-next/FrozenLedgerKeysTests/d9a26f74c76ec5fe.xdr index 5559a4615b..0ba2e81f1f 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/d9a26f74c76ec5fe.xdr and b/test-lcm-next/FrozenLedgerKeysTests/d9a26f74c76ec5fe.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/dda5baf59d9d24fa.xdr b/test-lcm-next/FrozenLedgerKeysTests/dda5baf59d9d24fa.xdr index 6d32803222..df190e8942 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/dda5baf59d9d24fa.xdr and b/test-lcm-next/FrozenLedgerKeysTests/dda5baf59d9d24fa.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/dfaa9a4ba1d5bac8.xdr b/test-lcm-next/FrozenLedgerKeysTests/dfaa9a4ba1d5bac8.xdr index 3a2ee57a9b..e5f89b4be9 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/dfaa9a4ba1d5bac8.xdr and b/test-lcm-next/FrozenLedgerKeysTests/dfaa9a4ba1d5bac8.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/e54f97e007f28f3a.xdr b/test-lcm-next/FrozenLedgerKeysTests/e54f97e007f28f3a.xdr index 00bc69dd84..f70157c244 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/e54f97e007f28f3a.xdr and b/test-lcm-next/FrozenLedgerKeysTests/e54f97e007f28f3a.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/eb07a254c1f6d187.xdr b/test-lcm-next/FrozenLedgerKeysTests/eb07a254c1f6d187.xdr index 9d783f518b..29889ce521 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/eb07a254c1f6d187.xdr and b/test-lcm-next/FrozenLedgerKeysTests/eb07a254c1f6d187.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/eb5978da5a37cd47.xdr b/test-lcm-next/FrozenLedgerKeysTests/eb5978da5a37cd47.xdr index 358f1cdfb6..aa90c89f63 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/eb5978da5a37cd47.xdr and b/test-lcm-next/FrozenLedgerKeysTests/eb5978da5a37cd47.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/f00ec39cd6781faf.xdr b/test-lcm-next/FrozenLedgerKeysTests/f00ec39cd6781faf.xdr index 9c083d59b2..5a44b5af3a 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/f00ec39cd6781faf.xdr and b/test-lcm-next/FrozenLedgerKeysTests/f00ec39cd6781faf.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/f1c47fc06e54b090.xdr b/test-lcm-next/FrozenLedgerKeysTests/f1c47fc06e54b090.xdr index 626a9a62a3..7e6340dac4 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/f1c47fc06e54b090.xdr and b/test-lcm-next/FrozenLedgerKeysTests/f1c47fc06e54b090.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/f4bb246ec9780039.xdr b/test-lcm-next/FrozenLedgerKeysTests/f4bb246ec9780039.xdr index 370fa11b70..1c51ccf1fc 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/f4bb246ec9780039.xdr and b/test-lcm-next/FrozenLedgerKeysTests/f4bb246ec9780039.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/f58a584ef5d545bb.xdr b/test-lcm-next/FrozenLedgerKeysTests/f58a584ef5d545bb.xdr index 3cf4907099..fbb11d506e 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/f58a584ef5d545bb.xdr and b/test-lcm-next/FrozenLedgerKeysTests/f58a584ef5d545bb.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/f5cc954b49f207f0.xdr b/test-lcm-next/FrozenLedgerKeysTests/f5cc954b49f207f0.xdr index 7e70870781..0c8a48284e 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/f5cc954b49f207f0.xdr and b/test-lcm-next/FrozenLedgerKeysTests/f5cc954b49f207f0.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/f790a9565ea4b914.xdr b/test-lcm-next/FrozenLedgerKeysTests/f790a9565ea4b914.xdr index 5bdde584fe..301df3b9ff 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/f790a9565ea4b914.xdr and b/test-lcm-next/FrozenLedgerKeysTests/f790a9565ea4b914.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/f792ea98a5b2057e.xdr b/test-lcm-next/FrozenLedgerKeysTests/f792ea98a5b2057e.xdr index 2e3d9f01f3..2209f65cf8 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/f792ea98a5b2057e.xdr and b/test-lcm-next/FrozenLedgerKeysTests/f792ea98a5b2057e.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/f84821960123588e.xdr b/test-lcm-next/FrozenLedgerKeysTests/f84821960123588e.xdr index 49ec5303c3..eebff4aa20 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/f84821960123588e.xdr and b/test-lcm-next/FrozenLedgerKeysTests/f84821960123588e.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/fd5da6cc6e5623a5.xdr b/test-lcm-next/FrozenLedgerKeysTests/fd5da6cc6e5623a5.xdr index ee9ca9407c..a1d496a98b 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/fd5da6cc6e5623a5.xdr and b/test-lcm-next/FrozenLedgerKeysTests/fd5da6cc6e5623a5.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/fe99942900ae7d38.xdr b/test-lcm-next/FrozenLedgerKeysTests/fe99942900ae7d38.xdr index 7700740087..1b97398ac9 100644 Binary files a/test-lcm-next/FrozenLedgerKeysTests/fe99942900ae7d38.xdr and b/test-lcm-next/FrozenLedgerKeysTests/fe99942900ae7d38.xdr differ diff --git a/test-lcm-next/FrozenLedgerKeysTests/index.json b/test-lcm-next/FrozenLedgerKeysTests/index.json index a1aa219356..e54cc9d726 100644 --- a/test-lcm-next/FrozenLedgerKeysTests/index.json +++ b/test-lcm-next/FrozenLedgerKeysTests/index.json @@ -1,4 +1,8 @@ { + "!cfg protocol version" : 29, + "!rng seed" : 12345, + "!test all versions" : false, + "!versions to test" : [ 29 ], "0130d32614dbc252" : "source_trustline_frozen-ManageSellOffer_selling_trustline_frozen", "0269778d4c3c115b" : "source_trustline_frozen-ChangeTrustOp_trustline_frozen", "03768f1cbe0eed0d" : "frozen_ledger_keys_DEX_offer_operations-second_offer_frozen_[create-passive-sell][credit-native][selling-frozen]", diff --git a/test-lcm-next/HerderTests/370dd5e0af5cfa8d.xdr b/test-lcm-next/HerderTests/370dd5e0af5cfa8d.xdr deleted file mode 100644 index 2250741eb7..0000000000 Binary files a/test-lcm-next/HerderTests/370dd5e0af5cfa8d.xdr and /dev/null differ diff --git a/test-lcm-next/HerderTests/index.json b/test-lcm-next/HerderTests/index.json deleted file mode 100644 index 1e17f642e9..0000000000 --- a/test-lcm-next/HerderTests/index.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "370dd5e0af5cfa8d" : "network_externalizes_empty-tx-set_on_missing_value" -} diff --git a/test-lcm-next/InvokeHostFunctionTests/0046300f950c0211.xdr b/test-lcm-next/InvokeHostFunctionTests/0046300f950c0211.xdr index 0937d20c7b..fa40231290 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/0046300f950c0211.xdr and b/test-lcm-next/InvokeHostFunctionTests/0046300f950c0211.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/00e76ef8f869401f.xdr b/test-lcm-next/InvokeHostFunctionTests/00e76ef8f869401f.xdr index 09e2d879ed..320cddab65 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/00e76ef8f869401f.xdr and b/test-lcm-next/InvokeHostFunctionTests/00e76ef8f869401f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/014fcfa4f59b51d4.xdr b/test-lcm-next/InvokeHostFunctionTests/014fcfa4f59b51d4.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/014fcfa4f59b51d4.xdr and b/test-lcm-next/InvokeHostFunctionTests/014fcfa4f59b51d4.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/018599ef4068218e.xdr b/test-lcm-next/InvokeHostFunctionTests/018599ef4068218e.xdr index bd561f92a1..83e4368b0e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/018599ef4068218e.xdr and b/test-lcm-next/InvokeHostFunctionTests/018599ef4068218e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/1d8e86ddd8b11e7b.xdr b/test-lcm-next/InvokeHostFunctionTests/0266bee165a0b438.xdr similarity index 73% rename from test-lcm-next/InvokeHostFunctionTests/1d8e86ddd8b11e7b.xdr rename to test-lcm-next/InvokeHostFunctionTests/0266bee165a0b438.xdr index a1582cff45..325ec849df 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/1d8e86ddd8b11e7b.xdr and b/test-lcm-next/InvokeHostFunctionTests/0266bee165a0b438.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/03560ea94d548ceb.xdr b/test-lcm-next/InvokeHostFunctionTests/03560ea94d548ceb.xdr index 134a1e69cd..8df99a5dae 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/03560ea94d548ceb.xdr and b/test-lcm-next/InvokeHostFunctionTests/03560ea94d548ceb.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/03a5e8d5ea1d3a10.xdr b/test-lcm-next/InvokeHostFunctionTests/03a5e8d5ea1d3a10.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/03a5e8d5ea1d3a10.xdr and b/test-lcm-next/InvokeHostFunctionTests/03a5e8d5ea1d3a10.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/03df1dc73d71eb00.xdr b/test-lcm-next/InvokeHostFunctionTests/03df1dc73d71eb00.xdr index 2c6df8f7c4..80f77fffdb 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/03df1dc73d71eb00.xdr and b/test-lcm-next/InvokeHostFunctionTests/03df1dc73d71eb00.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/04530f6112a41176.xdr b/test-lcm-next/InvokeHostFunctionTests/04530f6112a41176.xdr index fb221f4afb..41203da660 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/04530f6112a41176.xdr and b/test-lcm-next/InvokeHostFunctionTests/04530f6112a41176.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/048c93e37abb62ea.xdr b/test-lcm-next/InvokeHostFunctionTests/048c93e37abb62ea.xdr index ee3588da45..c4fafb960e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/048c93e37abb62ea.xdr and b/test-lcm-next/InvokeHostFunctionTests/048c93e37abb62ea.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/fca3eb413e17400c.xdr b/test-lcm-next/InvokeHostFunctionTests/04c4d4cc1a4c7b46.xdr similarity index 79% rename from test-lcm-next/InvokeHostFunctionTests/fca3eb413e17400c.xdr rename to test-lcm-next/InvokeHostFunctionTests/04c4d4cc1a4c7b46.xdr index eee4f2cc2d..1bb9318a60 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/fca3eb413e17400c.xdr and b/test-lcm-next/InvokeHostFunctionTests/04c4d4cc1a4c7b46.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/0525df1061c74b13.xdr b/test-lcm-next/InvokeHostFunctionTests/0525df1061c74b13.xdr index 6a4ce836a1..617a1cac00 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/0525df1061c74b13.xdr and b/test-lcm-next/InvokeHostFunctionTests/0525df1061c74b13.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/068bb21d88974e0d.xdr b/test-lcm-next/InvokeHostFunctionTests/068bb21d88974e0d.xdr index 1c102e8ac5..4380f2fe55 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/068bb21d88974e0d.xdr and b/test-lcm-next/InvokeHostFunctionTests/068bb21d88974e0d.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/06cbc0fe2a3f8280.xdr b/test-lcm-next/InvokeHostFunctionTests/06cbc0fe2a3f8280.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/06cbc0fe2a3f8280.xdr and b/test-lcm-next/InvokeHostFunctionTests/06cbc0fe2a3f8280.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/075b4bea01d35444.xdr b/test-lcm-next/InvokeHostFunctionTests/075b4bea01d35444.xdr index 777e20605a..348841ccdc 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/075b4bea01d35444.xdr and b/test-lcm-next/InvokeHostFunctionTests/075b4bea01d35444.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6816f0c97293fa83.xdr b/test-lcm-next/InvokeHostFunctionTests/07a8d36187cd3462.xdr similarity index 73% rename from test-lcm-current/InvokeHostFunctionTests/6816f0c97293fa83.xdr rename to test-lcm-next/InvokeHostFunctionTests/07a8d36187cd3462.xdr index 4145c0abf4..6206152566 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/6816f0c97293fa83.xdr and b/test-lcm-next/InvokeHostFunctionTests/07a8d36187cd3462.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/07c78b13b19c1cca.xdr b/test-lcm-next/InvokeHostFunctionTests/07c78b13b19c1cca.xdr index 9dfbfddb0f..c1de44f9c9 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/07c78b13b19c1cca.xdr and b/test-lcm-next/InvokeHostFunctionTests/07c78b13b19c1cca.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/090b6171bc887479.xdr b/test-lcm-next/InvokeHostFunctionTests/090b6171bc887479.xdr index c290a1122d..d12b0f8627 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/090b6171bc887479.xdr and b/test-lcm-next/InvokeHostFunctionTests/090b6171bc887479.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/091f6d22b48f7501.xdr b/test-lcm-next/InvokeHostFunctionTests/091f6d22b48f7501.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/091f6d22b48f7501.xdr and b/test-lcm-next/InvokeHostFunctionTests/091f6d22b48f7501.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/09b571acb76aa819.xdr b/test-lcm-next/InvokeHostFunctionTests/09b571acb76aa819.xdr index 76808369ea..7e75414741 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/09b571acb76aa819.xdr and b/test-lcm-next/InvokeHostFunctionTests/09b571acb76aa819.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/09e3525781c1197d.xdr b/test-lcm-next/InvokeHostFunctionTests/09e3525781c1197d.xdr index 4ed0b9ce11..6d1eff9658 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/09e3525781c1197d.xdr and b/test-lcm-next/InvokeHostFunctionTests/09e3525781c1197d.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/09efa855e6310bd6.xdr b/test-lcm-next/InvokeHostFunctionTests/09efa855e6310bd6.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/09efa855e6310bd6.xdr and b/test-lcm-next/InvokeHostFunctionTests/09efa855e6310bd6.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/0a490b46a65b3382.xdr b/test-lcm-next/InvokeHostFunctionTests/0a490b46a65b3382.xdr index 76b9433f41..d3cb1c1e7e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/0a490b46a65b3382.xdr and b/test-lcm-next/InvokeHostFunctionTests/0a490b46a65b3382.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/0a50a6fd01fac663.xdr b/test-lcm-next/InvokeHostFunctionTests/0a50a6fd01fac663.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/0a50a6fd01fac663.xdr and b/test-lcm-next/InvokeHostFunctionTests/0a50a6fd01fac663.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/0a5c74765d1481ad.xdr b/test-lcm-next/InvokeHostFunctionTests/0a5c74765d1481ad.xdr index cef2a2a4c7..4da5591588 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/0a5c74765d1481ad.xdr and b/test-lcm-next/InvokeHostFunctionTests/0a5c74765d1481ad.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/0a7c39ca98f1ae85.xdr b/test-lcm-next/InvokeHostFunctionTests/0a7c39ca98f1ae85.xdr index 7bf1437260..73f77ae6d6 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/0a7c39ca98f1ae85.xdr and b/test-lcm-next/InvokeHostFunctionTests/0a7c39ca98f1ae85.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/0a9a9e7662e8f5b0.xdr b/test-lcm-next/InvokeHostFunctionTests/0a9a9e7662e8f5b0.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/0a9a9e7662e8f5b0.xdr and b/test-lcm-next/InvokeHostFunctionTests/0a9a9e7662e8f5b0.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d888d3403368dc50.xdr b/test-lcm-next/InvokeHostFunctionTests/0a9e15c210b27eb7.xdr similarity index 69% rename from test-lcm-next/InvokeHostFunctionTests/d888d3403368dc50.xdr rename to test-lcm-next/InvokeHostFunctionTests/0a9e15c210b27eb7.xdr index c2ac5e58b6..188d967830 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d888d3403368dc50.xdr and b/test-lcm-next/InvokeHostFunctionTests/0a9e15c210b27eb7.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/0b38afb8b9aaa794.xdr b/test-lcm-next/InvokeHostFunctionTests/0b38afb8b9aaa794.xdr index 539c74145f..891582de2e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/0b38afb8b9aaa794.xdr and b/test-lcm-next/InvokeHostFunctionTests/0b38afb8b9aaa794.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f709a2d8db627467.xdr b/test-lcm-next/InvokeHostFunctionTests/0b51082fea0c09b1.xdr similarity index 69% rename from test-lcm-current/InvokeHostFunctionTests/f709a2d8db627467.xdr rename to test-lcm-next/InvokeHostFunctionTests/0b51082fea0c09b1.xdr index 20e7ec6f6a..fa64787ce6 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f709a2d8db627467.xdr and b/test-lcm-next/InvokeHostFunctionTests/0b51082fea0c09b1.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d8f18264015ca76d.xdr b/test-lcm-next/InvokeHostFunctionTests/0c004ec5e3c54aa7.xdr similarity index 68% rename from test-lcm-next/InvokeHostFunctionTests/d8f18264015ca76d.xdr rename to test-lcm-next/InvokeHostFunctionTests/0c004ec5e3c54aa7.xdr index ba07cd5a12..cb0760a657 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d8f18264015ca76d.xdr and b/test-lcm-next/InvokeHostFunctionTests/0c004ec5e3c54aa7.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/0c35da322a33f3c2.xdr b/test-lcm-next/InvokeHostFunctionTests/0c35da322a33f3c2.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/0c35da322a33f3c2.xdr and b/test-lcm-next/InvokeHostFunctionTests/0c35da322a33f3c2.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/0c43ba995c341a31.xdr b/test-lcm-next/InvokeHostFunctionTests/0c43ba995c341a31.xdr index a919499593..0df92a999b 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/0c43ba995c341a31.xdr and b/test-lcm-next/InvokeHostFunctionTests/0c43ba995c341a31.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/0c92eb78da37bfdd.xdr b/test-lcm-next/InvokeHostFunctionTests/0c92eb78da37bfdd.xdr index 8933acdebc..c08aca21fc 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/0c92eb78da37bfdd.xdr and b/test-lcm-next/InvokeHostFunctionTests/0c92eb78da37bfdd.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/0cb06b7800ce099c.xdr b/test-lcm-next/InvokeHostFunctionTests/0cb06b7800ce099c.xdr index 7f1dd5b74f..7ac599ea98 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/0cb06b7800ce099c.xdr and b/test-lcm-next/InvokeHostFunctionTests/0cb06b7800ce099c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/0cfa6a9a348ad29f.xdr b/test-lcm-next/InvokeHostFunctionTests/0cfa6a9a348ad29f.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/0cfa6a9a348ad29f.xdr and b/test-lcm-next/InvokeHostFunctionTests/0cfa6a9a348ad29f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/0d6e850f5668faef.xdr b/test-lcm-next/InvokeHostFunctionTests/0d6e850f5668faef.xdr index a7d65f6051..1fdf3ba078 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/0d6e850f5668faef.xdr and b/test-lcm-next/InvokeHostFunctionTests/0d6e850f5668faef.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/0e54ece7b7219a81.xdr b/test-lcm-next/InvokeHostFunctionTests/0e54ece7b7219a81.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/0e54ece7b7219a81.xdr and b/test-lcm-next/InvokeHostFunctionTests/0e54ece7b7219a81.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/0f97452228eac10a.xdr b/test-lcm-next/InvokeHostFunctionTests/0f97452228eac10a.xdr index 6f31a67565..89b3c549df 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/0f97452228eac10a.xdr and b/test-lcm-next/InvokeHostFunctionTests/0f97452228eac10a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/102ec8047ba9b73e.xdr b/test-lcm-next/InvokeHostFunctionTests/102ec8047ba9b73e.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/102ec8047ba9b73e.xdr and b/test-lcm-next/InvokeHostFunctionTests/102ec8047ba9b73e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/12400eda8720567b.xdr b/test-lcm-next/InvokeHostFunctionTests/12400eda8720567b.xdr index 4b7d41e9d6..71aed95f40 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/12400eda8720567b.xdr and b/test-lcm-next/InvokeHostFunctionTests/12400eda8720567b.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/12e5bf578c813325.xdr b/test-lcm-next/InvokeHostFunctionTests/12e5bf578c813325.xdr index b957a4ec28..025b778505 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/12e5bf578c813325.xdr and b/test-lcm-next/InvokeHostFunctionTests/12e5bf578c813325.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/133235aeb624b4fb.xdr b/test-lcm-next/InvokeHostFunctionTests/133235aeb624b4fb.xdr index ea0b044779..85ecd9bb67 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/133235aeb624b4fb.xdr and b/test-lcm-next/InvokeHostFunctionTests/133235aeb624b4fb.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/1395745c935c8a14.xdr b/test-lcm-next/InvokeHostFunctionTests/1395745c935c8a14.xdr index afb5567bd8..d0c5bb5c32 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/1395745c935c8a14.xdr and b/test-lcm-next/InvokeHostFunctionTests/1395745c935c8a14.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/13ddfbcd91340230.xdr b/test-lcm-next/InvokeHostFunctionTests/13ddfbcd91340230.xdr index d8e4e8647d..dd8022b82d 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/13ddfbcd91340230.xdr and b/test-lcm-next/InvokeHostFunctionTests/13ddfbcd91340230.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/13f416a9b53c779a.xdr b/test-lcm-next/InvokeHostFunctionTests/13f416a9b53c779a.xdr index 44a654fe70..20cc816e9e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/13f416a9b53c779a.xdr and b/test-lcm-next/InvokeHostFunctionTests/13f416a9b53c779a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/14407acab9b18289.xdr b/test-lcm-next/InvokeHostFunctionTests/14407acab9b18289.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/14407acab9b18289.xdr and b/test-lcm-next/InvokeHostFunctionTests/14407acab9b18289.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/1452c35fbbe6c3ab.xdr b/test-lcm-next/InvokeHostFunctionTests/1452c35fbbe6c3ab.xdr index 4e7c305532..a477a8f399 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/1452c35fbbe6c3ab.xdr and b/test-lcm-next/InvokeHostFunctionTests/1452c35fbbe6c3ab.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/1484cd9b56513ed7.xdr b/test-lcm-next/InvokeHostFunctionTests/1484cd9b56513ed7.xdr index f7f104a883..e6149d74b8 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/1484cd9b56513ed7.xdr and b/test-lcm-next/InvokeHostFunctionTests/1484cd9b56513ed7.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/15bc83b6792d6072.xdr b/test-lcm-next/InvokeHostFunctionTests/15bc83b6792d6072.xdr index ac1b967da3..89a193becb 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/15bc83b6792d6072.xdr and b/test-lcm-next/InvokeHostFunctionTests/15bc83b6792d6072.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/15ecaba55fd111cc.xdr b/test-lcm-next/InvokeHostFunctionTests/15ecaba55fd111cc.xdr index 7b573103c5..8702c1f832 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/15ecaba55fd111cc.xdr and b/test-lcm-next/InvokeHostFunctionTests/15ecaba55fd111cc.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/1648891cd7b9ac4f.xdr b/test-lcm-next/InvokeHostFunctionTests/1648891cd7b9ac4f.xdr index 6f13f1a7b7..2707ee3081 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/1648891cd7b9ac4f.xdr and b/test-lcm-next/InvokeHostFunctionTests/1648891cd7b9ac4f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/165a1612aefb1f12.xdr b/test-lcm-next/InvokeHostFunctionTests/165a1612aefb1f12.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/165a1612aefb1f12.xdr and b/test-lcm-next/InvokeHostFunctionTests/165a1612aefb1f12.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/169611b4e9b946c9.xdr b/test-lcm-next/InvokeHostFunctionTests/169611b4e9b946c9.xdr index 98215a3a71..82f9a0b28e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/169611b4e9b946c9.xdr and b/test-lcm-next/InvokeHostFunctionTests/169611b4e9b946c9.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/169eaf7fc82af3dc.xdr b/test-lcm-next/InvokeHostFunctionTests/169eaf7fc82af3dc.xdr index d7eff8e6d2..62ab1615ec 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/169eaf7fc82af3dc.xdr and b/test-lcm-next/InvokeHostFunctionTests/169eaf7fc82af3dc.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/16bac056666df725.xdr b/test-lcm-next/InvokeHostFunctionTests/16bac056666df725.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/16bac056666df725.xdr and b/test-lcm-next/InvokeHostFunctionTests/16bac056666df725.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/13d21e8479cc1108.xdr b/test-lcm-next/InvokeHostFunctionTests/170512fdcfd48e15.xdr similarity index 71% rename from test-lcm-current/InvokeHostFunctionTests/13d21e8479cc1108.xdr rename to test-lcm-next/InvokeHostFunctionTests/170512fdcfd48e15.xdr index 194dcc1f06..e29798cabe 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/13d21e8479cc1108.xdr and b/test-lcm-next/InvokeHostFunctionTests/170512fdcfd48e15.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/192dc34906478ab9.xdr b/test-lcm-next/InvokeHostFunctionTests/192dc34906478ab9.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/192dc34906478ab9.xdr and b/test-lcm-next/InvokeHostFunctionTests/192dc34906478ab9.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/193297e2240649fc.xdr b/test-lcm-next/InvokeHostFunctionTests/193297e2240649fc.xdr index dc5e47c607..6f08450e54 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/193297e2240649fc.xdr and b/test-lcm-next/InvokeHostFunctionTests/193297e2240649fc.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/1967a2d9962bb619.xdr b/test-lcm-next/InvokeHostFunctionTests/1967a2d9962bb619.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/1967a2d9962bb619.xdr and b/test-lcm-next/InvokeHostFunctionTests/1967a2d9962bb619.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/198ad94ac0412a8b.xdr b/test-lcm-next/InvokeHostFunctionTests/198ad94ac0412a8b.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/198ad94ac0412a8b.xdr and b/test-lcm-next/InvokeHostFunctionTests/198ad94ac0412a8b.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/1a8c5902e4afd03e.xdr b/test-lcm-next/InvokeHostFunctionTests/1a8c5902e4afd03e.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/1a8c5902e4afd03e.xdr and b/test-lcm-next/InvokeHostFunctionTests/1a8c5902e4afd03e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/1adc68cc7a5cf88e.xdr b/test-lcm-next/InvokeHostFunctionTests/1adc68cc7a5cf88e.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/1adc68cc7a5cf88e.xdr and b/test-lcm-next/InvokeHostFunctionTests/1adc68cc7a5cf88e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/1b18e4016bfdf294.xdr b/test-lcm-next/InvokeHostFunctionTests/1b18e4016bfdf294.xdr index cfb179311a..87610f8810 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/1b18e4016bfdf294.xdr and b/test-lcm-next/InvokeHostFunctionTests/1b18e4016bfdf294.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/1c3d83a0318651b9.xdr b/test-lcm-next/InvokeHostFunctionTests/1c3d83a0318651b9.xdr index 19f8b7a757..bb4d0633ee 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/1c3d83a0318651b9.xdr and b/test-lcm-next/InvokeHostFunctionTests/1c3d83a0318651b9.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/a0964aad16627449.xdr b/test-lcm-next/InvokeHostFunctionTests/1cf2a7976fb37347.xdr similarity index 68% rename from test-lcm-next/InvokeHostFunctionTests/a0964aad16627449.xdr rename to test-lcm-next/InvokeHostFunctionTests/1cf2a7976fb37347.xdr index 385c6cb0b0..d7836cf37a 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/a0964aad16627449.xdr and b/test-lcm-next/InvokeHostFunctionTests/1cf2a7976fb37347.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/1d5bfe4be2ebaacb.xdr b/test-lcm-next/InvokeHostFunctionTests/1d5bfe4be2ebaacb.xdr deleted file mode 100644 index 80f112acdb..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/1d5bfe4be2ebaacb.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/1dd0d92b94ce7c6f.xdr b/test-lcm-next/InvokeHostFunctionTests/1dd0d92b94ce7c6f.xdr index 1718d802b8..f7bfd44de0 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/1dd0d92b94ce7c6f.xdr and b/test-lcm-next/InvokeHostFunctionTests/1dd0d92b94ce7c6f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/a472c5e6b0b3d40c.xdr b/test-lcm-next/InvokeHostFunctionTests/1e3b9bd5e2a72ad7.xdr similarity index 75% rename from test-lcm-current/InvokeHostFunctionTests/a472c5e6b0b3d40c.xdr rename to test-lcm-next/InvokeHostFunctionTests/1e3b9bd5e2a72ad7.xdr index f3dcf72594..5f8dd57fb2 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/a472c5e6b0b3d40c.xdr and b/test-lcm-next/InvokeHostFunctionTests/1e3b9bd5e2a72ad7.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/1e3c70b0ecdbfb4f.xdr b/test-lcm-next/InvokeHostFunctionTests/1e3c70b0ecdbfb4f.xdr index 962c7b24d2..129700d095 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/1e3c70b0ecdbfb4f.xdr and b/test-lcm-next/InvokeHostFunctionTests/1e3c70b0ecdbfb4f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/1ec1111288c846ad.xdr b/test-lcm-next/InvokeHostFunctionTests/1ec1111288c846ad.xdr index a6d3f9f16f..76dc8385c9 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/1ec1111288c846ad.xdr and b/test-lcm-next/InvokeHostFunctionTests/1ec1111288c846ad.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/59c181d5ff7acc7e.xdr b/test-lcm-next/InvokeHostFunctionTests/1f15add1dc0ddc92.xdr similarity index 67% rename from test-lcm-next/InvokeHostFunctionTests/59c181d5ff7acc7e.xdr rename to test-lcm-next/InvokeHostFunctionTests/1f15add1dc0ddc92.xdr index 54fbbd1e84..b3fc0a6dec 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/59c181d5ff7acc7e.xdr and b/test-lcm-next/InvokeHostFunctionTests/1f15add1dc0ddc92.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/1f62f6743bb52550.xdr b/test-lcm-next/InvokeHostFunctionTests/1f62f6743bb52550.xdr index c003080412..31b23f74e7 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/1f62f6743bb52550.xdr and b/test-lcm-next/InvokeHostFunctionTests/1f62f6743bb52550.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2055896750cd175f.xdr b/test-lcm-next/InvokeHostFunctionTests/2055896750cd175f.xdr new file mode 100644 index 0000000000..c51cf194c7 Binary files /dev/null and b/test-lcm-next/InvokeHostFunctionTests/2055896750cd175f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/20868c9e218c2273.xdr b/test-lcm-next/InvokeHostFunctionTests/20868c9e218c2273.xdr deleted file mode 100644 index dc6b6360c9..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/20868c9e218c2273.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/20a6a4892d5acc69.xdr b/test-lcm-next/InvokeHostFunctionTests/20a6a4892d5acc69.xdr index c30db93ba7..381176e2c8 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/20a6a4892d5acc69.xdr and b/test-lcm-next/InvokeHostFunctionTests/20a6a4892d5acc69.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/20b9b462d5735ae2.xdr b/test-lcm-next/InvokeHostFunctionTests/20b9b462d5735ae2.xdr index 92007833c9..ab81cf3fd6 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/20b9b462d5735ae2.xdr and b/test-lcm-next/InvokeHostFunctionTests/20b9b462d5735ae2.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/20c2b0f439ace889.xdr b/test-lcm-next/InvokeHostFunctionTests/20c2b0f439ace889.xdr index 17b0beb3ea..350be6cc10 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/20c2b0f439ace889.xdr and b/test-lcm-next/InvokeHostFunctionTests/20c2b0f439ace889.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/211f4a93951f94b4.xdr b/test-lcm-next/InvokeHostFunctionTests/211f4a93951f94b4.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/211f4a93951f94b4.xdr and b/test-lcm-next/InvokeHostFunctionTests/211f4a93951f94b4.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/21938ae254995cd4.xdr b/test-lcm-next/InvokeHostFunctionTests/21938ae254995cd4.xdr index b05db29650..3dd8ca95ff 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/21938ae254995cd4.xdr and b/test-lcm-next/InvokeHostFunctionTests/21938ae254995cd4.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/21ac7793688994ad.xdr b/test-lcm-next/InvokeHostFunctionTests/21ac7793688994ad.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/21ac7793688994ad.xdr and b/test-lcm-next/InvokeHostFunctionTests/21ac7793688994ad.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/21c43b92b819267f.xdr b/test-lcm-next/InvokeHostFunctionTests/21c43b92b819267f.xdr deleted file mode 100644 index aa4ec39186..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/21c43b92b819267f.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/21e553dd1071721a.xdr b/test-lcm-next/InvokeHostFunctionTests/21e553dd1071721a.xdr index 728a69d78d..5363862621 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/21e553dd1071721a.xdr and b/test-lcm-next/InvokeHostFunctionTests/21e553dd1071721a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/221f1cad327fb891.xdr b/test-lcm-next/InvokeHostFunctionTests/221f1cad327fb891.xdr index 1ceffcbfe2..d8834ed978 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/221f1cad327fb891.xdr and b/test-lcm-next/InvokeHostFunctionTests/221f1cad327fb891.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/227f785ddbb9ab40.xdr b/test-lcm-next/InvokeHostFunctionTests/227f785ddbb9ab40.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/227f785ddbb9ab40.xdr and b/test-lcm-next/InvokeHostFunctionTests/227f785ddbb9ab40.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2287bf75d44d6db2.xdr b/test-lcm-next/InvokeHostFunctionTests/2287bf75d44d6db2.xdr index 1daf4ad2d9..c13175795d 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/2287bf75d44d6db2.xdr and b/test-lcm-next/InvokeHostFunctionTests/2287bf75d44d6db2.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e60437880d9a5342.xdr b/test-lcm-next/InvokeHostFunctionTests/22b51f8885cb01b4.xdr similarity index 65% rename from test-lcm-current/InvokeHostFunctionTests/e60437880d9a5342.xdr rename to test-lcm-next/InvokeHostFunctionTests/22b51f8885cb01b4.xdr index 37b28472bc..02f4baa8ec 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e60437880d9a5342.xdr and b/test-lcm-next/InvokeHostFunctionTests/22b51f8885cb01b4.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/22c6c1fecdd3222c.xdr b/test-lcm-next/InvokeHostFunctionTests/22c6c1fecdd3222c.xdr index 9ee61397cd..7277fa5edb 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/22c6c1fecdd3222c.xdr and b/test-lcm-next/InvokeHostFunctionTests/22c6c1fecdd3222c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/416716038d1bf264.xdr b/test-lcm-next/InvokeHostFunctionTests/22c9f0d43d968ecf.xdr similarity index 64% rename from test-lcm-current/InvokeHostFunctionTests/416716038d1bf264.xdr rename to test-lcm-next/InvokeHostFunctionTests/22c9f0d43d968ecf.xdr index 32e8d3e8d0..2b2cb5afb6 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/416716038d1bf264.xdr and b/test-lcm-next/InvokeHostFunctionTests/22c9f0d43d968ecf.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/22df21f5f58e57ba.xdr b/test-lcm-next/InvokeHostFunctionTests/22df21f5f58e57ba.xdr index 404c9f92d1..ab526ae136 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/22df21f5f58e57ba.xdr and b/test-lcm-next/InvokeHostFunctionTests/22df21f5f58e57ba.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2342772cbe3d3e0c.xdr b/test-lcm-next/InvokeHostFunctionTests/2342772cbe3d3e0c.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/2342772cbe3d3e0c.xdr and b/test-lcm-next/InvokeHostFunctionTests/2342772cbe3d3e0c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/9de975c631418bb4.xdr b/test-lcm-next/InvokeHostFunctionTests/236e2db9eeecc097.xdr similarity index 78% rename from test-lcm-current/InvokeHostFunctionTests/9de975c631418bb4.xdr rename to test-lcm-next/InvokeHostFunctionTests/236e2db9eeecc097.xdr index 45727d4e44..e5bc37a3d8 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/9de975c631418bb4.xdr and b/test-lcm-next/InvokeHostFunctionTests/236e2db9eeecc097.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/23733e3ae41a70ad.xdr b/test-lcm-next/InvokeHostFunctionTests/23733e3ae41a70ad.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/23733e3ae41a70ad.xdr and b/test-lcm-next/InvokeHostFunctionTests/23733e3ae41a70ad.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/23900da58ed1ec25.xdr b/test-lcm-next/InvokeHostFunctionTests/23900da58ed1ec25.xdr index 0c5317bea9..baaed3c1d2 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/23900da58ed1ec25.xdr and b/test-lcm-next/InvokeHostFunctionTests/23900da58ed1ec25.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/23a89388bfb65808.xdr b/test-lcm-next/InvokeHostFunctionTests/23a89388bfb65808.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/23a89388bfb65808.xdr and b/test-lcm-next/InvokeHostFunctionTests/23a89388bfb65808.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/246b195d9beac8d6.xdr b/test-lcm-next/InvokeHostFunctionTests/246b195d9beac8d6.xdr index 548bce7ab3..921fc79ca6 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/246b195d9beac8d6.xdr and b/test-lcm-next/InvokeHostFunctionTests/246b195d9beac8d6.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/24bce78365780bb1.xdr b/test-lcm-next/InvokeHostFunctionTests/24bce78365780bb1.xdr deleted file mode 100644 index 2d074f5cc3..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/24bce78365780bb1.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/266b724000b97eb7.xdr b/test-lcm-next/InvokeHostFunctionTests/266b724000b97eb7.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/266b724000b97eb7.xdr and b/test-lcm-next/InvokeHostFunctionTests/266b724000b97eb7.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2691da61cb031c32.xdr b/test-lcm-next/InvokeHostFunctionTests/2691da61cb031c32.xdr deleted file mode 100644 index e9f87aef45..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/2691da61cb031c32.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/8b327a3e8ca7a777.xdr b/test-lcm-next/InvokeHostFunctionTests/26b71e168a5de930.xdr similarity index 73% rename from test-lcm-next/InvokeHostFunctionTests/8b327a3e8ca7a777.xdr rename to test-lcm-next/InvokeHostFunctionTests/26b71e168a5de930.xdr index a1582cff45..325ec849df 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/8b327a3e8ca7a777.xdr and b/test-lcm-next/InvokeHostFunctionTests/26b71e168a5de930.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2703a3e0e62612e8.xdr b/test-lcm-next/InvokeHostFunctionTests/2703a3e0e62612e8.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/2703a3e0e62612e8.xdr and b/test-lcm-next/InvokeHostFunctionTests/2703a3e0e62612e8.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c255cd77235ad3c4.xdr b/test-lcm-next/InvokeHostFunctionTests/27699b1bc4dd968a.xdr similarity index 70% rename from test-lcm-current/InvokeHostFunctionTests/c255cd77235ad3c4.xdr rename to test-lcm-next/InvokeHostFunctionTests/27699b1bc4dd968a.xdr index 376a37aa03..d8ed6c0e9e 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c255cd77235ad3c4.xdr and b/test-lcm-next/InvokeHostFunctionTests/27699b1bc4dd968a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/28480490bc8a3fae.xdr b/test-lcm-next/InvokeHostFunctionTests/28480490bc8a3fae.xdr index 13b22d1b84..e6e48eb1aa 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/28480490bc8a3fae.xdr and b/test-lcm-next/InvokeHostFunctionTests/28480490bc8a3fae.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/285f5877a54deb4e.xdr b/test-lcm-next/InvokeHostFunctionTests/285f5877a54deb4e.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/285f5877a54deb4e.xdr and b/test-lcm-next/InvokeHostFunctionTests/285f5877a54deb4e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/28e6a6a32da1fb63.xdr b/test-lcm-next/InvokeHostFunctionTests/28e6a6a32da1fb63.xdr index 50aeb707b7..742ff7997a 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/28e6a6a32da1fb63.xdr and b/test-lcm-next/InvokeHostFunctionTests/28e6a6a32da1fb63.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/293f7ed0e476294c.xdr b/test-lcm-next/InvokeHostFunctionTests/293f7ed0e476294c.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/293f7ed0e476294c.xdr and b/test-lcm-next/InvokeHostFunctionTests/293f7ed0e476294c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2951f9e3e0241cc4.xdr b/test-lcm-next/InvokeHostFunctionTests/2951f9e3e0241cc4.xdr index a70cd776a9..c2c57e27c5 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/2951f9e3e0241cc4.xdr and b/test-lcm-next/InvokeHostFunctionTests/2951f9e3e0241cc4.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2963054aff2cd923.xdr b/test-lcm-next/InvokeHostFunctionTests/2963054aff2cd923.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/2963054aff2cd923.xdr and b/test-lcm-next/InvokeHostFunctionTests/2963054aff2cd923.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/29b03d37cd3099be.xdr b/test-lcm-next/InvokeHostFunctionTests/29b03d37cd3099be.xdr deleted file mode 100644 index 46be66b5e9..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/29b03d37cd3099be.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2ace299730fbdd52.xdr b/test-lcm-next/InvokeHostFunctionTests/2ace299730fbdd52.xdr deleted file mode 100644 index 445848f583..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/2ace299730fbdd52.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2af87dc6245a802c.xdr b/test-lcm-next/InvokeHostFunctionTests/2af87dc6245a802c.xdr index 6aefee8c95..275b6c039d 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/2af87dc6245a802c.xdr and b/test-lcm-next/InvokeHostFunctionTests/2af87dc6245a802c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2b19e70a8b41485f.xdr b/test-lcm-next/InvokeHostFunctionTests/2b19e70a8b41485f.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/2b19e70a8b41485f.xdr and b/test-lcm-next/InvokeHostFunctionTests/2b19e70a8b41485f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/92680c457fe83aa7.xdr b/test-lcm-next/InvokeHostFunctionTests/2bbb41b7df874a0a.xdr similarity index 72% rename from test-lcm-next/InvokeHostFunctionTests/92680c457fe83aa7.xdr rename to test-lcm-next/InvokeHostFunctionTests/2bbb41b7df874a0a.xdr index 284e0982c2..2abb699d92 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/92680c457fe83aa7.xdr and b/test-lcm-next/InvokeHostFunctionTests/2bbb41b7df874a0a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2c26a7ba5b931a86.xdr b/test-lcm-next/InvokeHostFunctionTests/2c26a7ba5b931a86.xdr index 200977a964..1543a9dd39 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/2c26a7ba5b931a86.xdr and b/test-lcm-next/InvokeHostFunctionTests/2c26a7ba5b931a86.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2ce02d45eeb17f14.xdr b/test-lcm-next/InvokeHostFunctionTests/2ce02d45eeb17f14.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/2ce02d45eeb17f14.xdr and b/test-lcm-next/InvokeHostFunctionTests/2ce02d45eeb17f14.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2d96d9114eebd574.xdr b/test-lcm-next/InvokeHostFunctionTests/2d96d9114eebd574.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/2d96d9114eebd574.xdr and b/test-lcm-next/InvokeHostFunctionTests/2d96d9114eebd574.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2df8d3e47d3c0bbd.xdr b/test-lcm-next/InvokeHostFunctionTests/2df8d3e47d3c0bbd.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/2df8d3e47d3c0bbd.xdr and b/test-lcm-next/InvokeHostFunctionTests/2df8d3e47d3c0bbd.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2e8a9747bf075ec1.xdr b/test-lcm-next/InvokeHostFunctionTests/2e8a9747bf075ec1.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/2e8a9747bf075ec1.xdr and b/test-lcm-next/InvokeHostFunctionTests/2e8a9747bf075ec1.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2e93251358cac25c.xdr b/test-lcm-next/InvokeHostFunctionTests/2e93251358cac25c.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/2e93251358cac25c.xdr and b/test-lcm-next/InvokeHostFunctionTests/2e93251358cac25c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2ea8bcb3f8d6be16.xdr b/test-lcm-next/InvokeHostFunctionTests/2ea8bcb3f8d6be16.xdr index 7b3a81dce9..c6170d1c81 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/2ea8bcb3f8d6be16.xdr and b/test-lcm-next/InvokeHostFunctionTests/2ea8bcb3f8d6be16.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2eb7c4a770d05ab6.xdr b/test-lcm-next/InvokeHostFunctionTests/2eb7c4a770d05ab6.xdr index b12e624a73..83a14d71c0 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/2eb7c4a770d05ab6.xdr and b/test-lcm-next/InvokeHostFunctionTests/2eb7c4a770d05ab6.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2f05b787de3b1118.xdr b/test-lcm-next/InvokeHostFunctionTests/2f05b787de3b1118.xdr deleted file mode 100644 index 2c5cffca75..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/2f05b787de3b1118.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2f06a14dfcb5cd88.xdr b/test-lcm-next/InvokeHostFunctionTests/2f06a14dfcb5cd88.xdr index f235df58ae..7ae6f45d36 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/2f06a14dfcb5cd88.xdr and b/test-lcm-next/InvokeHostFunctionTests/2f06a14dfcb5cd88.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/303dce5b05111d4b.xdr b/test-lcm-next/InvokeHostFunctionTests/303dce5b05111d4b.xdr index 5103657dfe..9320dfd7fa 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/303dce5b05111d4b.xdr and b/test-lcm-next/InvokeHostFunctionTests/303dce5b05111d4b.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/30fb87b1984c9677.xdr b/test-lcm-next/InvokeHostFunctionTests/30fb87b1984c9677.xdr deleted file mode 100644 index a971b0c35c..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/30fb87b1984c9677.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/311f3f548207d5d6.xdr b/test-lcm-next/InvokeHostFunctionTests/311f3f548207d5d6.xdr index 14e8213c61..67caf83876 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/311f3f548207d5d6.xdr and b/test-lcm-next/InvokeHostFunctionTests/311f3f548207d5d6.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/3152146ae3e1601f.xdr b/test-lcm-next/InvokeHostFunctionTests/3152146ae3e1601f.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/3152146ae3e1601f.xdr and b/test-lcm-next/InvokeHostFunctionTests/3152146ae3e1601f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/3279e450f885436a.xdr b/test-lcm-next/InvokeHostFunctionTests/3279e450f885436a.xdr index 31bda81ba8..44d416d77f 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/3279e450f885436a.xdr and b/test-lcm-next/InvokeHostFunctionTests/3279e450f885436a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/9b7aa5eb73370090.xdr b/test-lcm-next/InvokeHostFunctionTests/328c8ae9715589c5.xdr similarity index 67% rename from test-lcm-next/InvokeHostFunctionTests/9b7aa5eb73370090.xdr rename to test-lcm-next/InvokeHostFunctionTests/328c8ae9715589c5.xdr index 3c7a07cd39..997a07f47e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/9b7aa5eb73370090.xdr and b/test-lcm-next/InvokeHostFunctionTests/328c8ae9715589c5.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/329c8076e0ba5976.xdr b/test-lcm-next/InvokeHostFunctionTests/329c8076e0ba5976.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/329c8076e0ba5976.xdr and b/test-lcm-next/InvokeHostFunctionTests/329c8076e0ba5976.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/32e313f52f20cae1.xdr b/test-lcm-next/InvokeHostFunctionTests/32e313f52f20cae1.xdr index 8f427f2fce..193c7ee9e9 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/32e313f52f20cae1.xdr and b/test-lcm-next/InvokeHostFunctionTests/32e313f52f20cae1.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/3304ede4be3e7951.xdr b/test-lcm-next/InvokeHostFunctionTests/3304ede4be3e7951.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/3304ede4be3e7951.xdr and b/test-lcm-next/InvokeHostFunctionTests/3304ede4be3e7951.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/333dd414de3cff58.xdr b/test-lcm-next/InvokeHostFunctionTests/333dd414de3cff58.xdr index 21a69dd27b..bf1323e00e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/333dd414de3cff58.xdr and b/test-lcm-next/InvokeHostFunctionTests/333dd414de3cff58.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/3344d57a6c44b645.xdr b/test-lcm-next/InvokeHostFunctionTests/3344d57a6c44b645.xdr index 0da7e6b76b..de0b06d339 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/3344d57a6c44b645.xdr and b/test-lcm-next/InvokeHostFunctionTests/3344d57a6c44b645.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/3351d4c3d6daa80b.xdr b/test-lcm-next/InvokeHostFunctionTests/3351d4c3d6daa80b.xdr index 691d65acf8..362837fe89 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/3351d4c3d6daa80b.xdr and b/test-lcm-next/InvokeHostFunctionTests/3351d4c3d6daa80b.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/33541948d53d210f.xdr b/test-lcm-next/InvokeHostFunctionTests/33541948d53d210f.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/33541948d53d210f.xdr and b/test-lcm-next/InvokeHostFunctionTests/33541948d53d210f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/43caed795b61ad7c.xdr b/test-lcm-next/InvokeHostFunctionTests/33a3c48e268855e6.xdr similarity index 67% rename from test-lcm-next/InvokeHostFunctionTests/43caed795b61ad7c.xdr rename to test-lcm-next/InvokeHostFunctionTests/33a3c48e268855e6.xdr index fe8f514df5..1481d24104 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/43caed795b61ad7c.xdr and b/test-lcm-next/InvokeHostFunctionTests/33a3c48e268855e6.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/33f7502a4490dbc8.xdr b/test-lcm-next/InvokeHostFunctionTests/33f7502a4490dbc8.xdr index 43a00d2484..d1c84e2ebe 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/33f7502a4490dbc8.xdr and b/test-lcm-next/InvokeHostFunctionTests/33f7502a4490dbc8.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/343cb2cb92cd8aca.xdr b/test-lcm-next/InvokeHostFunctionTests/343cb2cb92cd8aca.xdr index 12aaa5cf69..b18fcfad7a 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/343cb2cb92cd8aca.xdr and b/test-lcm-next/InvokeHostFunctionTests/343cb2cb92cd8aca.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/9c99d2135d9d7d77.xdr b/test-lcm-next/InvokeHostFunctionTests/34486a4b8221b151.xdr similarity index 68% rename from test-lcm-current/InvokeHostFunctionTests/9c99d2135d9d7d77.xdr rename to test-lcm-next/InvokeHostFunctionTests/34486a4b8221b151.xdr index 99859f9aca..99c9886f5d 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/9c99d2135d9d7d77.xdr and b/test-lcm-next/InvokeHostFunctionTests/34486a4b8221b151.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/35117649a10b863c.xdr b/test-lcm-next/InvokeHostFunctionTests/35117649a10b863c.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/35117649a10b863c.xdr and b/test-lcm-next/InvokeHostFunctionTests/35117649a10b863c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/35b99a95ff36fd47.xdr b/test-lcm-next/InvokeHostFunctionTests/35b99a95ff36fd47.xdr index 130c4213cc..33fb070d2d 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/35b99a95ff36fd47.xdr and b/test-lcm-next/InvokeHostFunctionTests/35b99a95ff36fd47.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/36193429a9fd13f9.xdr b/test-lcm-next/InvokeHostFunctionTests/36193429a9fd13f9.xdr index 52dde59d90..914b564dd4 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/36193429a9fd13f9.xdr and b/test-lcm-next/InvokeHostFunctionTests/36193429a9fd13f9.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/3670ca64370e86e7.xdr b/test-lcm-next/InvokeHostFunctionTests/3670ca64370e86e7.xdr index 65779d6022..9a61c10620 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/3670ca64370e86e7.xdr and b/test-lcm-next/InvokeHostFunctionTests/3670ca64370e86e7.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/369cf252c2e22d4e.xdr b/test-lcm-next/InvokeHostFunctionTests/369cf252c2e22d4e.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/369cf252c2e22d4e.xdr and b/test-lcm-next/InvokeHostFunctionTests/369cf252c2e22d4e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/36cdfb826504ca41.xdr b/test-lcm-next/InvokeHostFunctionTests/36cdfb826504ca41.xdr index 5cb5d58662..be6e9c43e4 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/36cdfb826504ca41.xdr and b/test-lcm-next/InvokeHostFunctionTests/36cdfb826504ca41.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/36d1886765b0101c.xdr b/test-lcm-next/InvokeHostFunctionTests/36d1886765b0101c.xdr index e9ec9eab6b..9757ac9fe9 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/36d1886765b0101c.xdr and b/test-lcm-next/InvokeHostFunctionTests/36d1886765b0101c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/370b65bf45bf359a.xdr b/test-lcm-next/InvokeHostFunctionTests/370b65bf45bf359a.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/370b65bf45bf359a.xdr and b/test-lcm-next/InvokeHostFunctionTests/370b65bf45bf359a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/372873b046d26a73.xdr b/test-lcm-next/InvokeHostFunctionTests/372873b046d26a73.xdr index 1774292dcf..c3f65ce6c5 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/372873b046d26a73.xdr and b/test-lcm-next/InvokeHostFunctionTests/372873b046d26a73.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/375e418b328316a8.xdr b/test-lcm-next/InvokeHostFunctionTests/375e418b328316a8.xdr index e64d867013..c8b2847d28 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/375e418b328316a8.xdr and b/test-lcm-next/InvokeHostFunctionTests/375e418b328316a8.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/4dd9d6e34a32ddf2.xdr b/test-lcm-next/InvokeHostFunctionTests/37d222a79102d90a.xdr similarity index 75% rename from test-lcm-current/InvokeHostFunctionTests/4dd9d6e34a32ddf2.xdr rename to test-lcm-next/InvokeHostFunctionTests/37d222a79102d90a.xdr index 6c21a82e92..df035672e0 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/4dd9d6e34a32ddf2.xdr and b/test-lcm-next/InvokeHostFunctionTests/37d222a79102d90a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/38d9c5df4335cbbf.xdr b/test-lcm-next/InvokeHostFunctionTests/38d9c5df4335cbbf.xdr index 8b5b6e152f..8da3062359 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/38d9c5df4335cbbf.xdr and b/test-lcm-next/InvokeHostFunctionTests/38d9c5df4335cbbf.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/394272a31b2f42f9.xdr b/test-lcm-next/InvokeHostFunctionTests/394272a31b2f42f9.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/394272a31b2f42f9.xdr and b/test-lcm-next/InvokeHostFunctionTests/394272a31b2f42f9.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c443a7bba49e0e10.xdr b/test-lcm-next/InvokeHostFunctionTests/39d77461e71857ac.xdr similarity index 80% rename from test-lcm-next/InvokeHostFunctionTests/c443a7bba49e0e10.xdr rename to test-lcm-next/InvokeHostFunctionTests/39d77461e71857ac.xdr index 4fb2d0802f..48c9037319 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c443a7bba49e0e10.xdr and b/test-lcm-next/InvokeHostFunctionTests/39d77461e71857ac.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/3abe7e7946b3a3aa.xdr b/test-lcm-next/InvokeHostFunctionTests/3abe7e7946b3a3aa.xdr index 892e8b402f..a205b9e28e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/3abe7e7946b3a3aa.xdr and b/test-lcm-next/InvokeHostFunctionTests/3abe7e7946b3a3aa.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/3ae3a09a2ac1bace.xdr b/test-lcm-next/InvokeHostFunctionTests/3ae3a09a2ac1bace.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/3ae3a09a2ac1bace.xdr and b/test-lcm-next/InvokeHostFunctionTests/3ae3a09a2ac1bace.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c81666a24e4770bd.xdr b/test-lcm-next/InvokeHostFunctionTests/3aeb08dd6d872f9f.xdr similarity index 77% rename from test-lcm-current/InvokeHostFunctionTests/c81666a24e4770bd.xdr rename to test-lcm-next/InvokeHostFunctionTests/3aeb08dd6d872f9f.xdr index 21d716cc08..35fd229a0d 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c81666a24e4770bd.xdr and b/test-lcm-next/InvokeHostFunctionTests/3aeb08dd6d872f9f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/3b0802ffb3b76400.xdr b/test-lcm-next/InvokeHostFunctionTests/3b0802ffb3b76400.xdr index 1ddbeb226c..059fd5b341 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/3b0802ffb3b76400.xdr and b/test-lcm-next/InvokeHostFunctionTests/3b0802ffb3b76400.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/43caed795b61ad7c.xdr b/test-lcm-next/InvokeHostFunctionTests/3b9daac6049f494f.xdr similarity index 67% rename from test-lcm-current/InvokeHostFunctionTests/43caed795b61ad7c.xdr rename to test-lcm-next/InvokeHostFunctionTests/3b9daac6049f494f.xdr index 69ca342732..baa38a3244 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/43caed795b61ad7c.xdr and b/test-lcm-next/InvokeHostFunctionTests/3b9daac6049f494f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/3be02d8253170239.xdr b/test-lcm-next/InvokeHostFunctionTests/3be02d8253170239.xdr deleted file mode 100644 index 3bd1ebcbec..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/3be02d8253170239.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/3c1ebb13484322b9.xdr b/test-lcm-next/InvokeHostFunctionTests/3c1ebb13484322b9.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/3c1ebb13484322b9.xdr and b/test-lcm-next/InvokeHostFunctionTests/3c1ebb13484322b9.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/3c84ec0cd4e29a9e.xdr b/test-lcm-next/InvokeHostFunctionTests/3c84ec0cd4e29a9e.xdr index d745000cd2..14fd472a62 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/3c84ec0cd4e29a9e.xdr and b/test-lcm-next/InvokeHostFunctionTests/3c84ec0cd4e29a9e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/3db91544d5ae2281.xdr b/test-lcm-next/InvokeHostFunctionTests/3db91544d5ae2281.xdr index 32125eda29..ca6ecbaee0 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/3db91544d5ae2281.xdr and b/test-lcm-next/InvokeHostFunctionTests/3db91544d5ae2281.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/3e658e0ecfc377ad.xdr b/test-lcm-next/InvokeHostFunctionTests/3e658e0ecfc377ad.xdr deleted file mode 100644 index 4c33cf22b0..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/3e658e0ecfc377ad.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/3ebb523abd74e1c1.xdr b/test-lcm-next/InvokeHostFunctionTests/3ebb523abd74e1c1.xdr index 6112339f23..4410e56d3c 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/3ebb523abd74e1c1.xdr and b/test-lcm-next/InvokeHostFunctionTests/3ebb523abd74e1c1.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/3ed1bb2f1af2ea38.xdr b/test-lcm-next/InvokeHostFunctionTests/3ed1bb2f1af2ea38.xdr index f2ae714c09..ec8667f9df 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/3ed1bb2f1af2ea38.xdr and b/test-lcm-next/InvokeHostFunctionTests/3ed1bb2f1af2ea38.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/3ef1fb92602e14d5.xdr b/test-lcm-next/InvokeHostFunctionTests/3ef1fb92602e14d5.xdr index 0cae52a552..6c7a042987 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/3ef1fb92602e14d5.xdr and b/test-lcm-next/InvokeHostFunctionTests/3ef1fb92602e14d5.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/3f41a40a5611b7d8.xdr b/test-lcm-next/InvokeHostFunctionTests/3f41a40a5611b7d8.xdr index 72d6cb2977..274a7f6cd3 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/3f41a40a5611b7d8.xdr and b/test-lcm-next/InvokeHostFunctionTests/3f41a40a5611b7d8.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/65a4f7bacbc7afa1.xdr b/test-lcm-next/InvokeHostFunctionTests/4049c5bf43d27574.xdr similarity index 74% rename from test-lcm-current/InvokeHostFunctionTests/65a4f7bacbc7afa1.xdr rename to test-lcm-next/InvokeHostFunctionTests/4049c5bf43d27574.xdr index f3bd75506f..bc4aba0fbf 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/65a4f7bacbc7afa1.xdr and b/test-lcm-next/InvokeHostFunctionTests/4049c5bf43d27574.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/40cc10c2a3fe22f0.xdr b/test-lcm-next/InvokeHostFunctionTests/40cc10c2a3fe22f0.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/40cc10c2a3fe22f0.xdr and b/test-lcm-next/InvokeHostFunctionTests/40cc10c2a3fe22f0.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/40fc1592b7b8d9a7.xdr b/test-lcm-next/InvokeHostFunctionTests/40fc1592b7b8d9a7.xdr index 097ec98994..de91a1f7df 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/40fc1592b7b8d9a7.xdr and b/test-lcm-next/InvokeHostFunctionTests/40fc1592b7b8d9a7.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/416716038d1bf264.xdr b/test-lcm-next/InvokeHostFunctionTests/416716038d1bf264.xdr deleted file mode 100644 index e4e05bb31f..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/416716038d1bf264.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/41a75a802c103130.xdr b/test-lcm-next/InvokeHostFunctionTests/41a75a802c103130.xdr index e9dab9415b..c38a1955f0 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/41a75a802c103130.xdr and b/test-lcm-next/InvokeHostFunctionTests/41a75a802c103130.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/432866f9e4658727.xdr b/test-lcm-next/InvokeHostFunctionTests/432866f9e4658727.xdr index 8d257467f8..21025b3c31 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/432866f9e4658727.xdr and b/test-lcm-next/InvokeHostFunctionTests/432866f9e4658727.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/43509a8017a394ec.xdr b/test-lcm-next/InvokeHostFunctionTests/43509a8017a394ec.xdr index cc15b4d3d2..341c86e7b4 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/43509a8017a394ec.xdr and b/test-lcm-next/InvokeHostFunctionTests/43509a8017a394ec.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/43aa6585c53544c0.xdr b/test-lcm-next/InvokeHostFunctionTests/43aa6585c53544c0.xdr index 52664ceb6e..c724ff643a 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/43aa6585c53544c0.xdr and b/test-lcm-next/InvokeHostFunctionTests/43aa6585c53544c0.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/43d0750bf32a8142.xdr b/test-lcm-next/InvokeHostFunctionTests/43d0750bf32a8142.xdr index ea4563664d..298c817107 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/43d0750bf32a8142.xdr and b/test-lcm-next/InvokeHostFunctionTests/43d0750bf32a8142.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/4403f2717365f3f1.xdr b/test-lcm-next/InvokeHostFunctionTests/4403f2717365f3f1.xdr index 978780413d..d704677685 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/4403f2717365f3f1.xdr and b/test-lcm-next/InvokeHostFunctionTests/4403f2717365f3f1.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f7b2eaed80de4146.xdr b/test-lcm-next/InvokeHostFunctionTests/44132eb86a0334be.xdr similarity index 66% rename from test-lcm-next/InvokeHostFunctionTests/f7b2eaed80de4146.xdr rename to test-lcm-next/InvokeHostFunctionTests/44132eb86a0334be.xdr index c967df5e3f..2d68326ae4 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f7b2eaed80de4146.xdr and b/test-lcm-next/InvokeHostFunctionTests/44132eb86a0334be.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/7f4f40cb7a2fbb6f.xdr b/test-lcm-next/InvokeHostFunctionTests/4445d44170e0cfe1.xdr similarity index 65% rename from test-lcm-current/InvokeHostFunctionTests/7f4f40cb7a2fbb6f.xdr rename to test-lcm-next/InvokeHostFunctionTests/4445d44170e0cfe1.xdr index 02655d0e43..794e838c80 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/7f4f40cb7a2fbb6f.xdr and b/test-lcm-next/InvokeHostFunctionTests/4445d44170e0cfe1.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/444e7910e5721658.xdr b/test-lcm-next/InvokeHostFunctionTests/444e7910e5721658.xdr index 65a134b0cb..a4520e20f1 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/444e7910e5721658.xdr and b/test-lcm-next/InvokeHostFunctionTests/444e7910e5721658.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/44aed0d0d619653f.xdr b/test-lcm-next/InvokeHostFunctionTests/44aed0d0d619653f.xdr deleted file mode 100644 index 6c6351947c..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/44aed0d0d619653f.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/44ed42af0c335da0.xdr b/test-lcm-next/InvokeHostFunctionTests/44ed42af0c335da0.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/44ed42af0c335da0.xdr and b/test-lcm-next/InvokeHostFunctionTests/44ed42af0c335da0.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/e1a332399c923196.xdr b/test-lcm-next/InvokeHostFunctionTests/4512adf732987d33.xdr similarity index 75% rename from test-lcm-current/InvokeHostFunctionTests/e1a332399c923196.xdr rename to test-lcm-next/InvokeHostFunctionTests/4512adf732987d33.xdr index 52c47dc6b6..cff4bba165 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/e1a332399c923196.xdr and b/test-lcm-next/InvokeHostFunctionTests/4512adf732987d33.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/45bb7c67fa144f76.xdr b/test-lcm-next/InvokeHostFunctionTests/45bb7c67fa144f76.xdr index 2bd9c5eeae..36255774fe 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/45bb7c67fa144f76.xdr and b/test-lcm-next/InvokeHostFunctionTests/45bb7c67fa144f76.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/45fafb2b89af5af9.xdr b/test-lcm-next/InvokeHostFunctionTests/45fafb2b89af5af9.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/45fafb2b89af5af9.xdr and b/test-lcm-next/InvokeHostFunctionTests/45fafb2b89af5af9.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/463cc045e4e770ef.xdr b/test-lcm-next/InvokeHostFunctionTests/463cc045e4e770ef.xdr index d0e14fbdd5..7dc9fef1d9 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/463cc045e4e770ef.xdr and b/test-lcm-next/InvokeHostFunctionTests/463cc045e4e770ef.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/46841d2f33918f97.xdr b/test-lcm-next/InvokeHostFunctionTests/46841d2f33918f97.xdr index 714659f390..52a2f1f0b2 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/46841d2f33918f97.xdr and b/test-lcm-next/InvokeHostFunctionTests/46841d2f33918f97.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/46bb33ad49f0924d.xdr b/test-lcm-next/InvokeHostFunctionTests/46bb33ad49f0924d.xdr index fce94f1b93..a943cd6e2e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/46bb33ad49f0924d.xdr and b/test-lcm-next/InvokeHostFunctionTests/46bb33ad49f0924d.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/46bc30f464b80820.xdr b/test-lcm-next/InvokeHostFunctionTests/46bc30f464b80820.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/46bc30f464b80820.xdr and b/test-lcm-next/InvokeHostFunctionTests/46bc30f464b80820.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/471f63ec9db5a9dd.xdr b/test-lcm-next/InvokeHostFunctionTests/471f63ec9db5a9dd.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/471f63ec9db5a9dd.xdr and b/test-lcm-next/InvokeHostFunctionTests/471f63ec9db5a9dd.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/472ac360b2cee870.xdr b/test-lcm-next/InvokeHostFunctionTests/472ac360b2cee870.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/472ac360b2cee870.xdr and b/test-lcm-next/InvokeHostFunctionTests/472ac360b2cee870.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/47efc2a10557bd97.xdr b/test-lcm-next/InvokeHostFunctionTests/47efc2a10557bd97.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/47efc2a10557bd97.xdr and b/test-lcm-next/InvokeHostFunctionTests/47efc2a10557bd97.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/47fee2a3bc870ecc.xdr b/test-lcm-next/InvokeHostFunctionTests/47fee2a3bc870ecc.xdr index af101b3272..482c7c5721 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/47fee2a3bc870ecc.xdr and b/test-lcm-next/InvokeHostFunctionTests/47fee2a3bc870ecc.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/485a9f1997660b04.xdr b/test-lcm-next/InvokeHostFunctionTests/485a9f1997660b04.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/485a9f1997660b04.xdr and b/test-lcm-next/InvokeHostFunctionTests/485a9f1997660b04.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/4876c2f30088ca20.xdr b/test-lcm-next/InvokeHostFunctionTests/4876c2f30088ca20.xdr index 6600672436..451c63c189 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/4876c2f30088ca20.xdr and b/test-lcm-next/InvokeHostFunctionTests/4876c2f30088ca20.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/49689aae806682f8.xdr b/test-lcm-next/InvokeHostFunctionTests/49689aae806682f8.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/49689aae806682f8.xdr and b/test-lcm-next/InvokeHostFunctionTests/49689aae806682f8.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/49f65f2d365f1cf2.xdr b/test-lcm-next/InvokeHostFunctionTests/49f65f2d365f1cf2.xdr index 4d759d2319..4905efac98 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/49f65f2d365f1cf2.xdr and b/test-lcm-next/InvokeHostFunctionTests/49f65f2d365f1cf2.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/4a1932cf528ee7ca.xdr b/test-lcm-next/InvokeHostFunctionTests/4a1932cf528ee7ca.xdr index 683b0852fb..140375defd 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/4a1932cf528ee7ca.xdr and b/test-lcm-next/InvokeHostFunctionTests/4a1932cf528ee7ca.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/4a8c58a85988d163.xdr b/test-lcm-next/InvokeHostFunctionTests/4a8c58a85988d163.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/4a8c58a85988d163.xdr and b/test-lcm-next/InvokeHostFunctionTests/4a8c58a85988d163.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/4aa2d8d102f584a4.xdr b/test-lcm-next/InvokeHostFunctionTests/4aa2d8d102f584a4.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/4aa2d8d102f584a4.xdr and b/test-lcm-next/InvokeHostFunctionTests/4aa2d8d102f584a4.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/4ae7dbea4b507a75.xdr b/test-lcm-next/InvokeHostFunctionTests/4ae7dbea4b507a75.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/4ae7dbea4b507a75.xdr and b/test-lcm-next/InvokeHostFunctionTests/4ae7dbea4b507a75.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d913ab5d872a03f8.xdr b/test-lcm-next/InvokeHostFunctionTests/4af293dc53825cbe.xdr similarity index 76% rename from test-lcm-next/InvokeHostFunctionTests/d913ab5d872a03f8.xdr rename to test-lcm-next/InvokeHostFunctionTests/4af293dc53825cbe.xdr index 4b923ab168..971e2a1d69 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d913ab5d872a03f8.xdr and b/test-lcm-next/InvokeHostFunctionTests/4af293dc53825cbe.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/4b4fde93869500d3.xdr b/test-lcm-next/InvokeHostFunctionTests/4b4fde93869500d3.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/4b4fde93869500d3.xdr and b/test-lcm-next/InvokeHostFunctionTests/4b4fde93869500d3.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/4b78ba479ffbf011.xdr b/test-lcm-next/InvokeHostFunctionTests/4b78ba479ffbf011.xdr deleted file mode 100644 index c671ee24ea..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/4b78ba479ffbf011.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/4b7e19f44373ff48.xdr b/test-lcm-next/InvokeHostFunctionTests/4b7e19f44373ff48.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/4b7e19f44373ff48.xdr and b/test-lcm-next/InvokeHostFunctionTests/4b7e19f44373ff48.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/4bc0adc4bfd824ae.xdr b/test-lcm-next/InvokeHostFunctionTests/4bc0adc4bfd824ae.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/4bc0adc4bfd824ae.xdr and b/test-lcm-next/InvokeHostFunctionTests/4bc0adc4bfd824ae.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/846ca1ad625e9ea7.xdr b/test-lcm-next/InvokeHostFunctionTests/4c29f760282cb30d.xdr similarity index 67% rename from test-lcm-current/InvokeHostFunctionTests/846ca1ad625e9ea7.xdr rename to test-lcm-next/InvokeHostFunctionTests/4c29f760282cb30d.xdr index 8184c06e5f..4e8442f94b 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/846ca1ad625e9ea7.xdr and b/test-lcm-next/InvokeHostFunctionTests/4c29f760282cb30d.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/4c5cc01aded482f8.xdr b/test-lcm-next/InvokeHostFunctionTests/4c5cc01aded482f8.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/4c5cc01aded482f8.xdr and b/test-lcm-next/InvokeHostFunctionTests/4c5cc01aded482f8.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/4cd30f7ebe173060.xdr b/test-lcm-next/InvokeHostFunctionTests/4cd30f7ebe173060.xdr index e3b849f28e..b6073ba5e8 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/4cd30f7ebe173060.xdr and b/test-lcm-next/InvokeHostFunctionTests/4cd30f7ebe173060.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/4db1a66114f8b194.xdr b/test-lcm-next/InvokeHostFunctionTests/4db1a66114f8b194.xdr index 377b3981c8..1f6198bbc7 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/4db1a66114f8b194.xdr and b/test-lcm-next/InvokeHostFunctionTests/4db1a66114f8b194.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/4eaeadc112025f27.xdr b/test-lcm-next/InvokeHostFunctionTests/4eaeadc112025f27.xdr index 821e00f3cc..33b1b7ea0c 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/4eaeadc112025f27.xdr and b/test-lcm-next/InvokeHostFunctionTests/4eaeadc112025f27.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/4ee0f3b0ffb1a967.xdr b/test-lcm-next/InvokeHostFunctionTests/4ee0f3b0ffb1a967.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/4ee0f3b0ffb1a967.xdr and b/test-lcm-next/InvokeHostFunctionTests/4ee0f3b0ffb1a967.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/4ff86e8ec6d8f89c.xdr b/test-lcm-next/InvokeHostFunctionTests/4ff86e8ec6d8f89c.xdr index dfbb620b93..39ac3dbef5 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/4ff86e8ec6d8f89c.xdr and b/test-lcm-next/InvokeHostFunctionTests/4ff86e8ec6d8f89c.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/2691da61cb031c32.xdr b/test-lcm-next/InvokeHostFunctionTests/51607121e005fb7f.xdr similarity index 67% rename from test-lcm-current/InvokeHostFunctionTests/2691da61cb031c32.xdr rename to test-lcm-next/InvokeHostFunctionTests/51607121e005fb7f.xdr index 6602c8e379..f43f807cbf 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/2691da61cb031c32.xdr and b/test-lcm-next/InvokeHostFunctionTests/51607121e005fb7f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/51616f70e97b17d5.xdr b/test-lcm-next/InvokeHostFunctionTests/51616f70e97b17d5.xdr index 7674594840..955d9058bd 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/51616f70e97b17d5.xdr and b/test-lcm-next/InvokeHostFunctionTests/51616f70e97b17d5.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/5171bdbde7eb7562.xdr b/test-lcm-next/InvokeHostFunctionTests/5171bdbde7eb7562.xdr index 76869f6269..7173aed36f 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/5171bdbde7eb7562.xdr and b/test-lcm-next/InvokeHostFunctionTests/5171bdbde7eb7562.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/519ee0e221d13e7a.xdr b/test-lcm-next/InvokeHostFunctionTests/519ee0e221d13e7a.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/519ee0e221d13e7a.xdr and b/test-lcm-next/InvokeHostFunctionTests/519ee0e221d13e7a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/51e36c475d33d2bb.xdr b/test-lcm-next/InvokeHostFunctionTests/51e36c475d33d2bb.xdr index 9c859ec77d..78a121285b 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/51e36c475d33d2bb.xdr and b/test-lcm-next/InvokeHostFunctionTests/51e36c475d33d2bb.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/51f0bd683d0d5829.xdr b/test-lcm-next/InvokeHostFunctionTests/51f0bd683d0d5829.xdr index 36343cf072..a337bad66b 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/51f0bd683d0d5829.xdr and b/test-lcm-next/InvokeHostFunctionTests/51f0bd683d0d5829.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/52c707bc77bf01f6.xdr b/test-lcm-next/InvokeHostFunctionTests/52c707bc77bf01f6.xdr index 72623a81be..026c09af15 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/52c707bc77bf01f6.xdr and b/test-lcm-next/InvokeHostFunctionTests/52c707bc77bf01f6.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/5320263ea9731510.xdr b/test-lcm-next/InvokeHostFunctionTests/5320263ea9731510.xdr deleted file mode 100644 index b05a9214f3..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/5320263ea9731510.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/536297cefb569ed7.xdr b/test-lcm-next/InvokeHostFunctionTests/536297cefb569ed7.xdr index 9e5710f85a..60fc612498 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/536297cefb569ed7.xdr and b/test-lcm-next/InvokeHostFunctionTests/536297cefb569ed7.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/53b461e8db0fddd1.xdr b/test-lcm-next/InvokeHostFunctionTests/53b461e8db0fddd1.xdr index a3fd2339f5..65ec63969e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/53b461e8db0fddd1.xdr and b/test-lcm-next/InvokeHostFunctionTests/53b461e8db0fddd1.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/540eac72b8688d25.xdr b/test-lcm-next/InvokeHostFunctionTests/540eac72b8688d25.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/540eac72b8688d25.xdr and b/test-lcm-next/InvokeHostFunctionTests/540eac72b8688d25.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/5416ca18f9a5fa27.xdr b/test-lcm-next/InvokeHostFunctionTests/5416ca18f9a5fa27.xdr deleted file mode 100644 index 592b175e93..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/5416ca18f9a5fa27.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/546a3cc311788248.xdr b/test-lcm-next/InvokeHostFunctionTests/546a3cc311788248.xdr index 16b4a3f6bb..e3718dfd12 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/546a3cc311788248.xdr and b/test-lcm-next/InvokeHostFunctionTests/546a3cc311788248.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/54e3fdf28cd70bd4.xdr b/test-lcm-next/InvokeHostFunctionTests/54e3fdf28cd70bd4.xdr deleted file mode 100644 index ff6cf51acb..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/54e3fdf28cd70bd4.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/54f8492f87d26b35.xdr b/test-lcm-next/InvokeHostFunctionTests/54f8492f87d26b35.xdr index 64f0148099..3322e2bf1c 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/54f8492f87d26b35.xdr and b/test-lcm-next/InvokeHostFunctionTests/54f8492f87d26b35.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/bf98f153a8789f78.xdr b/test-lcm-next/InvokeHostFunctionTests/5675aede8324645c.xdr similarity index 81% rename from test-lcm-next/InvokeHostFunctionTests/bf98f153a8789f78.xdr rename to test-lcm-next/InvokeHostFunctionTests/5675aede8324645c.xdr index 243b0825c3..f06758b466 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/bf98f153a8789f78.xdr and b/test-lcm-next/InvokeHostFunctionTests/5675aede8324645c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/569840c5704c5e44.xdr b/test-lcm-next/InvokeHostFunctionTests/569840c5704c5e44.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/569840c5704c5e44.xdr and b/test-lcm-next/InvokeHostFunctionTests/569840c5704c5e44.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/57207be4a3e12536.xdr b/test-lcm-next/InvokeHostFunctionTests/57207be4a3e12536.xdr index 0302a09421..915a64cf06 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/57207be4a3e12536.xdr and b/test-lcm-next/InvokeHostFunctionTests/57207be4a3e12536.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/57659d96c64bd183.xdr b/test-lcm-next/InvokeHostFunctionTests/57659d96c64bd183.xdr index e7a544653f..5cc72ba226 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/57659d96c64bd183.xdr and b/test-lcm-next/InvokeHostFunctionTests/57659d96c64bd183.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/5770d78319f7e869.xdr b/test-lcm-next/InvokeHostFunctionTests/5770d78319f7e869.xdr index cc4d9be6cc..2353e7d89f 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/5770d78319f7e869.xdr and b/test-lcm-next/InvokeHostFunctionTests/5770d78319f7e869.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/9e44fefde737f8bc.xdr b/test-lcm-next/InvokeHostFunctionTests/57a428f77fd05af1.xdr similarity index 77% rename from test-lcm-next/InvokeHostFunctionTests/9e44fefde737f8bc.xdr rename to test-lcm-next/InvokeHostFunctionTests/57a428f77fd05af1.xdr index ba58fc0b9f..f9284ee2cd 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/9e44fefde737f8bc.xdr and b/test-lcm-next/InvokeHostFunctionTests/57a428f77fd05af1.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/585310a1b2f3c9e1.xdr b/test-lcm-next/InvokeHostFunctionTests/585310a1b2f3c9e1.xdr index df3f09a07a..a252b1ecac 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/585310a1b2f3c9e1.xdr and b/test-lcm-next/InvokeHostFunctionTests/585310a1b2f3c9e1.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/588e655d03094c0e.xdr b/test-lcm-next/InvokeHostFunctionTests/588e655d03094c0e.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/588e655d03094c0e.xdr and b/test-lcm-next/InvokeHostFunctionTests/588e655d03094c0e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/5897c539e59df560.xdr b/test-lcm-next/InvokeHostFunctionTests/5897c539e59df560.xdr deleted file mode 100644 index a767f9c083..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/5897c539e59df560.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/58d33db7d651fcd6.xdr b/test-lcm-next/InvokeHostFunctionTests/58d33db7d651fcd6.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/58d33db7d651fcd6.xdr and b/test-lcm-next/InvokeHostFunctionTests/58d33db7d651fcd6.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/6db81f07c56cd237.xdr b/test-lcm-next/InvokeHostFunctionTests/591b0f65f2643876.xdr similarity index 75% rename from test-lcm-current/InvokeHostFunctionTests/6db81f07c56cd237.xdr rename to test-lcm-next/InvokeHostFunctionTests/591b0f65f2643876.xdr index f08db2c251..3acdeca7c4 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/6db81f07c56cd237.xdr and b/test-lcm-next/InvokeHostFunctionTests/591b0f65f2643876.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/44aed0d0d619653f.xdr b/test-lcm-next/InvokeHostFunctionTests/593eaf7fb01d7232.xdr similarity index 69% rename from test-lcm-current/InvokeHostFunctionTests/44aed0d0d619653f.xdr rename to test-lcm-next/InvokeHostFunctionTests/593eaf7fb01d7232.xdr index 47c1acafca..c3f65ce6c5 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/44aed0d0d619653f.xdr and b/test-lcm-next/InvokeHostFunctionTests/593eaf7fb01d7232.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/594d4af3fbb90e26.xdr b/test-lcm-next/InvokeHostFunctionTests/594d4af3fbb90e26.xdr index 50716e0da8..e39b9265e1 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/594d4af3fbb90e26.xdr and b/test-lcm-next/InvokeHostFunctionTests/594d4af3fbb90e26.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/598b33597b504a5f.xdr b/test-lcm-next/InvokeHostFunctionTests/598b33597b504a5f.xdr index f0cc89be92..83293d807f 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/598b33597b504a5f.xdr and b/test-lcm-next/InvokeHostFunctionTests/598b33597b504a5f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/59a15bc254310ed9.xdr b/test-lcm-next/InvokeHostFunctionTests/59a15bc254310ed9.xdr index d041788108..3fcd3042c1 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/59a15bc254310ed9.xdr and b/test-lcm-next/InvokeHostFunctionTests/59a15bc254310ed9.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/59a168278f646f8f.xdr b/test-lcm-next/InvokeHostFunctionTests/59a168278f646f8f.xdr index 7e8f7bd9bb..61525af29f 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/59a168278f646f8f.xdr and b/test-lcm-next/InvokeHostFunctionTests/59a168278f646f8f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/5b5419e7ec6c21c3.xdr b/test-lcm-next/InvokeHostFunctionTests/5b5419e7ec6c21c3.xdr index f97bbed0a8..a34c58b722 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/5b5419e7ec6c21c3.xdr and b/test-lcm-next/InvokeHostFunctionTests/5b5419e7ec6c21c3.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/11db6d39fd0eae58.xdr b/test-lcm-next/InvokeHostFunctionTests/5cbc615625d83996.xdr similarity index 78% rename from test-lcm-next/InvokeHostFunctionTests/11db6d39fd0eae58.xdr rename to test-lcm-next/InvokeHostFunctionTests/5cbc615625d83996.xdr index 1bafe57e92..5a9824baf9 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/11db6d39fd0eae58.xdr and b/test-lcm-next/InvokeHostFunctionTests/5cbc615625d83996.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/5e8558b4e95d77a3.xdr b/test-lcm-next/InvokeHostFunctionTests/5e8558b4e95d77a3.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/5e8558b4e95d77a3.xdr and b/test-lcm-next/InvokeHostFunctionTests/5e8558b4e95d77a3.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/5e95d63123990f96.xdr b/test-lcm-next/InvokeHostFunctionTests/5e95d63123990f96.xdr deleted file mode 100644 index a1349a03fb..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/5e95d63123990f96.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/5eed63dee9c1b99a.xdr b/test-lcm-next/InvokeHostFunctionTests/5eed63dee9c1b99a.xdr new file mode 100644 index 0000000000..5ba67689ff Binary files /dev/null and b/test-lcm-next/InvokeHostFunctionTests/5eed63dee9c1b99a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/9e7665dc9e35c9d3.xdr b/test-lcm-next/InvokeHostFunctionTests/5f3872f905c5baf1.xdr similarity index 73% rename from test-lcm-current/InvokeHostFunctionTests/9e7665dc9e35c9d3.xdr rename to test-lcm-next/InvokeHostFunctionTests/5f3872f905c5baf1.xdr index f4276a4452..263aee5c3e 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/9e7665dc9e35c9d3.xdr and b/test-lcm-next/InvokeHostFunctionTests/5f3872f905c5baf1.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f5d58a30f834542b.xdr b/test-lcm-next/InvokeHostFunctionTests/5f7972a6994dafe2.xdr similarity index 67% rename from test-lcm-next/InvokeHostFunctionTests/f5d58a30f834542b.xdr rename to test-lcm-next/InvokeHostFunctionTests/5f7972a6994dafe2.xdr index d48cfa1d11..895fd4a886 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f5d58a30f834542b.xdr and b/test-lcm-next/InvokeHostFunctionTests/5f7972a6994dafe2.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/5f7b6356a31b9872.xdr b/test-lcm-next/InvokeHostFunctionTests/5f7b6356a31b9872.xdr index dd5cd29bb5..9c2eb22d5a 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/5f7b6356a31b9872.xdr and b/test-lcm-next/InvokeHostFunctionTests/5f7b6356a31b9872.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/76059f3fbf0f12ce.xdr b/test-lcm-next/InvokeHostFunctionTests/5f8754383c35d1be.xdr similarity index 74% rename from test-lcm-current/InvokeHostFunctionTests/76059f3fbf0f12ce.xdr rename to test-lcm-next/InvokeHostFunctionTests/5f8754383c35d1be.xdr index 6054f86ab2..6fc478f262 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/76059f3fbf0f12ce.xdr and b/test-lcm-next/InvokeHostFunctionTests/5f8754383c35d1be.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/edf8d15f65abdd7c.xdr b/test-lcm-next/InvokeHostFunctionTests/5fcfab73812561f2.xdr similarity index 70% rename from test-lcm-current/InvokeHostFunctionTests/edf8d15f65abdd7c.xdr rename to test-lcm-next/InvokeHostFunctionTests/5fcfab73812561f2.xdr index a048551440..babb495c75 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/edf8d15f65abdd7c.xdr and b/test-lcm-next/InvokeHostFunctionTests/5fcfab73812561f2.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/6031e1f0663cfda5.xdr b/test-lcm-next/InvokeHostFunctionTests/6031e1f0663cfda5.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/6031e1f0663cfda5.xdr and b/test-lcm-next/InvokeHostFunctionTests/6031e1f0663cfda5.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/8a4997adf65f1f5e.xdr b/test-lcm-next/InvokeHostFunctionTests/604c6265d13fc31a.xdr similarity index 64% rename from test-lcm-current/InvokeHostFunctionTests/8a4997adf65f1f5e.xdr rename to test-lcm-next/InvokeHostFunctionTests/604c6265d13fc31a.xdr index 48a060d56b..b489292b68 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/8a4997adf65f1f5e.xdr and b/test-lcm-next/InvokeHostFunctionTests/604c6265d13fc31a.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/5416ca18f9a5fa27.xdr b/test-lcm-next/InvokeHostFunctionTests/6054872800de82ad.xdr similarity index 68% rename from test-lcm-current/InvokeHostFunctionTests/5416ca18f9a5fa27.xdr rename to test-lcm-next/InvokeHostFunctionTests/6054872800de82ad.xdr index cf990c9b74..2ae438d4a1 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/5416ca18f9a5fa27.xdr and b/test-lcm-next/InvokeHostFunctionTests/6054872800de82ad.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/608765b88758cdff.xdr b/test-lcm-next/InvokeHostFunctionTests/608765b88758cdff.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/608765b88758cdff.xdr and b/test-lcm-next/InvokeHostFunctionTests/608765b88758cdff.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/60d32d465e9ef646.xdr b/test-lcm-next/InvokeHostFunctionTests/60d32d465e9ef646.xdr index a9c79d1bcc..69d9d532e9 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/60d32d465e9ef646.xdr and b/test-lcm-next/InvokeHostFunctionTests/60d32d465e9ef646.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/6172930301eec1db.xdr b/test-lcm-next/InvokeHostFunctionTests/6172930301eec1db.xdr index 1398c9542c..a847177aef 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/6172930301eec1db.xdr and b/test-lcm-next/InvokeHostFunctionTests/6172930301eec1db.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/4156bba62911258f.xdr b/test-lcm-next/InvokeHostFunctionTests/617ce679889b737e.xdr similarity index 69% rename from test-lcm-current/InvokeHostFunctionTests/4156bba62911258f.xdr rename to test-lcm-next/InvokeHostFunctionTests/617ce679889b737e.xdr index f0d3a0efd3..bcd15ca80a 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/4156bba62911258f.xdr and b/test-lcm-next/InvokeHostFunctionTests/617ce679889b737e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/61aaf65d2d2be2df.xdr b/test-lcm-next/InvokeHostFunctionTests/61aaf65d2d2be2df.xdr index 863e3abf52..bc2cb34f8a 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/61aaf65d2d2be2df.xdr and b/test-lcm-next/InvokeHostFunctionTests/61aaf65d2d2be2df.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/61f1ec50d0457920.xdr b/test-lcm-next/InvokeHostFunctionTests/61f1ec50d0457920.xdr index 80325f599b..2825b57cbc 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/61f1ec50d0457920.xdr and b/test-lcm-next/InvokeHostFunctionTests/61f1ec50d0457920.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/622a635fa0e892e7.xdr b/test-lcm-next/InvokeHostFunctionTests/622a635fa0e892e7.xdr deleted file mode 100644 index 9cf91306ee..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/622a635fa0e892e7.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/62ae728143dd1ae3.xdr b/test-lcm-next/InvokeHostFunctionTests/62ae728143dd1ae3.xdr index 3c5275fd17..d070c60b16 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/62ae728143dd1ae3.xdr and b/test-lcm-next/InvokeHostFunctionTests/62ae728143dd1ae3.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/630112e28640b3dc.xdr b/test-lcm-next/InvokeHostFunctionTests/630112e28640b3dc.xdr index 728e608a7e..554f06d0db 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/630112e28640b3dc.xdr and b/test-lcm-next/InvokeHostFunctionTests/630112e28640b3dc.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/63050b4296b7bd70.xdr b/test-lcm-next/InvokeHostFunctionTests/63050b4296b7bd70.xdr deleted file mode 100644 index 5196c06032..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/63050b4296b7bd70.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/633ede77405d5244.xdr b/test-lcm-next/InvokeHostFunctionTests/633ede77405d5244.xdr index 6a4f19cca4..e7812ca1c6 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/633ede77405d5244.xdr and b/test-lcm-next/InvokeHostFunctionTests/633ede77405d5244.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/63bf3b0d817b48a3.xdr b/test-lcm-next/InvokeHostFunctionTests/63bf3b0d817b48a3.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/63bf3b0d817b48a3.xdr and b/test-lcm-next/InvokeHostFunctionTests/63bf3b0d817b48a3.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/6445b19d68f45e62.xdr b/test-lcm-next/InvokeHostFunctionTests/6445b19d68f45e62.xdr index c490d14d6e..f7c89102c2 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/6445b19d68f45e62.xdr and b/test-lcm-next/InvokeHostFunctionTests/6445b19d68f45e62.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/6452cb6f030f5835.xdr b/test-lcm-next/InvokeHostFunctionTests/6452cb6f030f5835.xdr deleted file mode 100644 index ae44de6c94..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/6452cb6f030f5835.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/647908425725f18e.xdr b/test-lcm-next/InvokeHostFunctionTests/647908425725f18e.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/647908425725f18e.xdr and b/test-lcm-next/InvokeHostFunctionTests/647908425725f18e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/64c67c03ad8477ca.xdr b/test-lcm-next/InvokeHostFunctionTests/64c67c03ad8477ca.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/64c67c03ad8477ca.xdr and b/test-lcm-next/InvokeHostFunctionTests/64c67c03ad8477ca.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/64def0179fc4dbe6.xdr b/test-lcm-next/InvokeHostFunctionTests/64def0179fc4dbe6.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/64def0179fc4dbe6.xdr and b/test-lcm-next/InvokeHostFunctionTests/64def0179fc4dbe6.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/6519e434acf354b7.xdr b/test-lcm-next/InvokeHostFunctionTests/6519e434acf354b7.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/6519e434acf354b7.xdr and b/test-lcm-next/InvokeHostFunctionTests/6519e434acf354b7.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/659ac68c6d773240.xdr b/test-lcm-next/InvokeHostFunctionTests/659ac68c6d773240.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/659ac68c6d773240.xdr and b/test-lcm-next/InvokeHostFunctionTests/659ac68c6d773240.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/65d4ab7a4ee03638.xdr b/test-lcm-next/InvokeHostFunctionTests/65d4ab7a4ee03638.xdr index 5c8988f885..a24c7672de 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/65d4ab7a4ee03638.xdr and b/test-lcm-next/InvokeHostFunctionTests/65d4ab7a4ee03638.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/660ffaf163aa3a0d.xdr b/test-lcm-next/InvokeHostFunctionTests/660ffaf163aa3a0d.xdr index 4d1bb154b8..663ead239e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/660ffaf163aa3a0d.xdr and b/test-lcm-next/InvokeHostFunctionTests/660ffaf163aa3a0d.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/666cc90ebbdab3dd.xdr b/test-lcm-next/InvokeHostFunctionTests/666cc90ebbdab3dd.xdr index 065f42275b..3b35a05cdf 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/666cc90ebbdab3dd.xdr and b/test-lcm-next/InvokeHostFunctionTests/666cc90ebbdab3dd.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/66755facd883bef4.xdr b/test-lcm-next/InvokeHostFunctionTests/66755facd883bef4.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/66755facd883bef4.xdr and b/test-lcm-next/InvokeHostFunctionTests/66755facd883bef4.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/6716ff61cd9b5a3f.xdr b/test-lcm-next/InvokeHostFunctionTests/6716ff61cd9b5a3f.xdr index 5b63ca4390..7a1756f8d3 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/6716ff61cd9b5a3f.xdr and b/test-lcm-next/InvokeHostFunctionTests/6716ff61cd9b5a3f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/675cca94471892a1.xdr b/test-lcm-next/InvokeHostFunctionTests/675cca94471892a1.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/675cca94471892a1.xdr and b/test-lcm-next/InvokeHostFunctionTests/675cca94471892a1.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/678620649d7edfe9.xdr b/test-lcm-next/InvokeHostFunctionTests/678620649d7edfe9.xdr index bc47f1b22f..4dc81391c8 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/678620649d7edfe9.xdr and b/test-lcm-next/InvokeHostFunctionTests/678620649d7edfe9.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/67c57dc9f673aa9e.xdr b/test-lcm-next/InvokeHostFunctionTests/67c57dc9f673aa9e.xdr index 01c503199b..4c07ce4513 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/67c57dc9f673aa9e.xdr and b/test-lcm-next/InvokeHostFunctionTests/67c57dc9f673aa9e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/68392e6abed97fb5.xdr b/test-lcm-next/InvokeHostFunctionTests/68392e6abed97fb5.xdr index 2e5ac898a1..bc448edcd5 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/68392e6abed97fb5.xdr and b/test-lcm-next/InvokeHostFunctionTests/68392e6abed97fb5.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/6856b0b044010cae.xdr b/test-lcm-next/InvokeHostFunctionTests/6856b0b044010cae.xdr index e222868683..c728bb55bd 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/6856b0b044010cae.xdr and b/test-lcm-next/InvokeHostFunctionTests/6856b0b044010cae.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/68f165975379ef6f.xdr b/test-lcm-next/InvokeHostFunctionTests/68f165975379ef6f.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/68f165975379ef6f.xdr and b/test-lcm-next/InvokeHostFunctionTests/68f165975379ef6f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/69051a1b441d9996.xdr b/test-lcm-next/InvokeHostFunctionTests/69051a1b441d9996.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/69051a1b441d9996.xdr and b/test-lcm-next/InvokeHostFunctionTests/69051a1b441d9996.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/69abe494995566fb.xdr b/test-lcm-next/InvokeHostFunctionTests/69abe494995566fb.xdr index 01fbab6def..ee9fa0ebd5 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/69abe494995566fb.xdr and b/test-lcm-next/InvokeHostFunctionTests/69abe494995566fb.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/69d72740ac448701.xdr b/test-lcm-next/InvokeHostFunctionTests/69d72740ac448701.xdr index cb0b32dd9f..a4ec94d95a 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/69d72740ac448701.xdr and b/test-lcm-next/InvokeHostFunctionTests/69d72740ac448701.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/6a0fcad7207a7356.xdr b/test-lcm-next/InvokeHostFunctionTests/6a0fcad7207a7356.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/6a0fcad7207a7356.xdr and b/test-lcm-next/InvokeHostFunctionTests/6a0fcad7207a7356.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/6b1bba1cde19195d.xdr b/test-lcm-next/InvokeHostFunctionTests/6b1bba1cde19195d.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/6b1bba1cde19195d.xdr and b/test-lcm-next/InvokeHostFunctionTests/6b1bba1cde19195d.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/6b7ea8905416d282.xdr b/test-lcm-next/InvokeHostFunctionTests/6b7ea8905416d282.xdr index 9f94093ffa..4ad46baddd 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/6b7ea8905416d282.xdr and b/test-lcm-next/InvokeHostFunctionTests/6b7ea8905416d282.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/6be1723f2de82c90.xdr b/test-lcm-next/InvokeHostFunctionTests/6be1723f2de82c90.xdr index 2089428daa..433564c308 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/6be1723f2de82c90.xdr and b/test-lcm-next/InvokeHostFunctionTests/6be1723f2de82c90.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/6c7ee12d6e1882df.xdr b/test-lcm-next/InvokeHostFunctionTests/6c7ee12d6e1882df.xdr index 77e0c641f9..7c47d2547e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/6c7ee12d6e1882df.xdr and b/test-lcm-next/InvokeHostFunctionTests/6c7ee12d6e1882df.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/6de1fadf0f1a6789.xdr b/test-lcm-next/InvokeHostFunctionTests/6de1fadf0f1a6789.xdr index 84500ec948..709dbe50a5 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/6de1fadf0f1a6789.xdr and b/test-lcm-next/InvokeHostFunctionTests/6de1fadf0f1a6789.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/711a5390f886c7ff.xdr b/test-lcm-next/InvokeHostFunctionTests/6dfc8f8d0c1f4d61.xdr similarity index 71% rename from test-lcm-current/InvokeHostFunctionTests/711a5390f886c7ff.xdr rename to test-lcm-next/InvokeHostFunctionTests/6dfc8f8d0c1f4d61.xdr index ce765a3e6f..db619511f6 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/711a5390f886c7ff.xdr and b/test-lcm-next/InvokeHostFunctionTests/6dfc8f8d0c1f4d61.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/6e020886d77520ee.xdr b/test-lcm-next/InvokeHostFunctionTests/6e020886d77520ee.xdr index 443cd1d56f..4c819f7e6a 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/6e020886d77520ee.xdr and b/test-lcm-next/InvokeHostFunctionTests/6e020886d77520ee.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/6e0258e8cfa3ab47.xdr b/test-lcm-next/InvokeHostFunctionTests/6e0258e8cfa3ab47.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/6e0258e8cfa3ab47.xdr and b/test-lcm-next/InvokeHostFunctionTests/6e0258e8cfa3ab47.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/6e1d5421cf61b82d.xdr b/test-lcm-next/InvokeHostFunctionTests/6e1d5421cf61b82d.xdr index 28a9b97e67..b212b7c936 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/6e1d5421cf61b82d.xdr and b/test-lcm-next/InvokeHostFunctionTests/6e1d5421cf61b82d.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/fee22f3e7541405b.xdr b/test-lcm-next/InvokeHostFunctionTests/6e6a0dee9b273c6f.xdr similarity index 68% rename from test-lcm-current/InvokeHostFunctionTests/fee22f3e7541405b.xdr rename to test-lcm-next/InvokeHostFunctionTests/6e6a0dee9b273c6f.xdr index b167ac7124..e55bafddf9 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/fee22f3e7541405b.xdr and b/test-lcm-next/InvokeHostFunctionTests/6e6a0dee9b273c6f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/6f27e3a9c63fca5b.xdr b/test-lcm-next/InvokeHostFunctionTests/6f27e3a9c63fca5b.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/6f27e3a9c63fca5b.xdr and b/test-lcm-next/InvokeHostFunctionTests/6f27e3a9c63fca5b.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/6f3467c6e13a1648.xdr b/test-lcm-next/InvokeHostFunctionTests/6f3467c6e13a1648.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/6f3467c6e13a1648.xdr and b/test-lcm-next/InvokeHostFunctionTests/6f3467c6e13a1648.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/6ffafbc029e47549.xdr b/test-lcm-next/InvokeHostFunctionTests/6ffafbc029e47549.xdr index 52f4f03a68..dcd0231f2f 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/6ffafbc029e47549.xdr and b/test-lcm-next/InvokeHostFunctionTests/6ffafbc029e47549.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/701983d81c015a60.xdr b/test-lcm-next/InvokeHostFunctionTests/701983d81c015a60.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/701983d81c015a60.xdr and b/test-lcm-next/InvokeHostFunctionTests/701983d81c015a60.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/70b7679c1de24a4b.xdr b/test-lcm-next/InvokeHostFunctionTests/70b7679c1de24a4b.xdr index 8c30210ce0..8e457c3e78 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/70b7679c1de24a4b.xdr and b/test-lcm-next/InvokeHostFunctionTests/70b7679c1de24a4b.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/711a5390f886c7ff.xdr b/test-lcm-next/InvokeHostFunctionTests/711a5390f886c7ff.xdr deleted file mode 100644 index 681c80f0fa..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/711a5390f886c7ff.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/714af0a63932eb6b.xdr b/test-lcm-next/InvokeHostFunctionTests/714af0a63932eb6b.xdr index 7ff20e8ee1..0de1b883ac 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/714af0a63932eb6b.xdr and b/test-lcm-next/InvokeHostFunctionTests/714af0a63932eb6b.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/71db73c744a926be.xdr b/test-lcm-next/InvokeHostFunctionTests/71db73c744a926be.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/71db73c744a926be.xdr and b/test-lcm-next/InvokeHostFunctionTests/71db73c744a926be.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/725278041cf421e0.xdr b/test-lcm-next/InvokeHostFunctionTests/725278041cf421e0.xdr index d8c2a6c04a..0d73c17657 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/725278041cf421e0.xdr and b/test-lcm-next/InvokeHostFunctionTests/725278041cf421e0.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/729f8af24dc7fbd8.xdr b/test-lcm-next/InvokeHostFunctionTests/729f8af24dc7fbd8.xdr index f992f13d4d..cee8155997 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/729f8af24dc7fbd8.xdr and b/test-lcm-next/InvokeHostFunctionTests/729f8af24dc7fbd8.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/73d97239afd1a289.xdr b/test-lcm-next/InvokeHostFunctionTests/73d97239afd1a289.xdr index d2b33047d6..3562831fd4 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/73d97239afd1a289.xdr and b/test-lcm-next/InvokeHostFunctionTests/73d97239afd1a289.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/7476d7d3f060cf1d.xdr b/test-lcm-next/InvokeHostFunctionTests/7476d7d3f060cf1d.xdr index 0aa15b0830..5008cf62d1 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/7476d7d3f060cf1d.xdr and b/test-lcm-next/InvokeHostFunctionTests/7476d7d3f060cf1d.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/749d86ef2b83de64.xdr b/test-lcm-next/InvokeHostFunctionTests/749d86ef2b83de64.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/749d86ef2b83de64.xdr and b/test-lcm-next/InvokeHostFunctionTests/749d86ef2b83de64.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/74cb309604b87ad5.xdr b/test-lcm-next/InvokeHostFunctionTests/74cb309604b87ad5.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/74cb309604b87ad5.xdr and b/test-lcm-next/InvokeHostFunctionTests/74cb309604b87ad5.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/7560b4ebec62de03.xdr b/test-lcm-next/InvokeHostFunctionTests/7560b4ebec62de03.xdr index a4c3b9131e..3c89a4c492 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/7560b4ebec62de03.xdr and b/test-lcm-next/InvokeHostFunctionTests/7560b4ebec62de03.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/75a857ffd876a72d.xdr b/test-lcm-next/InvokeHostFunctionTests/75a857ffd876a72d.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/75a857ffd876a72d.xdr and b/test-lcm-next/InvokeHostFunctionTests/75a857ffd876a72d.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/7623428964713c55.xdr b/test-lcm-next/InvokeHostFunctionTests/7623428964713c55.xdr index 0eca90b2d1..1e48a2ec1e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/7623428964713c55.xdr and b/test-lcm-next/InvokeHostFunctionTests/7623428964713c55.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/7624c43e428ee32d.xdr b/test-lcm-next/InvokeHostFunctionTests/7624c43e428ee32d.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/7624c43e428ee32d.xdr and b/test-lcm-next/InvokeHostFunctionTests/7624c43e428ee32d.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/763b53bb30a2499d.xdr b/test-lcm-next/InvokeHostFunctionTests/763b53bb30a2499d.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/763b53bb30a2499d.xdr and b/test-lcm-next/InvokeHostFunctionTests/763b53bb30a2499d.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b3551c1c4d83c811.xdr b/test-lcm-next/InvokeHostFunctionTests/764084a2f48fbd19.xdr similarity index 69% rename from test-lcm-current/InvokeHostFunctionTests/b3551c1c4d83c811.xdr rename to test-lcm-next/InvokeHostFunctionTests/764084a2f48fbd19.xdr index 013aca8aa1..74d9e0dfbb 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/b3551c1c4d83c811.xdr and b/test-lcm-next/InvokeHostFunctionTests/764084a2f48fbd19.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/5897c539e59df560.xdr b/test-lcm-next/InvokeHostFunctionTests/7738c2df0c244d0d.xdr similarity index 65% rename from test-lcm-current/InvokeHostFunctionTests/5897c539e59df560.xdr rename to test-lcm-next/InvokeHostFunctionTests/7738c2df0c244d0d.xdr index cdc7f1c4f7..991af834ab 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/5897c539e59df560.xdr and b/test-lcm-next/InvokeHostFunctionTests/7738c2df0c244d0d.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/920a1fad5ca8a29b.xdr b/test-lcm-next/InvokeHostFunctionTests/77649b5f4eec4b72.xdr similarity index 65% rename from test-lcm-next/InvokeHostFunctionTests/920a1fad5ca8a29b.xdr rename to test-lcm-next/InvokeHostFunctionTests/77649b5f4eec4b72.xdr index 582c4cb4b9..ae8c08864b 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/920a1fad5ca8a29b.xdr and b/test-lcm-next/InvokeHostFunctionTests/77649b5f4eec4b72.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/77904c0e7819a7eb.xdr b/test-lcm-next/InvokeHostFunctionTests/77904c0e7819a7eb.xdr index 2f868890ab..9ab7904332 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/77904c0e7819a7eb.xdr and b/test-lcm-next/InvokeHostFunctionTests/77904c0e7819a7eb.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/77b0f96ee78d5679.xdr b/test-lcm-next/InvokeHostFunctionTests/77b0f96ee78d5679.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/77b0f96ee78d5679.xdr and b/test-lcm-next/InvokeHostFunctionTests/77b0f96ee78d5679.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/7811a2db272e2bc5.xdr b/test-lcm-next/InvokeHostFunctionTests/7811a2db272e2bc5.xdr index a633ced522..0e8323ec95 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/7811a2db272e2bc5.xdr and b/test-lcm-next/InvokeHostFunctionTests/7811a2db272e2bc5.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/781c971d7b58563a.xdr b/test-lcm-next/InvokeHostFunctionTests/781c971d7b58563a.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/781c971d7b58563a.xdr and b/test-lcm-next/InvokeHostFunctionTests/781c971d7b58563a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/78d19632e893bee4.xdr b/test-lcm-next/InvokeHostFunctionTests/78d19632e893bee4.xdr index 01945a0c63..99941b2151 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/78d19632e893bee4.xdr and b/test-lcm-next/InvokeHostFunctionTests/78d19632e893bee4.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/7974f01f0568597f.xdr b/test-lcm-next/InvokeHostFunctionTests/7974f01f0568597f.xdr index 3712a25a55..e05373b6d1 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/7974f01f0568597f.xdr and b/test-lcm-next/InvokeHostFunctionTests/7974f01f0568597f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/7af34c851b5af2ba.xdr b/test-lcm-next/InvokeHostFunctionTests/7af34c851b5af2ba.xdr index 615526e08a..7bbe8ef68c 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/7af34c851b5af2ba.xdr and b/test-lcm-next/InvokeHostFunctionTests/7af34c851b5af2ba.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/7c3fa2905342aef3.xdr b/test-lcm-next/InvokeHostFunctionTests/7c3fa2905342aef3.xdr index a3ab25da40..2acc4466ce 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/7c3fa2905342aef3.xdr and b/test-lcm-next/InvokeHostFunctionTests/7c3fa2905342aef3.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/7c588d1eada8e956.xdr b/test-lcm-next/InvokeHostFunctionTests/7c588d1eada8e956.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/7c588d1eada8e956.xdr and b/test-lcm-next/InvokeHostFunctionTests/7c588d1eada8e956.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/7c7ac7fe41e94018.xdr b/test-lcm-next/InvokeHostFunctionTests/7c7ac7fe41e94018.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/7c7ac7fe41e94018.xdr and b/test-lcm-next/InvokeHostFunctionTests/7c7ac7fe41e94018.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/7ca0fb2954bbb6c8.xdr b/test-lcm-next/InvokeHostFunctionTests/7ca0fb2954bbb6c8.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/7ca0fb2954bbb6c8.xdr and b/test-lcm-next/InvokeHostFunctionTests/7ca0fb2954bbb6c8.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/43ab812359d242e5.xdr b/test-lcm-next/InvokeHostFunctionTests/7cc3684dd630603a.xdr similarity index 66% rename from test-lcm-next/InvokeHostFunctionTests/43ab812359d242e5.xdr rename to test-lcm-next/InvokeHostFunctionTests/7cc3684dd630603a.xdr index a6cb46fdb1..2869a752ec 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/43ab812359d242e5.xdr and b/test-lcm-next/InvokeHostFunctionTests/7cc3684dd630603a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/7cf5a062e427a3b3.xdr b/test-lcm-next/InvokeHostFunctionTests/7cf5a062e427a3b3.xdr index b1f237a379..e4b492eef1 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/7cf5a062e427a3b3.xdr and b/test-lcm-next/InvokeHostFunctionTests/7cf5a062e427a3b3.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/7db90301e11fa5d0.xdr b/test-lcm-next/InvokeHostFunctionTests/7db90301e11fa5d0.xdr index 4e96e49f2d..e0f826ea43 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/7db90301e11fa5d0.xdr and b/test-lcm-next/InvokeHostFunctionTests/7db90301e11fa5d0.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/7dd9f6410b671c2f.xdr b/test-lcm-next/InvokeHostFunctionTests/7dd9f6410b671c2f.xdr index 861f45020c..37da598f2b 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/7dd9f6410b671c2f.xdr and b/test-lcm-next/InvokeHostFunctionTests/7dd9f6410b671c2f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c312c5d7aa1dfb38.xdr b/test-lcm-next/InvokeHostFunctionTests/7de21bd4d91d805e.xdr similarity index 68% rename from test-lcm-current/InvokeHostFunctionTests/c312c5d7aa1dfb38.xdr rename to test-lcm-next/InvokeHostFunctionTests/7de21bd4d91d805e.xdr index 04affc7a9e..9325f1d8f7 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c312c5d7aa1dfb38.xdr and b/test-lcm-next/InvokeHostFunctionTests/7de21bd4d91d805e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/7f1fec7fe0be9e43.xdr b/test-lcm-next/InvokeHostFunctionTests/7f1fec7fe0be9e43.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/7f1fec7fe0be9e43.xdr and b/test-lcm-next/InvokeHostFunctionTests/7f1fec7fe0be9e43.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/7f4f40cb7a2fbb6f.xdr b/test-lcm-next/InvokeHostFunctionTests/7f4f40cb7a2fbb6f.xdr deleted file mode 100644 index 6e11c4d25b..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/7f4f40cb7a2fbb6f.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/7f737b8fa30b66b4.xdr b/test-lcm-next/InvokeHostFunctionTests/7f737b8fa30b66b4.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/7f737b8fa30b66b4.xdr and b/test-lcm-next/InvokeHostFunctionTests/7f737b8fa30b66b4.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/7f7e72aa985692ae.xdr b/test-lcm-next/InvokeHostFunctionTests/7f7e72aa985692ae.xdr index d077a80364..cf43955580 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/7f7e72aa985692ae.xdr and b/test-lcm-next/InvokeHostFunctionTests/7f7e72aa985692ae.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/811ecb1190787c4f.xdr b/test-lcm-next/InvokeHostFunctionTests/811ecb1190787c4f.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/811ecb1190787c4f.xdr and b/test-lcm-next/InvokeHostFunctionTests/811ecb1190787c4f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/81c974086b0e4f56.xdr b/test-lcm-next/InvokeHostFunctionTests/81c974086b0e4f56.xdr index 92ada83137..236fe831b1 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/81c974086b0e4f56.xdr and b/test-lcm-next/InvokeHostFunctionTests/81c974086b0e4f56.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/31c849dd20eef4c9.xdr b/test-lcm-next/InvokeHostFunctionTests/83c656314634c36a.xdr similarity index 72% rename from test-lcm-current/InvokeHostFunctionTests/31c849dd20eef4c9.xdr rename to test-lcm-next/InvokeHostFunctionTests/83c656314634c36a.xdr index 2d724f34a9..44549f9453 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/31c849dd20eef4c9.xdr and b/test-lcm-next/InvokeHostFunctionTests/83c656314634c36a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/83e78d1ac27b4951.xdr b/test-lcm-next/InvokeHostFunctionTests/83e78d1ac27b4951.xdr index 1a41628179..dcec0843b7 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/83e78d1ac27b4951.xdr and b/test-lcm-next/InvokeHostFunctionTests/83e78d1ac27b4951.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/83f9b0ae9387fa6d.xdr b/test-lcm-next/InvokeHostFunctionTests/83f9b0ae9387fa6d.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/83f9b0ae9387fa6d.xdr and b/test-lcm-next/InvokeHostFunctionTests/83f9b0ae9387fa6d.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/841b5a633ba3dcd4.xdr b/test-lcm-next/InvokeHostFunctionTests/841b5a633ba3dcd4.xdr index dca8ee3603..7b82cf8424 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/841b5a633ba3dcd4.xdr and b/test-lcm-next/InvokeHostFunctionTests/841b5a633ba3dcd4.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/84315cd6d68b5749.xdr b/test-lcm-next/InvokeHostFunctionTests/84315cd6d68b5749.xdr index 0d0481804d..ed2c348024 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/84315cd6d68b5749.xdr and b/test-lcm-next/InvokeHostFunctionTests/84315cd6d68b5749.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/8433fde0f0bbd2f7.xdr b/test-lcm-next/InvokeHostFunctionTests/8433fde0f0bbd2f7.xdr deleted file mode 100644 index bd7664bf88..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/8433fde0f0bbd2f7.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/843c6cc8cb69c839.xdr b/test-lcm-next/InvokeHostFunctionTests/843c6cc8cb69c839.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/843c6cc8cb69c839.xdr and b/test-lcm-next/InvokeHostFunctionTests/843c6cc8cb69c839.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/a4f13a2fa6293428.xdr b/test-lcm-next/InvokeHostFunctionTests/8455df4697c3967d.xdr similarity index 65% rename from test-lcm-next/InvokeHostFunctionTests/a4f13a2fa6293428.xdr rename to test-lcm-next/InvokeHostFunctionTests/8455df4697c3967d.xdr index 24effc809d..4783c394c2 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/a4f13a2fa6293428.xdr and b/test-lcm-next/InvokeHostFunctionTests/8455df4697c3967d.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/846ca1ad625e9ea7.xdr b/test-lcm-next/InvokeHostFunctionTests/846ca1ad625e9ea7.xdr deleted file mode 100644 index 415e552b31..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/846ca1ad625e9ea7.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/858ea3c6fa587d2c.xdr b/test-lcm-next/InvokeHostFunctionTests/858ea3c6fa587d2c.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/858ea3c6fa587d2c.xdr and b/test-lcm-next/InvokeHostFunctionTests/858ea3c6fa587d2c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/860c9ebb141ea269.xdr b/test-lcm-next/InvokeHostFunctionTests/860c9ebb141ea269.xdr index cbdc478e5f..6f3dd8cd32 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/860c9ebb141ea269.xdr and b/test-lcm-next/InvokeHostFunctionTests/860c9ebb141ea269.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/8666b7f3149900ec.xdr b/test-lcm-next/InvokeHostFunctionTests/8666b7f3149900ec.xdr index 223dc867b2..508228fccb 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/8666b7f3149900ec.xdr and b/test-lcm-next/InvokeHostFunctionTests/8666b7f3149900ec.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/86c090d2b24bc515.xdr b/test-lcm-next/InvokeHostFunctionTests/86c090d2b24bc515.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/86c090d2b24bc515.xdr and b/test-lcm-next/InvokeHostFunctionTests/86c090d2b24bc515.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/86ec0b605b279d49.xdr b/test-lcm-next/InvokeHostFunctionTests/86ec0b605b279d49.xdr index 4ec94084d5..6461f6ed9b 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/86ec0b605b279d49.xdr and b/test-lcm-next/InvokeHostFunctionTests/86ec0b605b279d49.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/875401f18d4d37e0.xdr b/test-lcm-next/InvokeHostFunctionTests/875401f18d4d37e0.xdr index 43d1b1ad6a..fc7a7a2d1e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/875401f18d4d37e0.xdr and b/test-lcm-next/InvokeHostFunctionTests/875401f18d4d37e0.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c36cbaffe2709df8.xdr b/test-lcm-next/InvokeHostFunctionTests/877f82cfac49070f.xdr similarity index 73% rename from test-lcm-current/InvokeHostFunctionTests/c36cbaffe2709df8.xdr rename to test-lcm-next/InvokeHostFunctionTests/877f82cfac49070f.xdr index 3a86784148..c50b44c665 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c36cbaffe2709df8.xdr and b/test-lcm-next/InvokeHostFunctionTests/877f82cfac49070f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/8848fdad9b841822.xdr b/test-lcm-next/InvokeHostFunctionTests/8848fdad9b841822.xdr index 9bcb93e665..f66aba046c 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/8848fdad9b841822.xdr and b/test-lcm-next/InvokeHostFunctionTests/8848fdad9b841822.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/8878f61751a807b8.xdr b/test-lcm-next/InvokeHostFunctionTests/8878f61751a807b8.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/8878f61751a807b8.xdr and b/test-lcm-next/InvokeHostFunctionTests/8878f61751a807b8.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/887c083fc1639e43.xdr b/test-lcm-next/InvokeHostFunctionTests/887c083fc1639e43.xdr index 2b4c0672ed..ee823e23fb 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/887c083fc1639e43.xdr and b/test-lcm-next/InvokeHostFunctionTests/887c083fc1639e43.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/8900d5bd1b2b9f70.xdr b/test-lcm-next/InvokeHostFunctionTests/8900d5bd1b2b9f70.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/8900d5bd1b2b9f70.xdr and b/test-lcm-next/InvokeHostFunctionTests/8900d5bd1b2b9f70.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/891a276e7ce06b91.xdr b/test-lcm-next/InvokeHostFunctionTests/891a276e7ce06b91.xdr index 11574296a9..a40d4b3757 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/891a276e7ce06b91.xdr and b/test-lcm-next/InvokeHostFunctionTests/891a276e7ce06b91.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/894fd4e0f979d673.xdr b/test-lcm-next/InvokeHostFunctionTests/894fd4e0f979d673.xdr deleted file mode 100644 index e26573d375..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/894fd4e0f979d673.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/895b3456160d157c.xdr b/test-lcm-next/InvokeHostFunctionTests/895b3456160d157c.xdr index 052b2ff1d0..2eb100b5e7 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/895b3456160d157c.xdr and b/test-lcm-next/InvokeHostFunctionTests/895b3456160d157c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/897ee371b2a80230.xdr b/test-lcm-next/InvokeHostFunctionTests/897ee371b2a80230.xdr index 6a0e4f425e..d0edeb898c 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/897ee371b2a80230.xdr and b/test-lcm-next/InvokeHostFunctionTests/897ee371b2a80230.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/898221ce90bbe12a.xdr b/test-lcm-next/InvokeHostFunctionTests/898221ce90bbe12a.xdr index 009a547a08..72ff8f833b 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/898221ce90bbe12a.xdr and b/test-lcm-next/InvokeHostFunctionTests/898221ce90bbe12a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/89f9145d00c68451.xdr b/test-lcm-next/InvokeHostFunctionTests/89f9145d00c68451.xdr index 388bde063c..1ad63e0067 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/89f9145d00c68451.xdr and b/test-lcm-next/InvokeHostFunctionTests/89f9145d00c68451.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/89fc4f3bfc2e66a6.xdr b/test-lcm-next/InvokeHostFunctionTests/89fc4f3bfc2e66a6.xdr deleted file mode 100644 index 50d470f83d..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/89fc4f3bfc2e66a6.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/8adead0567fe7d71.xdr b/test-lcm-next/InvokeHostFunctionTests/8adead0567fe7d71.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/8adead0567fe7d71.xdr and b/test-lcm-next/InvokeHostFunctionTests/8adead0567fe7d71.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/8b13d91d773c9085.xdr b/test-lcm-next/InvokeHostFunctionTests/8b13d91d773c9085.xdr index 8dbfd915ad..774b8466de 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/8b13d91d773c9085.xdr and b/test-lcm-next/InvokeHostFunctionTests/8b13d91d773c9085.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/fde221cacfa15702.xdr b/test-lcm-next/InvokeHostFunctionTests/8b62ea69fc56c0a7.xdr similarity index 70% rename from test-lcm-current/InvokeHostFunctionTests/fde221cacfa15702.xdr rename to test-lcm-next/InvokeHostFunctionTests/8b62ea69fc56c0a7.xdr index 6f79868c55..720717d5be 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/fde221cacfa15702.xdr and b/test-lcm-next/InvokeHostFunctionTests/8b62ea69fc56c0a7.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/8cf745afc0a51283.xdr b/test-lcm-next/InvokeHostFunctionTests/8cf745afc0a51283.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/8cf745afc0a51283.xdr and b/test-lcm-next/InvokeHostFunctionTests/8cf745afc0a51283.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/39cb1e990e856d1d.xdr b/test-lcm-next/InvokeHostFunctionTests/8d7be440e1455d0b.xdr similarity index 66% rename from test-lcm-next/InvokeHostFunctionTests/39cb1e990e856d1d.xdr rename to test-lcm-next/InvokeHostFunctionTests/8d7be440e1455d0b.xdr index 9f2ca07a02..53d51919d0 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/39cb1e990e856d1d.xdr and b/test-lcm-next/InvokeHostFunctionTests/8d7be440e1455d0b.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/8dd5261011c6c3bc.xdr b/test-lcm-next/InvokeHostFunctionTests/8dd5261011c6c3bc.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/8dd5261011c6c3bc.xdr and b/test-lcm-next/InvokeHostFunctionTests/8dd5261011c6c3bc.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/8dfbc063af86ec35.xdr b/test-lcm-next/InvokeHostFunctionTests/8dfbc063af86ec35.xdr index fa1433db94..e2eeef9b62 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/8dfbc063af86ec35.xdr and b/test-lcm-next/InvokeHostFunctionTests/8dfbc063af86ec35.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/8e99b44b297caaac.xdr b/test-lcm-next/InvokeHostFunctionTests/8e99b44b297caaac.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/8e99b44b297caaac.xdr and b/test-lcm-next/InvokeHostFunctionTests/8e99b44b297caaac.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/8f46b4013f8e249b.xdr b/test-lcm-next/InvokeHostFunctionTests/8f46b4013f8e249b.xdr deleted file mode 100644 index 2b7582f48a..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/8f46b4013f8e249b.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/8fa77a7691d9a43d.xdr b/test-lcm-next/InvokeHostFunctionTests/8fa77a7691d9a43d.xdr index 31dbfcfb99..7e152604e4 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/8fa77a7691d9a43d.xdr and b/test-lcm-next/InvokeHostFunctionTests/8fa77a7691d9a43d.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/90153646e94af892.xdr b/test-lcm-next/InvokeHostFunctionTests/90153646e94af892.xdr deleted file mode 100644 index 2b64bd08bb..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/90153646e94af892.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/908acbd3aceb8316.xdr b/test-lcm-next/InvokeHostFunctionTests/908acbd3aceb8316.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/908acbd3aceb8316.xdr and b/test-lcm-next/InvokeHostFunctionTests/908acbd3aceb8316.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/90bf93d9cc8919fb.xdr b/test-lcm-next/InvokeHostFunctionTests/90bf93d9cc8919fb.xdr deleted file mode 100644 index 3f488e1997..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/90bf93d9cc8919fb.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/90d44cefcaf5f29b.xdr b/test-lcm-next/InvokeHostFunctionTests/90d44cefcaf5f29b.xdr index 100700dad2..bcd35090c5 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/90d44cefcaf5f29b.xdr and b/test-lcm-next/InvokeHostFunctionTests/90d44cefcaf5f29b.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/ee378cbd0c119be4.xdr b/test-lcm-next/InvokeHostFunctionTests/912edb34a90b9157.xdr similarity index 65% rename from test-lcm-current/InvokeHostFunctionTests/ee378cbd0c119be4.xdr rename to test-lcm-next/InvokeHostFunctionTests/912edb34a90b9157.xdr index c202550d3c..22b74a8ce6 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/ee378cbd0c119be4.xdr and b/test-lcm-next/InvokeHostFunctionTests/912edb34a90b9157.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/0149cc6c1924569c.xdr b/test-lcm-next/InvokeHostFunctionTests/9146eb4425682ade.xdr similarity index 66% rename from test-lcm-current/InvokeHostFunctionTests/0149cc6c1924569c.xdr rename to test-lcm-next/InvokeHostFunctionTests/9146eb4425682ade.xdr index 0b1c5c4197..9fd82f1de9 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/0149cc6c1924569c.xdr and b/test-lcm-next/InvokeHostFunctionTests/9146eb4425682ade.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/9209c586bd226b99.xdr b/test-lcm-next/InvokeHostFunctionTests/9209c586bd226b99.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/9209c586bd226b99.xdr and b/test-lcm-next/InvokeHostFunctionTests/9209c586bd226b99.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/9245f43fc2fba8b0.xdr b/test-lcm-next/InvokeHostFunctionTests/9245f43fc2fba8b0.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/9245f43fc2fba8b0.xdr and b/test-lcm-next/InvokeHostFunctionTests/9245f43fc2fba8b0.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/258ddf97b00c0bac.xdr b/test-lcm-next/InvokeHostFunctionTests/925562b1c2fa6d94.xdr similarity index 74% rename from test-lcm-current/InvokeHostFunctionTests/258ddf97b00c0bac.xdr rename to test-lcm-next/InvokeHostFunctionTests/925562b1c2fa6d94.xdr index cabbf6cade..891722ea79 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/258ddf97b00c0bac.xdr and b/test-lcm-next/InvokeHostFunctionTests/925562b1c2fa6d94.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/5bd72d146c15215c.xdr b/test-lcm-next/InvokeHostFunctionTests/92812a1aacefe098.xdr similarity index 67% rename from test-lcm-next/InvokeHostFunctionTests/5bd72d146c15215c.xdr rename to test-lcm-next/InvokeHostFunctionTests/92812a1aacefe098.xdr index 9da75862f9..03d24349dd 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/5bd72d146c15215c.xdr and b/test-lcm-next/InvokeHostFunctionTests/92812a1aacefe098.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/92b288c4d95b05f9.xdr b/test-lcm-next/InvokeHostFunctionTests/92b288c4d95b05f9.xdr index fe0090821e..3c4afbfaa6 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/92b288c4d95b05f9.xdr and b/test-lcm-next/InvokeHostFunctionTests/92b288c4d95b05f9.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/930b08e2d077bfdc.xdr b/test-lcm-next/InvokeHostFunctionTests/930b08e2d077bfdc.xdr index e379bb8aa1..5324d276bc 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/930b08e2d077bfdc.xdr and b/test-lcm-next/InvokeHostFunctionTests/930b08e2d077bfdc.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/932641f2b5405789.xdr b/test-lcm-next/InvokeHostFunctionTests/932641f2b5405789.xdr index 90e83ea9af..5be18ee0a1 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/932641f2b5405789.xdr and b/test-lcm-next/InvokeHostFunctionTests/932641f2b5405789.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/93481a30a4ea3f79.xdr b/test-lcm-next/InvokeHostFunctionTests/93481a30a4ea3f79.xdr index 68e5eeee1e..fe503f20c1 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/93481a30a4ea3f79.xdr and b/test-lcm-next/InvokeHostFunctionTests/93481a30a4ea3f79.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/93ba029750a86166.xdr b/test-lcm-next/InvokeHostFunctionTests/93ba029750a86166.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/93ba029750a86166.xdr and b/test-lcm-next/InvokeHostFunctionTests/93ba029750a86166.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/940e8bdc84f9af94.xdr b/test-lcm-next/InvokeHostFunctionTests/940e8bdc84f9af94.xdr index 3956ec2ffe..3229818ac5 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/940e8bdc84f9af94.xdr and b/test-lcm-next/InvokeHostFunctionTests/940e8bdc84f9af94.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/9435de885ff30026.xdr b/test-lcm-next/InvokeHostFunctionTests/9435de885ff30026.xdr index a0b31f4c38..13caeb26fc 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/9435de885ff30026.xdr and b/test-lcm-next/InvokeHostFunctionTests/9435de885ff30026.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/94f5f9a57e087669.xdr b/test-lcm-next/InvokeHostFunctionTests/94f5f9a57e087669.xdr index e7e0fd0e31..0fccdad05b 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/94f5f9a57e087669.xdr and b/test-lcm-next/InvokeHostFunctionTests/94f5f9a57e087669.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/955397e091e35fad.xdr b/test-lcm-next/InvokeHostFunctionTests/955397e091e35fad.xdr deleted file mode 100644 index a0e232c058..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/955397e091e35fad.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/9592b7d06c5fd16c.xdr b/test-lcm-next/InvokeHostFunctionTests/9592b7d06c5fd16c.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/9592b7d06c5fd16c.xdr and b/test-lcm-next/InvokeHostFunctionTests/9592b7d06c5fd16c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/95dfceb1b6e1c811.xdr b/test-lcm-next/InvokeHostFunctionTests/95dfceb1b6e1c811.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/95dfceb1b6e1c811.xdr and b/test-lcm-next/InvokeHostFunctionTests/95dfceb1b6e1c811.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/95ede71a6074dc1b.xdr b/test-lcm-next/InvokeHostFunctionTests/95ede71a6074dc1b.xdr index 9968824d9b..0c036d5a34 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/95ede71a6074dc1b.xdr and b/test-lcm-next/InvokeHostFunctionTests/95ede71a6074dc1b.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/964450cc2eb51081.xdr b/test-lcm-next/InvokeHostFunctionTests/964450cc2eb51081.xdr index ad03c1021d..cd7e6c103b 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/964450cc2eb51081.xdr and b/test-lcm-next/InvokeHostFunctionTests/964450cc2eb51081.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/96690328bd10efc5.xdr b/test-lcm-next/InvokeHostFunctionTests/96690328bd10efc5.xdr deleted file mode 100644 index 98925c080f..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/96690328bd10efc5.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/19ebdeb29f33ff85.xdr b/test-lcm-next/InvokeHostFunctionTests/973c473e2b3d9f51.xdr similarity index 76% rename from test-lcm-current/InvokeHostFunctionTests/19ebdeb29f33ff85.xdr rename to test-lcm-next/InvokeHostFunctionTests/973c473e2b3d9f51.xdr index 96b7f4273b..878a603049 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/19ebdeb29f33ff85.xdr and b/test-lcm-next/InvokeHostFunctionTests/973c473e2b3d9f51.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/2076a51f648569cd.xdr b/test-lcm-next/InvokeHostFunctionTests/98926b2de35ed6e6.xdr similarity index 65% rename from test-lcm-next/InvokeHostFunctionTests/2076a51f648569cd.xdr rename to test-lcm-next/InvokeHostFunctionTests/98926b2de35ed6e6.xdr index 62bad85915..9c4248b221 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/2076a51f648569cd.xdr and b/test-lcm-next/InvokeHostFunctionTests/98926b2de35ed6e6.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/98958916fd28f843.xdr b/test-lcm-next/InvokeHostFunctionTests/98958916fd28f843.xdr index 38bc9a24f7..06baba2936 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/98958916fd28f843.xdr and b/test-lcm-next/InvokeHostFunctionTests/98958916fd28f843.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/98dd9afc9aec58e3.xdr b/test-lcm-next/InvokeHostFunctionTests/98dd9afc9aec58e3.xdr deleted file mode 100644 index 4ef6f56575..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/98dd9afc9aec58e3.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/99cfc2b1081eda32.xdr b/test-lcm-next/InvokeHostFunctionTests/99cfc2b1081eda32.xdr new file mode 100644 index 0000000000..99b4d74bb9 Binary files /dev/null and b/test-lcm-next/InvokeHostFunctionTests/99cfc2b1081eda32.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/9a2c38c5272df06c.xdr b/test-lcm-next/InvokeHostFunctionTests/9a2c38c5272df06c.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/9a2c38c5272df06c.xdr and b/test-lcm-next/InvokeHostFunctionTests/9a2c38c5272df06c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/9a4d995b45b4db13.xdr b/test-lcm-next/InvokeHostFunctionTests/9a4d995b45b4db13.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/9a4d995b45b4db13.xdr and b/test-lcm-next/InvokeHostFunctionTests/9a4d995b45b4db13.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/9abda59d0cea408b.xdr b/test-lcm-next/InvokeHostFunctionTests/9abda59d0cea408b.xdr index c15ee3fe5d..68366ea718 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/9abda59d0cea408b.xdr and b/test-lcm-next/InvokeHostFunctionTests/9abda59d0cea408b.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/9b5ea22fe53632fe.xdr b/test-lcm-next/InvokeHostFunctionTests/9b5ea22fe53632fe.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/9b5ea22fe53632fe.xdr and b/test-lcm-next/InvokeHostFunctionTests/9b5ea22fe53632fe.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/9c169e4a17366ef4.xdr b/test-lcm-next/InvokeHostFunctionTests/9c169e4a17366ef4.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/9c169e4a17366ef4.xdr and b/test-lcm-next/InvokeHostFunctionTests/9c169e4a17366ef4.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/9c319f6ebbf74238.xdr b/test-lcm-next/InvokeHostFunctionTests/9c319f6ebbf74238.xdr index 93310d114c..942090fe31 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/9c319f6ebbf74238.xdr and b/test-lcm-next/InvokeHostFunctionTests/9c319f6ebbf74238.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/9c99d2135d9d7d77.xdr b/test-lcm-next/InvokeHostFunctionTests/9c99d2135d9d7d77.xdr deleted file mode 100644 index 401d7709f2..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/9c99d2135d9d7d77.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/9cbd66b8c4018c16.xdr b/test-lcm-next/InvokeHostFunctionTests/9cbd66b8c4018c16.xdr index 3cbce2626d..ee1cb8e18a 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/9cbd66b8c4018c16.xdr and b/test-lcm-next/InvokeHostFunctionTests/9cbd66b8c4018c16.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/9ccccec1202f5b81.xdr b/test-lcm-next/InvokeHostFunctionTests/9ccccec1202f5b81.xdr index 2b6b210fd0..6cf7260cc4 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/9ccccec1202f5b81.xdr and b/test-lcm-next/InvokeHostFunctionTests/9ccccec1202f5b81.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/9de1ea718b77ffa2.xdr b/test-lcm-next/InvokeHostFunctionTests/9de1ea718b77ffa2.xdr deleted file mode 100644 index da4654e102..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/9de1ea718b77ffa2.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/9e7d59169e4ded64.xdr b/test-lcm-next/InvokeHostFunctionTests/9e7d59169e4ded64.xdr index 082e4b6a26..77c4a4a9d1 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/9e7d59169e4ded64.xdr and b/test-lcm-next/InvokeHostFunctionTests/9e7d59169e4ded64.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/9e81b4f36cfd3af7.xdr b/test-lcm-next/InvokeHostFunctionTests/9e81b4f36cfd3af7.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/9e81b4f36cfd3af7.xdr and b/test-lcm-next/InvokeHostFunctionTests/9e81b4f36cfd3af7.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/8c1e0ede96cc0dbf.xdr b/test-lcm-next/InvokeHostFunctionTests/9eb4e26b61bc0325.xdr similarity index 70% rename from test-lcm-current/InvokeHostFunctionTests/8c1e0ede96cc0dbf.xdr rename to test-lcm-next/InvokeHostFunctionTests/9eb4e26b61bc0325.xdr index 4ecfb963bb..1c1a96e23f 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/8c1e0ede96cc0dbf.xdr and b/test-lcm-next/InvokeHostFunctionTests/9eb4e26b61bc0325.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/9f130c1b0c7b7a7a.xdr b/test-lcm-next/InvokeHostFunctionTests/9f130c1b0c7b7a7a.xdr index 873b089a71..7d8984e4b1 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/9f130c1b0c7b7a7a.xdr and b/test-lcm-next/InvokeHostFunctionTests/9f130c1b0c7b7a7a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/9f280040dbfe9ebd.xdr b/test-lcm-next/InvokeHostFunctionTests/9f280040dbfe9ebd.xdr index da239e46ed..d67b85ab69 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/9f280040dbfe9ebd.xdr and b/test-lcm-next/InvokeHostFunctionTests/9f280040dbfe9ebd.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/9fa92df05d0615bf.xdr b/test-lcm-next/InvokeHostFunctionTests/9fa92df05d0615bf.xdr index 19f42e5606..d230e4f9e9 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/9fa92df05d0615bf.xdr and b/test-lcm-next/InvokeHostFunctionTests/9fa92df05d0615bf.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/a0119ab86c638bee.xdr b/test-lcm-next/InvokeHostFunctionTests/a0119ab86c638bee.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/a0119ab86c638bee.xdr and b/test-lcm-next/InvokeHostFunctionTests/a0119ab86c638bee.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/69ea6faa228bf063.xdr b/test-lcm-next/InvokeHostFunctionTests/a0530911bb14b4b9.xdr similarity index 67% rename from test-lcm-next/InvokeHostFunctionTests/69ea6faa228bf063.xdr rename to test-lcm-next/InvokeHostFunctionTests/a0530911bb14b4b9.xdr index 7a0a5d2e84..ebb91d5606 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/69ea6faa228bf063.xdr and b/test-lcm-next/InvokeHostFunctionTests/a0530911bb14b4b9.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/a0b7e7243a96c9c6.xdr b/test-lcm-next/InvokeHostFunctionTests/a0b7e7243a96c9c6.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/a0b7e7243a96c9c6.xdr and b/test-lcm-next/InvokeHostFunctionTests/a0b7e7243a96c9c6.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/a0d59eaf3b79413c.xdr b/test-lcm-next/InvokeHostFunctionTests/a0d59eaf3b79413c.xdr index 39a01beb86..c5b46b3e72 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/a0d59eaf3b79413c.xdr and b/test-lcm-next/InvokeHostFunctionTests/a0d59eaf3b79413c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/a0fd94b0902a1c7f.xdr b/test-lcm-next/InvokeHostFunctionTests/a0fd94b0902a1c7f.xdr index 6e24a76813..3afbf73ab8 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/a0fd94b0902a1c7f.xdr and b/test-lcm-next/InvokeHostFunctionTests/a0fd94b0902a1c7f.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/b0401e90e28f708e.xdr b/test-lcm-next/InvokeHostFunctionTests/a1e8a2de64ca02cb.xdr similarity index 71% rename from test-lcm-current/InvokeHostFunctionTests/b0401e90e28f708e.xdr rename to test-lcm-next/InvokeHostFunctionTests/a1e8a2de64ca02cb.xdr index 31eea69981..14c69b774d 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/b0401e90e28f708e.xdr and b/test-lcm-next/InvokeHostFunctionTests/a1e8a2de64ca02cb.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/a258cc5505846d79.xdr b/test-lcm-next/InvokeHostFunctionTests/a258cc5505846d79.xdr index 95f42f46fb..fde428ae8f 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/a258cc5505846d79.xdr and b/test-lcm-next/InvokeHostFunctionTests/a258cc5505846d79.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/bd0e2c7d9d444eb7.xdr b/test-lcm-next/InvokeHostFunctionTests/a3e6e4ec2134a31c.xdr similarity index 81% rename from test-lcm-current/InvokeHostFunctionTests/bd0e2c7d9d444eb7.xdr rename to test-lcm-next/InvokeHostFunctionTests/a3e6e4ec2134a31c.xdr index a10842e28e..80c90624a4 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/bd0e2c7d9d444eb7.xdr and b/test-lcm-next/InvokeHostFunctionTests/a3e6e4ec2134a31c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/a71e4d9203d52748.xdr b/test-lcm-next/InvokeHostFunctionTests/a71e4d9203d52748.xdr index d439413d21..0956fa4204 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/a71e4d9203d52748.xdr and b/test-lcm-next/InvokeHostFunctionTests/a71e4d9203d52748.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/a72c947ed7b434d3.xdr b/test-lcm-next/InvokeHostFunctionTests/a72c947ed7b434d3.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/a72c947ed7b434d3.xdr and b/test-lcm-next/InvokeHostFunctionTests/a72c947ed7b434d3.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/a7a45d93c64cf3d9.xdr b/test-lcm-next/InvokeHostFunctionTests/a7a45d93c64cf3d9.xdr deleted file mode 100644 index 4cef5ddfde..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/a7a45d93c64cf3d9.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/a80621eee94baae6.xdr b/test-lcm-next/InvokeHostFunctionTests/a80621eee94baae6.xdr index 257eae602e..e50e81d89d 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/a80621eee94baae6.xdr and b/test-lcm-next/InvokeHostFunctionTests/a80621eee94baae6.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/a8a9725a33441cb5.xdr b/test-lcm-next/InvokeHostFunctionTests/a8a9725a33441cb5.xdr index 8c2aad2413..b48b4811fa 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/a8a9725a33441cb5.xdr and b/test-lcm-next/InvokeHostFunctionTests/a8a9725a33441cb5.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/a8d1cb44f470573f.xdr b/test-lcm-next/InvokeHostFunctionTests/a8d1cb44f470573f.xdr index 49aa7d36ef..f08c86a461 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/a8d1cb44f470573f.xdr and b/test-lcm-next/InvokeHostFunctionTests/a8d1cb44f470573f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/a904442b4503e607.xdr b/test-lcm-next/InvokeHostFunctionTests/a904442b4503e607.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/a904442b4503e607.xdr and b/test-lcm-next/InvokeHostFunctionTests/a904442b4503e607.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/a94afbf4a15753e8.xdr b/test-lcm-next/InvokeHostFunctionTests/a94afbf4a15753e8.xdr index c2bb6604c5..992eb2b223 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/a94afbf4a15753e8.xdr and b/test-lcm-next/InvokeHostFunctionTests/a94afbf4a15753e8.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/a9af3a29cf25b4d2.xdr b/test-lcm-next/InvokeHostFunctionTests/a9af3a29cf25b4d2.xdr index 5a174a25dc..d9c91c0c6d 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/a9af3a29cf25b4d2.xdr and b/test-lcm-next/InvokeHostFunctionTests/a9af3a29cf25b4d2.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/aa53f5c640a1c97e.xdr b/test-lcm-next/InvokeHostFunctionTests/aa53f5c640a1c97e.xdr index c34bd8e4b2..d0aa7cfcc2 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/aa53f5c640a1c97e.xdr and b/test-lcm-next/InvokeHostFunctionTests/aa53f5c640a1c97e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/aa722688a0fedfc0.xdr b/test-lcm-next/InvokeHostFunctionTests/aa722688a0fedfc0.xdr deleted file mode 100644 index d5ba8a9289..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/aa722688a0fedfc0.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b74618989cc0605c.xdr b/test-lcm-next/InvokeHostFunctionTests/aaf3b23c21536d24.xdr similarity index 70% rename from test-lcm-next/InvokeHostFunctionTests/b74618989cc0605c.xdr rename to test-lcm-next/InvokeHostFunctionTests/aaf3b23c21536d24.xdr index 799a76f093..ed9306645f 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b74618989cc0605c.xdr and b/test-lcm-next/InvokeHostFunctionTests/aaf3b23c21536d24.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ab3bce4773581342.xdr b/test-lcm-next/InvokeHostFunctionTests/ab3bce4773581342.xdr index 67302231b4..6fcc79ae14 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ab3bce4773581342.xdr and b/test-lcm-next/InvokeHostFunctionTests/ab3bce4773581342.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ab898f0b7ce30529.xdr b/test-lcm-next/InvokeHostFunctionTests/ab898f0b7ce30529.xdr deleted file mode 100644 index dc68f3c3c5..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/ab898f0b7ce30529.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/abe9daab6e04747a.xdr b/test-lcm-next/InvokeHostFunctionTests/abe9daab6e04747a.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/abe9daab6e04747a.xdr and b/test-lcm-next/InvokeHostFunctionTests/abe9daab6e04747a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ad00903073e6c1d2.xdr b/test-lcm-next/InvokeHostFunctionTests/ad00903073e6c1d2.xdr index fc8adbb108..946ea53aad 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ad00903073e6c1d2.xdr and b/test-lcm-next/InvokeHostFunctionTests/ad00903073e6c1d2.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ad19485cea9fa38c.xdr b/test-lcm-next/InvokeHostFunctionTests/ad19485cea9fa38c.xdr index e2a566a366..d3a2ee18b1 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ad19485cea9fa38c.xdr and b/test-lcm-next/InvokeHostFunctionTests/ad19485cea9fa38c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/48c781bbceb21112.xdr b/test-lcm-next/InvokeHostFunctionTests/ae37ace1fbc924e5.xdr similarity index 71% rename from test-lcm-next/InvokeHostFunctionTests/48c781bbceb21112.xdr rename to test-lcm-next/InvokeHostFunctionTests/ae37ace1fbc924e5.xdr index 4bf0390568..db1e6a8577 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/48c781bbceb21112.xdr and b/test-lcm-next/InvokeHostFunctionTests/ae37ace1fbc924e5.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ae601103b9e4498d.xdr b/test-lcm-next/InvokeHostFunctionTests/ae601103b9e4498d.xdr index f16a094f8f..9818735a65 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ae601103b9e4498d.xdr and b/test-lcm-next/InvokeHostFunctionTests/ae601103b9e4498d.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/aec6a7cfd3c1af73.xdr b/test-lcm-next/InvokeHostFunctionTests/aec6a7cfd3c1af73.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/aec6a7cfd3c1af73.xdr and b/test-lcm-next/InvokeHostFunctionTests/aec6a7cfd3c1af73.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/aef8c4cf49c5cce1.xdr b/test-lcm-next/InvokeHostFunctionTests/aef8c4cf49c5cce1.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/aef8c4cf49c5cce1.xdr and b/test-lcm-next/InvokeHostFunctionTests/aef8c4cf49c5cce1.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/af54a98dbdd88b52.xdr b/test-lcm-next/InvokeHostFunctionTests/af54a98dbdd88b52.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/af54a98dbdd88b52.xdr and b/test-lcm-next/InvokeHostFunctionTests/af54a98dbdd88b52.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/97afc8ac2ddb94d7.xdr b/test-lcm-next/InvokeHostFunctionTests/af5af20b7b9fedf3.xdr similarity index 71% rename from test-lcm-current/InvokeHostFunctionTests/97afc8ac2ddb94d7.xdr rename to test-lcm-next/InvokeHostFunctionTests/af5af20b7b9fedf3.xdr index f54703d181..397838af04 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/97afc8ac2ddb94d7.xdr and b/test-lcm-next/InvokeHostFunctionTests/af5af20b7b9fedf3.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/afa256621921b22e.xdr b/test-lcm-next/InvokeHostFunctionTests/afa256621921b22e.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/afa256621921b22e.xdr and b/test-lcm-next/InvokeHostFunctionTests/afa256621921b22e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/afe35bda9ebb3f2c.xdr b/test-lcm-next/InvokeHostFunctionTests/afe35bda9ebb3f2c.xdr index b242a7d78f..8e0052b6ce 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/afe35bda9ebb3f2c.xdr and b/test-lcm-next/InvokeHostFunctionTests/afe35bda9ebb3f2c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b045bf491859a6b8.xdr b/test-lcm-next/InvokeHostFunctionTests/b045bf491859a6b8.xdr index 9152bb0811..0de6c7daba 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b045bf491859a6b8.xdr and b/test-lcm-next/InvokeHostFunctionTests/b045bf491859a6b8.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b064c60719fa9bec.xdr b/test-lcm-next/InvokeHostFunctionTests/b064c60719fa9bec.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b064c60719fa9bec.xdr and b/test-lcm-next/InvokeHostFunctionTests/b064c60719fa9bec.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b07277fd54b0b7bc.xdr b/test-lcm-next/InvokeHostFunctionTests/b07277fd54b0b7bc.xdr deleted file mode 100644 index ebda845a9f..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/b07277fd54b0b7bc.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b136f91677750cd4.xdr b/test-lcm-next/InvokeHostFunctionTests/b136f91677750cd4.xdr index 67e47f7a87..32e2b1fe8f 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b136f91677750cd4.xdr and b/test-lcm-next/InvokeHostFunctionTests/b136f91677750cd4.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b149a7eb981b5ed6.xdr b/test-lcm-next/InvokeHostFunctionTests/b149a7eb981b5ed6.xdr index 3985e87df7..105c33610b 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b149a7eb981b5ed6.xdr and b/test-lcm-next/InvokeHostFunctionTests/b149a7eb981b5ed6.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b1d5a1bda5b51e5b.xdr b/test-lcm-next/InvokeHostFunctionTests/b1d5a1bda5b51e5b.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b1d5a1bda5b51e5b.xdr and b/test-lcm-next/InvokeHostFunctionTests/b1d5a1bda5b51e5b.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b808b59ac14049b2.xdr b/test-lcm-next/InvokeHostFunctionTests/b1ea5e0a15f73c18.xdr similarity index 75% rename from test-lcm-next/InvokeHostFunctionTests/b808b59ac14049b2.xdr rename to test-lcm-next/InvokeHostFunctionTests/b1ea5e0a15f73c18.xdr index c9fba7ae0e..7fa154dfbc 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b808b59ac14049b2.xdr and b/test-lcm-next/InvokeHostFunctionTests/b1ea5e0a15f73c18.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b3082e3bcd3a078c.xdr b/test-lcm-next/InvokeHostFunctionTests/b3082e3bcd3a078c.xdr index 588b045849..6f9ab6e2ee 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b3082e3bcd3a078c.xdr and b/test-lcm-next/InvokeHostFunctionTests/b3082e3bcd3a078c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b3101bb9f07292f5.xdr b/test-lcm-next/InvokeHostFunctionTests/b3101bb9f07292f5.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b3101bb9f07292f5.xdr and b/test-lcm-next/InvokeHostFunctionTests/b3101bb9f07292f5.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b3437be97f124777.xdr b/test-lcm-next/InvokeHostFunctionTests/b3437be97f124777.xdr index fb525e0a32..ad248b893e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b3437be97f124777.xdr and b/test-lcm-next/InvokeHostFunctionTests/b3437be97f124777.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b34f3ecaf4fdb062.xdr b/test-lcm-next/InvokeHostFunctionTests/b34f3ecaf4fdb062.xdr index 3df851e061..4bf4214e12 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b34f3ecaf4fdb062.xdr and b/test-lcm-next/InvokeHostFunctionTests/b34f3ecaf4fdb062.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b3f7fce5e8492f2e.xdr b/test-lcm-next/InvokeHostFunctionTests/b3f7fce5e8492f2e.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b3f7fce5e8492f2e.xdr and b/test-lcm-next/InvokeHostFunctionTests/b3f7fce5e8492f2e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b4148adbbba04047.xdr b/test-lcm-next/InvokeHostFunctionTests/b4148adbbba04047.xdr index f8a154a571..5cefa962a7 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b4148adbbba04047.xdr and b/test-lcm-next/InvokeHostFunctionTests/b4148adbbba04047.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b5a503183a69e95f.xdr b/test-lcm-next/InvokeHostFunctionTests/b5a503183a69e95f.xdr index 6254a8ece1..f5aff35bcd 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b5a503183a69e95f.xdr and b/test-lcm-next/InvokeHostFunctionTests/b5a503183a69e95f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b5db087139748e93.xdr b/test-lcm-next/InvokeHostFunctionTests/b5db087139748e93.xdr new file mode 100644 index 0000000000..f9d41a6f01 Binary files /dev/null and b/test-lcm-next/InvokeHostFunctionTests/b5db087139748e93.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b5e418a8a8cf65b9.xdr b/test-lcm-next/InvokeHostFunctionTests/b5e418a8a8cf65b9.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b5e418a8a8cf65b9.xdr and b/test-lcm-next/InvokeHostFunctionTests/b5e418a8a8cf65b9.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b652542975ff5560.xdr b/test-lcm-next/InvokeHostFunctionTests/b652542975ff5560.xdr index 4fd938d91d..94aefbd133 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b652542975ff5560.xdr and b/test-lcm-next/InvokeHostFunctionTests/b652542975ff5560.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b6ce7aade1aed1e3.xdr b/test-lcm-next/InvokeHostFunctionTests/b6ce7aade1aed1e3.xdr deleted file mode 100644 index 7e36e25bef..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/b6ce7aade1aed1e3.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b71e067496723cb3.xdr b/test-lcm-next/InvokeHostFunctionTests/b71e067496723cb3.xdr deleted file mode 100644 index f485e169e3..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/b71e067496723cb3.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b7db472d275c4797.xdr b/test-lcm-next/InvokeHostFunctionTests/b7db472d275c4797.xdr index 2f423b31f9..19da416715 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b7db472d275c4797.xdr and b/test-lcm-next/InvokeHostFunctionTests/b7db472d275c4797.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b9862c0b86a145aa.xdr b/test-lcm-next/InvokeHostFunctionTests/b9862c0b86a145aa.xdr index 58e6f24748..98e5581dac 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b9862c0b86a145aa.xdr and b/test-lcm-next/InvokeHostFunctionTests/b9862c0b86a145aa.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/b9bdda6eada575ea.xdr b/test-lcm-next/InvokeHostFunctionTests/b9bdda6eada575ea.xdr index 47a8aaa04b..03ba23521a 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/b9bdda6eada575ea.xdr and b/test-lcm-next/InvokeHostFunctionTests/b9bdda6eada575ea.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ba8824d29063376f.xdr b/test-lcm-next/InvokeHostFunctionTests/ba8824d29063376f.xdr index c19294a7ee..c56f5c5f6d 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ba8824d29063376f.xdr and b/test-lcm-next/InvokeHostFunctionTests/ba8824d29063376f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ba9e85782489d4b3.xdr b/test-lcm-next/InvokeHostFunctionTests/ba9e85782489d4b3.xdr index 5f4409058d..f85aad3119 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ba9e85782489d4b3.xdr and b/test-lcm-next/InvokeHostFunctionTests/ba9e85782489d4b3.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/baa71b7a006a3951.xdr b/test-lcm-next/InvokeHostFunctionTests/baa71b7a006a3951.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/baa71b7a006a3951.xdr and b/test-lcm-next/InvokeHostFunctionTests/baa71b7a006a3951.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/0540c58d02f9c06b.xdr b/test-lcm-next/InvokeHostFunctionTests/baeae6dfbb97ae8c.xdr similarity index 67% rename from test-lcm-next/InvokeHostFunctionTests/0540c58d02f9c06b.xdr rename to test-lcm-next/InvokeHostFunctionTests/baeae6dfbb97ae8c.xdr index a74ddf47b7..d8d992cb74 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/0540c58d02f9c06b.xdr and b/test-lcm-next/InvokeHostFunctionTests/baeae6dfbb97ae8c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/bb10b7a54991da41.xdr b/test-lcm-next/InvokeHostFunctionTests/bb10b7a54991da41.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/bb10b7a54991da41.xdr and b/test-lcm-next/InvokeHostFunctionTests/bb10b7a54991da41.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/bc4e53b6b14ed910.xdr b/test-lcm-next/InvokeHostFunctionTests/bc4e53b6b14ed910.xdr new file mode 100644 index 0000000000..069f15ae9e Binary files /dev/null and b/test-lcm-next/InvokeHostFunctionTests/bc4e53b6b14ed910.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/bd7ec9becd2cf279.xdr b/test-lcm-next/InvokeHostFunctionTests/bd7ec9becd2cf279.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/bd7ec9becd2cf279.xdr and b/test-lcm-next/InvokeHostFunctionTests/bd7ec9becd2cf279.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/bdf21d276e44df51.xdr b/test-lcm-next/InvokeHostFunctionTests/bdf21d276e44df51.xdr index eed1cc85ad..5072c5ec2d 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/bdf21d276e44df51.xdr and b/test-lcm-next/InvokeHostFunctionTests/bdf21d276e44df51.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/bdfcd5f448d7a9cd.xdr b/test-lcm-next/InvokeHostFunctionTests/bdfcd5f448d7a9cd.xdr index f599591fd9..3d193abb26 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/bdfcd5f448d7a9cd.xdr and b/test-lcm-next/InvokeHostFunctionTests/bdfcd5f448d7a9cd.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/be52cd7f42814b0a.xdr b/test-lcm-next/InvokeHostFunctionTests/be52cd7f42814b0a.xdr index 74fb7dc6b6..a89c3093e4 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/be52cd7f42814b0a.xdr and b/test-lcm-next/InvokeHostFunctionTests/be52cd7f42814b0a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/be6ebb5f038aa456.xdr b/test-lcm-next/InvokeHostFunctionTests/be6ebb5f038aa456.xdr index 779e8df911..b2a22a8a94 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/be6ebb5f038aa456.xdr and b/test-lcm-next/InvokeHostFunctionTests/be6ebb5f038aa456.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/be9fcc614f398cf3.xdr b/test-lcm-next/InvokeHostFunctionTests/be9fcc614f398cf3.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/be9fcc614f398cf3.xdr and b/test-lcm-next/InvokeHostFunctionTests/be9fcc614f398cf3.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/bec5319840022194.xdr b/test-lcm-next/InvokeHostFunctionTests/bec5319840022194.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/bec5319840022194.xdr and b/test-lcm-next/InvokeHostFunctionTests/bec5319840022194.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/bec915835775f88a.xdr b/test-lcm-next/InvokeHostFunctionTests/bec915835775f88a.xdr index 30da6c68f7..3d89de288f 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/bec915835775f88a.xdr and b/test-lcm-next/InvokeHostFunctionTests/bec915835775f88a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/beed566485392053.xdr b/test-lcm-next/InvokeHostFunctionTests/beed566485392053.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/beed566485392053.xdr and b/test-lcm-next/InvokeHostFunctionTests/beed566485392053.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/beee405585556b28.xdr b/test-lcm-next/InvokeHostFunctionTests/beee405585556b28.xdr index 781abba6b2..02e8926b04 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/beee405585556b28.xdr and b/test-lcm-next/InvokeHostFunctionTests/beee405585556b28.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/bf27f88df8fb68c5.xdr b/test-lcm-next/InvokeHostFunctionTests/bf27f88df8fb68c5.xdr index 23ac98c6da..3032fb5fe7 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/bf27f88df8fb68c5.xdr and b/test-lcm-next/InvokeHostFunctionTests/bf27f88df8fb68c5.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/686a3a2a7946fa12.xdr b/test-lcm-next/InvokeHostFunctionTests/bf572f41777a2153.xdr similarity index 69% rename from test-lcm-current/InvokeHostFunctionTests/686a3a2a7946fa12.xdr rename to test-lcm-next/InvokeHostFunctionTests/bf572f41777a2153.xdr index 0408961203..1465bf66b1 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/686a3a2a7946fa12.xdr and b/test-lcm-next/InvokeHostFunctionTests/bf572f41777a2153.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/bf6b1019d0b7569d.xdr b/test-lcm-next/InvokeHostFunctionTests/bf6b1019d0b7569d.xdr deleted file mode 100644 index 02c537a4ee..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/bf6b1019d0b7569d.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/bfa396d5747102ff.xdr b/test-lcm-next/InvokeHostFunctionTests/bfa396d5747102ff.xdr index c84a194a47..66fa0e9ab5 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/bfa396d5747102ff.xdr and b/test-lcm-next/InvokeHostFunctionTests/bfa396d5747102ff.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c03bbceaf1428236.xdr b/test-lcm-next/InvokeHostFunctionTests/c03bbceaf1428236.xdr index 3c2f0b89f4..3d9b1079fc 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c03bbceaf1428236.xdr and b/test-lcm-next/InvokeHostFunctionTests/c03bbceaf1428236.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c07830e846670e5d.xdr b/test-lcm-next/InvokeHostFunctionTests/c07830e846670e5d.xdr deleted file mode 100644 index 952cf59966..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/c07830e846670e5d.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c18c912409884beb.xdr b/test-lcm-next/InvokeHostFunctionTests/c18c912409884beb.xdr index 6eb245ff19..1fb35d96c6 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c18c912409884beb.xdr and b/test-lcm-next/InvokeHostFunctionTests/c18c912409884beb.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c1b1663060d151c0.xdr b/test-lcm-next/InvokeHostFunctionTests/c1b1663060d151c0.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c1b1663060d151c0.xdr and b/test-lcm-next/InvokeHostFunctionTests/c1b1663060d151c0.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c1b4226571cd3ae1.xdr b/test-lcm-next/InvokeHostFunctionTests/c1b4226571cd3ae1.xdr index 6f5aa0a7bc..f89753aeea 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c1b4226571cd3ae1.xdr and b/test-lcm-next/InvokeHostFunctionTests/c1b4226571cd3ae1.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c1c7ac4fa5ae147c.xdr b/test-lcm-next/InvokeHostFunctionTests/c1c7ac4fa5ae147c.xdr index b22ee062cb..81433ae583 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c1c7ac4fa5ae147c.xdr and b/test-lcm-next/InvokeHostFunctionTests/c1c7ac4fa5ae147c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c252cebb25294eab.xdr b/test-lcm-next/InvokeHostFunctionTests/c252cebb25294eab.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c252cebb25294eab.xdr and b/test-lcm-next/InvokeHostFunctionTests/c252cebb25294eab.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c255cd77235ad3c4.xdr b/test-lcm-next/InvokeHostFunctionTests/c255cd77235ad3c4.xdr deleted file mode 100644 index 6d1e11bf6f..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/c255cd77235ad3c4.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c2ac55826ca7e6de.xdr b/test-lcm-next/InvokeHostFunctionTests/c2ac55826ca7e6de.xdr index 0809d57f0b..b285ab68d6 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c2ac55826ca7e6de.xdr and b/test-lcm-next/InvokeHostFunctionTests/c2ac55826ca7e6de.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c2c932cf464209f1.xdr b/test-lcm-next/InvokeHostFunctionTests/c2c932cf464209f1.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c2c932cf464209f1.xdr and b/test-lcm-next/InvokeHostFunctionTests/c2c932cf464209f1.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c312c5d7aa1dfb38.xdr b/test-lcm-next/InvokeHostFunctionTests/c312c5d7aa1dfb38.xdr deleted file mode 100644 index 0fb9fe7323..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/c312c5d7aa1dfb38.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/90153646e94af892.xdr b/test-lcm-next/InvokeHostFunctionTests/c3497f7f5230cd85.xdr similarity index 76% rename from test-lcm-current/InvokeHostFunctionTests/90153646e94af892.xdr rename to test-lcm-next/InvokeHostFunctionTests/c3497f7f5230cd85.xdr index 2f48fb224f..f11c9a8c9c 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/90153646e94af892.xdr and b/test-lcm-next/InvokeHostFunctionTests/c3497f7f5230cd85.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c36cbaffe2709df8.xdr b/test-lcm-next/InvokeHostFunctionTests/c36cbaffe2709df8.xdr deleted file mode 100644 index 13dba78369..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/c36cbaffe2709df8.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c3962c4a93291d74.xdr b/test-lcm-next/InvokeHostFunctionTests/c3962c4a93291d74.xdr index d5a4763621..3a100ce07c 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c3962c4a93291d74.xdr and b/test-lcm-next/InvokeHostFunctionTests/c3962c4a93291d74.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c3bb0eae31d31633.xdr b/test-lcm-next/InvokeHostFunctionTests/c3bb0eae31d31633.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c3bb0eae31d31633.xdr and b/test-lcm-next/InvokeHostFunctionTests/c3bb0eae31d31633.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c455542f23c8635a.xdr b/test-lcm-next/InvokeHostFunctionTests/c455542f23c8635a.xdr deleted file mode 100644 index 21aae4b68b..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/c455542f23c8635a.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c5d57c89c419e4af.xdr b/test-lcm-next/InvokeHostFunctionTests/c5d57c89c419e4af.xdr index d1bab4afb4..da071f9d18 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c5d57c89c419e4af.xdr and b/test-lcm-next/InvokeHostFunctionTests/c5d57c89c419e4af.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c5f89e8c3c843590.xdr b/test-lcm-next/InvokeHostFunctionTests/c5f89e8c3c843590.xdr index f00ba22f2e..be5583c671 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c5f89e8c3c843590.xdr and b/test-lcm-next/InvokeHostFunctionTests/c5f89e8c3c843590.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c6c3d9865a04db5b.xdr b/test-lcm-next/InvokeHostFunctionTests/c6c3d9865a04db5b.xdr index 53896a0f00..733f04fe8a 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c6c3d9865a04db5b.xdr and b/test-lcm-next/InvokeHostFunctionTests/c6c3d9865a04db5b.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/fdce9caeb61c5f3a.xdr b/test-lcm-next/InvokeHostFunctionTests/c6fa3d29d6c09229.xdr similarity index 73% rename from test-lcm-current/InvokeHostFunctionTests/fdce9caeb61c5f3a.xdr rename to test-lcm-next/InvokeHostFunctionTests/c6fa3d29d6c09229.xdr index e3f3081960..69acdc717d 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/fdce9caeb61c5f3a.xdr and b/test-lcm-next/InvokeHostFunctionTests/c6fa3d29d6c09229.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c81666a24e4770bd.xdr b/test-lcm-next/InvokeHostFunctionTests/c81666a24e4770bd.xdr deleted file mode 100644 index 8b7b9d41f5..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/c81666a24e4770bd.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c89523486b59f106.xdr b/test-lcm-next/InvokeHostFunctionTests/c89523486b59f106.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c89523486b59f106.xdr and b/test-lcm-next/InvokeHostFunctionTests/c89523486b59f106.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c8b43ab94c4aada0.xdr b/test-lcm-next/InvokeHostFunctionTests/c8b43ab94c4aada0.xdr index cc0eaefb9d..e1634f3ea8 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c8b43ab94c4aada0.xdr and b/test-lcm-next/InvokeHostFunctionTests/c8b43ab94c4aada0.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/04b00b08d10222a3.xdr b/test-lcm-next/InvokeHostFunctionTests/c8de372c41ca8c93.xdr similarity index 75% rename from test-lcm-next/InvokeHostFunctionTests/04b00b08d10222a3.xdr rename to test-lcm-next/InvokeHostFunctionTests/c8de372c41ca8c93.xdr index 0f5cad92f8..1f9f869c91 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/04b00b08d10222a3.xdr and b/test-lcm-next/InvokeHostFunctionTests/c8de372c41ca8c93.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c8f28ce0094c5916.xdr b/test-lcm-next/InvokeHostFunctionTests/c8f28ce0094c5916.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c8f28ce0094c5916.xdr and b/test-lcm-next/InvokeHostFunctionTests/c8f28ce0094c5916.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/8433fde0f0bbd2f7.xdr b/test-lcm-next/InvokeHostFunctionTests/c91fd23bca6a56a0.xdr similarity index 70% rename from test-lcm-current/InvokeHostFunctionTests/8433fde0f0bbd2f7.xdr rename to test-lcm-next/InvokeHostFunctionTests/c91fd23bca6a56a0.xdr index 42bd5fd40e..5f7238b6b2 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/8433fde0f0bbd2f7.xdr and b/test-lcm-next/InvokeHostFunctionTests/c91fd23bca6a56a0.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c922fea348665a87.xdr b/test-lcm-next/InvokeHostFunctionTests/c922fea348665a87.xdr index 8171a75e18..5f6181936d 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c922fea348665a87.xdr and b/test-lcm-next/InvokeHostFunctionTests/c922fea348665a87.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c9844b91db3ef0b0.xdr b/test-lcm-next/InvokeHostFunctionTests/c9844b91db3ef0b0.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c9844b91db3ef0b0.xdr and b/test-lcm-next/InvokeHostFunctionTests/c9844b91db3ef0b0.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c99364d18b82557b.xdr b/test-lcm-next/InvokeHostFunctionTests/c99364d18b82557b.xdr index 7ccd38b1b0..b4ddc62739 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c99364d18b82557b.xdr and b/test-lcm-next/InvokeHostFunctionTests/c99364d18b82557b.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c99ea4a349fa4865.xdr b/test-lcm-next/InvokeHostFunctionTests/c99ea4a349fa4865.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c99ea4a349fa4865.xdr and b/test-lcm-next/InvokeHostFunctionTests/c99ea4a349fa4865.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c9a9eaa405e6134c.xdr b/test-lcm-next/InvokeHostFunctionTests/c9a9eaa405e6134c.xdr index c28ce5b28e..f3016fd7a1 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c9a9eaa405e6134c.xdr and b/test-lcm-next/InvokeHostFunctionTests/c9a9eaa405e6134c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c9dbd32afe107afb.xdr b/test-lcm-next/InvokeHostFunctionTests/c9dbd32afe107afb.xdr index 7ed5f4bdcf..032e1b3501 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c9dbd32afe107afb.xdr and b/test-lcm-next/InvokeHostFunctionTests/c9dbd32afe107afb.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/c9eca15bdeb9bf48.xdr b/test-lcm-next/InvokeHostFunctionTests/c9eca15bdeb9bf48.xdr index 26186977bc..0b77abf49c 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/c9eca15bdeb9bf48.xdr and b/test-lcm-next/InvokeHostFunctionTests/c9eca15bdeb9bf48.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f83bee8c248aebe1.xdr b/test-lcm-next/InvokeHostFunctionTests/c9f9a266e693ab37.xdr similarity index 68% rename from test-lcm-current/InvokeHostFunctionTests/f83bee8c248aebe1.xdr rename to test-lcm-next/InvokeHostFunctionTests/c9f9a266e693ab37.xdr index 7e32beddd4..deb7172def 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f83bee8c248aebe1.xdr and b/test-lcm-next/InvokeHostFunctionTests/c9f9a266e693ab37.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ca44bb06db470a22.xdr b/test-lcm-next/InvokeHostFunctionTests/ca44bb06db470a22.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ca44bb06db470a22.xdr and b/test-lcm-next/InvokeHostFunctionTests/ca44bb06db470a22.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ca81ee3779279e5f.xdr b/test-lcm-next/InvokeHostFunctionTests/ca81ee3779279e5f.xdr index 653259f501..c0abaa8289 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ca81ee3779279e5f.xdr and b/test-lcm-next/InvokeHostFunctionTests/ca81ee3779279e5f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ca96297c5d814422.xdr b/test-lcm-next/InvokeHostFunctionTests/ca96297c5d814422.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ca96297c5d814422.xdr and b/test-lcm-next/InvokeHostFunctionTests/ca96297c5d814422.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/cab764de9b6ee4b7.xdr b/test-lcm-next/InvokeHostFunctionTests/cab764de9b6ee4b7.xdr index 4b4ffe356e..8e84b759e3 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/cab764de9b6ee4b7.xdr and b/test-lcm-next/InvokeHostFunctionTests/cab764de9b6ee4b7.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/cb9097b6c1c38bdd.xdr b/test-lcm-next/InvokeHostFunctionTests/cb9097b6c1c38bdd.xdr index 4b2c37365e..4450705ad5 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/cb9097b6c1c38bdd.xdr and b/test-lcm-next/InvokeHostFunctionTests/cb9097b6c1c38bdd.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/cc8e5617818c25e6.xdr b/test-lcm-next/InvokeHostFunctionTests/cc8e5617818c25e6.xdr deleted file mode 100644 index 10b24a116f..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/cc8e5617818c25e6.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/cc952a3d07337931.xdr b/test-lcm-next/InvokeHostFunctionTests/cc952a3d07337931.xdr index b466593b7c..3fe2bb1749 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/cc952a3d07337931.xdr and b/test-lcm-next/InvokeHostFunctionTests/cc952a3d07337931.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/cd577b89ed04d414.xdr b/test-lcm-next/InvokeHostFunctionTests/cd577b89ed04d414.xdr deleted file mode 100644 index 46b7025bc8..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/cd577b89ed04d414.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/cd9b67cc851ef13d.xdr b/test-lcm-next/InvokeHostFunctionTests/cd9b67cc851ef13d.xdr index 4386db7c4e..883bf9eac4 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/cd9b67cc851ef13d.xdr and b/test-lcm-next/InvokeHostFunctionTests/cd9b67cc851ef13d.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/cdc0fbbed34915f1.xdr b/test-lcm-next/InvokeHostFunctionTests/cdc0fbbed34915f1.xdr index 83fe501d88..4f143fe911 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/cdc0fbbed34915f1.xdr and b/test-lcm-next/InvokeHostFunctionTests/cdc0fbbed34915f1.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ce5735da86b32673.xdr b/test-lcm-next/InvokeHostFunctionTests/ce5735da86b32673.xdr index 8925b7a753..97cd771b4e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ce5735da86b32673.xdr and b/test-lcm-next/InvokeHostFunctionTests/ce5735da86b32673.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ce670ea1968c6dd3.xdr b/test-lcm-next/InvokeHostFunctionTests/ce670ea1968c6dd3.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ce670ea1968c6dd3.xdr and b/test-lcm-next/InvokeHostFunctionTests/ce670ea1968c6dd3.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/cebea90af92b39d2.xdr b/test-lcm-next/InvokeHostFunctionTests/cebea90af92b39d2.xdr index 460308cb06..f956df1e6a 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/cebea90af92b39d2.xdr and b/test-lcm-next/InvokeHostFunctionTests/cebea90af92b39d2.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ced5e149f8263218.xdr b/test-lcm-next/InvokeHostFunctionTests/ced5e149f8263218.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ced5e149f8263218.xdr and b/test-lcm-next/InvokeHostFunctionTests/ced5e149f8263218.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/cf226151fb04c10f.xdr b/test-lcm-next/InvokeHostFunctionTests/cf226151fb04c10f.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/cf226151fb04c10f.xdr and b/test-lcm-next/InvokeHostFunctionTests/cf226151fb04c10f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/cf2d86dd85a2417a.xdr b/test-lcm-next/InvokeHostFunctionTests/cf2d86dd85a2417a.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/cf2d86dd85a2417a.xdr and b/test-lcm-next/InvokeHostFunctionTests/cf2d86dd85a2417a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/cf339a74cb38c15b.xdr b/test-lcm-next/InvokeHostFunctionTests/cf339a74cb38c15b.xdr index 582a67db31..b8aac920e5 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/cf339a74cb38c15b.xdr and b/test-lcm-next/InvokeHostFunctionTests/cf339a74cb38c15b.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d0994aa43a850a1a.xdr b/test-lcm-next/InvokeHostFunctionTests/d0994aa43a850a1a.xdr deleted file mode 100644 index 6722163c71..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/d0994aa43a850a1a.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d10f1da9f73be05f.xdr b/test-lcm-next/InvokeHostFunctionTests/d10f1da9f73be05f.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d10f1da9f73be05f.xdr and b/test-lcm-next/InvokeHostFunctionTests/d10f1da9f73be05f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d1522d4667822bc2.xdr b/test-lcm-next/InvokeHostFunctionTests/d1522d4667822bc2.xdr index 676ff4e8cc..c7990b3fea 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d1522d4667822bc2.xdr and b/test-lcm-next/InvokeHostFunctionTests/d1522d4667822bc2.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/498193fdba08697c.xdr b/test-lcm-next/InvokeHostFunctionTests/d152ab0bc07cb1d1.xdr similarity index 66% rename from test-lcm-current/InvokeHostFunctionTests/498193fdba08697c.xdr rename to test-lcm-next/InvokeHostFunctionTests/d152ab0bc07cb1d1.xdr index f1571901ce..2096cc35a3 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/498193fdba08697c.xdr and b/test-lcm-next/InvokeHostFunctionTests/d152ab0bc07cb1d1.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d15d2c79a5a0afad.xdr b/test-lcm-next/InvokeHostFunctionTests/d15d2c79a5a0afad.xdr index acb5cdfc79..74cd2f3d24 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d15d2c79a5a0afad.xdr and b/test-lcm-next/InvokeHostFunctionTests/d15d2c79a5a0afad.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d192ab90b43eeb6a.xdr b/test-lcm-next/InvokeHostFunctionTests/d192ab90b43eeb6a.xdr index f7b922099a..b25060670a 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d192ab90b43eeb6a.xdr and b/test-lcm-next/InvokeHostFunctionTests/d192ab90b43eeb6a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d1f5d115b26f2c2d.xdr b/test-lcm-next/InvokeHostFunctionTests/d1f5d115b26f2c2d.xdr deleted file mode 100644 index e564404783..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/d1f5d115b26f2c2d.xdr and /dev/null differ diff --git a/test-lcm-current/InvokeHostFunctionTests/94faf61bbc28fffa.xdr b/test-lcm-next/InvokeHostFunctionTests/d20703fbc5a3ceaf.xdr similarity index 69% rename from test-lcm-current/InvokeHostFunctionTests/94faf61bbc28fffa.xdr rename to test-lcm-next/InvokeHostFunctionTests/d20703fbc5a3ceaf.xdr index 44afefac4b..8cabb7d902 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/94faf61bbc28fffa.xdr and b/test-lcm-next/InvokeHostFunctionTests/d20703fbc5a3ceaf.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d2284024d86a9f4a.xdr b/test-lcm-next/InvokeHostFunctionTests/d2284024d86a9f4a.xdr index 962d349b3d..f38c50ad41 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d2284024d86a9f4a.xdr and b/test-lcm-next/InvokeHostFunctionTests/d2284024d86a9f4a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d2ef4dd8a3326b1f.xdr b/test-lcm-next/InvokeHostFunctionTests/d2ef4dd8a3326b1f.xdr deleted file mode 100644 index 382d7ddb06..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/d2ef4dd8a3326b1f.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d312c2e2a5a50ba8.xdr b/test-lcm-next/InvokeHostFunctionTests/d312c2e2a5a50ba8.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d312c2e2a5a50ba8.xdr and b/test-lcm-next/InvokeHostFunctionTests/d312c2e2a5a50ba8.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/846db27a79a2ec7d.xdr b/test-lcm-next/InvokeHostFunctionTests/d3b018e3b25cc49e.xdr similarity index 64% rename from test-lcm-next/InvokeHostFunctionTests/846db27a79a2ec7d.xdr rename to test-lcm-next/InvokeHostFunctionTests/d3b018e3b25cc49e.xdr index b8c135c98e..3c34224dae 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/846db27a79a2ec7d.xdr and b/test-lcm-next/InvokeHostFunctionTests/d3b018e3b25cc49e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d3e7a4929af1352e.xdr b/test-lcm-next/InvokeHostFunctionTests/d3e7a4929af1352e.xdr deleted file mode 100644 index a574444a9c..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/d3e7a4929af1352e.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d3ee1065ef42391b.xdr b/test-lcm-next/InvokeHostFunctionTests/d3ee1065ef42391b.xdr index 2d6674fec7..71bd41d7ae 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d3ee1065ef42391b.xdr and b/test-lcm-next/InvokeHostFunctionTests/d3ee1065ef42391b.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d3fa9dd1a7ce68e3.xdr b/test-lcm-next/InvokeHostFunctionTests/d3fa9dd1a7ce68e3.xdr index 84f5bf048f..cdca0d1dce 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d3fa9dd1a7ce68e3.xdr and b/test-lcm-next/InvokeHostFunctionTests/d3fa9dd1a7ce68e3.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d481fd33556741b2.xdr b/test-lcm-next/InvokeHostFunctionTests/d481fd33556741b2.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d481fd33556741b2.xdr and b/test-lcm-next/InvokeHostFunctionTests/d481fd33556741b2.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d4d73e492b2aa30e.xdr b/test-lcm-next/InvokeHostFunctionTests/d4d73e492b2aa30e.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d4d73e492b2aa30e.xdr and b/test-lcm-next/InvokeHostFunctionTests/d4d73e492b2aa30e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d4e4024caa6dbbc4.xdr b/test-lcm-next/InvokeHostFunctionTests/d4e4024caa6dbbc4.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d4e4024caa6dbbc4.xdr and b/test-lcm-next/InvokeHostFunctionTests/d4e4024caa6dbbc4.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d580226d468cd36a.xdr b/test-lcm-next/InvokeHostFunctionTests/d580226d468cd36a.xdr index 8c4bcdc52d..0680eb026e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d580226d468cd36a.xdr and b/test-lcm-next/InvokeHostFunctionTests/d580226d468cd36a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d5d3d3dd818a7366.xdr b/test-lcm-next/InvokeHostFunctionTests/d5d3d3dd818a7366.xdr index 64bc0f25cf..39ea8bfed0 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d5d3d3dd818a7366.xdr and b/test-lcm-next/InvokeHostFunctionTests/d5d3d3dd818a7366.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d604f76431c95e5e.xdr b/test-lcm-next/InvokeHostFunctionTests/d604f76431c95e5e.xdr index 4aa556df72..649c930418 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d604f76431c95e5e.xdr and b/test-lcm-next/InvokeHostFunctionTests/d604f76431c95e5e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d697bb21e32f6aef.xdr b/test-lcm-next/InvokeHostFunctionTests/d697bb21e32f6aef.xdr index a230da2d83..0ceda819db 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d697bb21e32f6aef.xdr and b/test-lcm-next/InvokeHostFunctionTests/d697bb21e32f6aef.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/38cfd148d6296478.xdr b/test-lcm-next/InvokeHostFunctionTests/d70144007a3516e6.xdr similarity index 66% rename from test-lcm-next/InvokeHostFunctionTests/38cfd148d6296478.xdr rename to test-lcm-next/InvokeHostFunctionTests/d70144007a3516e6.xdr index 442cebb833..8a010cad42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/38cfd148d6296478.xdr and b/test-lcm-next/InvokeHostFunctionTests/d70144007a3516e6.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d7ea63b86adedc73.xdr b/test-lcm-next/InvokeHostFunctionTests/d7ea63b86adedc73.xdr index e83b7155ea..1032826378 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d7ea63b86adedc73.xdr and b/test-lcm-next/InvokeHostFunctionTests/d7ea63b86adedc73.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d8cb2c3e8c67a529.xdr b/test-lcm-next/InvokeHostFunctionTests/d8cb2c3e8c67a529.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d8cb2c3e8c67a529.xdr and b/test-lcm-next/InvokeHostFunctionTests/d8cb2c3e8c67a529.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/d927cb7228c4823f.xdr b/test-lcm-next/InvokeHostFunctionTests/d927cb7228c4823f.xdr index cbf8d338b6..2382bf1542 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/d927cb7228c4823f.xdr and b/test-lcm-next/InvokeHostFunctionTests/d927cb7228c4823f.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/da22a08dbb5b6591.xdr b/test-lcm-next/InvokeHostFunctionTests/da22a08dbb5b6591.xdr index d5b6c04e2a..87cbe92fde 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/da22a08dbb5b6591.xdr and b/test-lcm-next/InvokeHostFunctionTests/da22a08dbb5b6591.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/da9288450114401d.xdr b/test-lcm-next/InvokeHostFunctionTests/da9288450114401d.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/da9288450114401d.xdr and b/test-lcm-next/InvokeHostFunctionTests/da9288450114401d.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/81176083f7d715c7.xdr b/test-lcm-next/InvokeHostFunctionTests/daba09f2a05761a7.xdr similarity index 75% rename from test-lcm-current/InvokeHostFunctionTests/81176083f7d715c7.xdr rename to test-lcm-next/InvokeHostFunctionTests/daba09f2a05761a7.xdr index 153a640890..690e061396 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/81176083f7d715c7.xdr and b/test-lcm-next/InvokeHostFunctionTests/daba09f2a05761a7.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/dbade792400bbd36.xdr b/test-lcm-next/InvokeHostFunctionTests/dbade792400bbd36.xdr index 84771915ed..6bf792d1aa 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/dbade792400bbd36.xdr and b/test-lcm-next/InvokeHostFunctionTests/dbade792400bbd36.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/dbe020e6910c1bb8.xdr b/test-lcm-next/InvokeHostFunctionTests/dbe020e6910c1bb8.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/dbe020e6910c1bb8.xdr and b/test-lcm-next/InvokeHostFunctionTests/dbe020e6910c1bb8.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/dc8cff5869997641.xdr b/test-lcm-next/InvokeHostFunctionTests/dc8cff5869997641.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/dc8cff5869997641.xdr and b/test-lcm-next/InvokeHostFunctionTests/dc8cff5869997641.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/dcc73c9629f5a427.xdr b/test-lcm-next/InvokeHostFunctionTests/dcc73c9629f5a427.xdr index 9c9d964a95..41096ad66d 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/dcc73c9629f5a427.xdr and b/test-lcm-next/InvokeHostFunctionTests/dcc73c9629f5a427.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/7568bb8f0982c3e1.xdr b/test-lcm-next/InvokeHostFunctionTests/de0050023d54734e.xdr similarity index 75% rename from test-lcm-current/InvokeHostFunctionTests/7568bb8f0982c3e1.xdr rename to test-lcm-next/InvokeHostFunctionTests/de0050023d54734e.xdr index 9c1ebd9e69..323813b8f8 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/7568bb8f0982c3e1.xdr and b/test-lcm-next/InvokeHostFunctionTests/de0050023d54734e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/deaef712a256815b.xdr b/test-lcm-next/InvokeHostFunctionTests/deaef712a256815b.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/deaef712a256815b.xdr and b/test-lcm-next/InvokeHostFunctionTests/deaef712a256815b.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/debccecc0064889e.xdr b/test-lcm-next/InvokeHostFunctionTests/debccecc0064889e.xdr index 37f652a0c8..d7e168a0de 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/debccecc0064889e.xdr and b/test-lcm-next/InvokeHostFunctionTests/debccecc0064889e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/df5e46d7a306de43.xdr b/test-lcm-next/InvokeHostFunctionTests/df5e46d7a306de43.xdr deleted file mode 100644 index 955be3ec7b..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/df5e46d7a306de43.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/df8ad69b2e875c3e.xdr b/test-lcm-next/InvokeHostFunctionTests/df8ad69b2e875c3e.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/df8ad69b2e875c3e.xdr and b/test-lcm-next/InvokeHostFunctionTests/df8ad69b2e875c3e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/dfd8d97545a410c4.xdr b/test-lcm-next/InvokeHostFunctionTests/dfd8d97545a410c4.xdr index 54b44b363e..83a4b42428 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/dfd8d97545a410c4.xdr and b/test-lcm-next/InvokeHostFunctionTests/dfd8d97545a410c4.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/dff72321aec96f70.xdr b/test-lcm-next/InvokeHostFunctionTests/dff72321aec96f70.xdr deleted file mode 100644 index 1f56eaec44..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/dff72321aec96f70.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e0180b51b72fe65a.xdr b/test-lcm-next/InvokeHostFunctionTests/e0180b51b72fe65a.xdr index fc40f58fc3..1dfefcf89e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e0180b51b72fe65a.xdr and b/test-lcm-next/InvokeHostFunctionTests/e0180b51b72fe65a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e095dd79e65ba973.xdr b/test-lcm-next/InvokeHostFunctionTests/e095dd79e65ba973.xdr index 1ca9bc40e3..9e1723d2a5 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e095dd79e65ba973.xdr and b/test-lcm-next/InvokeHostFunctionTests/e095dd79e65ba973.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e0f09f1dcf955676.xdr b/test-lcm-next/InvokeHostFunctionTests/e0f09f1dcf955676.xdr deleted file mode 100644 index 0b132bb0a1..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/e0f09f1dcf955676.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e17007564165c691.xdr b/test-lcm-next/InvokeHostFunctionTests/e17007564165c691.xdr index 40d1d1e695..6712226309 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e17007564165c691.xdr and b/test-lcm-next/InvokeHostFunctionTests/e17007564165c691.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e1b3a1546fcd4160.xdr b/test-lcm-next/InvokeHostFunctionTests/e1b3a1546fcd4160.xdr index a1ecac7b93..4b22c01fbe 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e1b3a1546fcd4160.xdr and b/test-lcm-next/InvokeHostFunctionTests/e1b3a1546fcd4160.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e1bbd873f50bb8a5.xdr b/test-lcm-next/InvokeHostFunctionTests/e1bbd873f50bb8a5.xdr index 8a88e08581..6ab292cd26 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e1bbd873f50bb8a5.xdr and b/test-lcm-next/InvokeHostFunctionTests/e1bbd873f50bb8a5.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e1c9fd2d21f89d7e.xdr b/test-lcm-next/InvokeHostFunctionTests/e1c9fd2d21f89d7e.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e1c9fd2d21f89d7e.xdr and b/test-lcm-next/InvokeHostFunctionTests/e1c9fd2d21f89d7e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e1ecfe4848d7c257.xdr b/test-lcm-next/InvokeHostFunctionTests/e1ecfe4848d7c257.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e1ecfe4848d7c257.xdr and b/test-lcm-next/InvokeHostFunctionTests/e1ecfe4848d7c257.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e260a8f0f8749e3c.xdr b/test-lcm-next/InvokeHostFunctionTests/e260a8f0f8749e3c.xdr index 153d38cd6a..be4dbcd391 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e260a8f0f8749e3c.xdr and b/test-lcm-next/InvokeHostFunctionTests/e260a8f0f8749e3c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e267116f1684f812.xdr b/test-lcm-next/InvokeHostFunctionTests/e267116f1684f812.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e267116f1684f812.xdr and b/test-lcm-next/InvokeHostFunctionTests/e267116f1684f812.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e26ad1849453e9f9.xdr b/test-lcm-next/InvokeHostFunctionTests/e26ad1849453e9f9.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e26ad1849453e9f9.xdr and b/test-lcm-next/InvokeHostFunctionTests/e26ad1849453e9f9.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e2df180a92959730.xdr b/test-lcm-next/InvokeHostFunctionTests/e2df180a92959730.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e2df180a92959730.xdr and b/test-lcm-next/InvokeHostFunctionTests/e2df180a92959730.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e436eae1b108bf65.xdr b/test-lcm-next/InvokeHostFunctionTests/e436eae1b108bf65.xdr index 4e3e102b2c..08c82c016c 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e436eae1b108bf65.xdr and b/test-lcm-next/InvokeHostFunctionTests/e436eae1b108bf65.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e473a38c1e8f7e01.xdr b/test-lcm-next/InvokeHostFunctionTests/e473a38c1e8f7e01.xdr deleted file mode 100644 index 43e3ed8508..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/e473a38c1e8f7e01.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e4a693d475f137c9.xdr b/test-lcm-next/InvokeHostFunctionTests/e4a693d475f137c9.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e4a693d475f137c9.xdr and b/test-lcm-next/InvokeHostFunctionTests/e4a693d475f137c9.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e4a7e26b2bd75a51.xdr b/test-lcm-next/InvokeHostFunctionTests/e4a7e26b2bd75a51.xdr deleted file mode 100644 index df398f612d..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/e4a7e26b2bd75a51.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e4b75527318c3f4b.xdr b/test-lcm-next/InvokeHostFunctionTests/e4b75527318c3f4b.xdr index e1760e4fde..b4b52571d6 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e4b75527318c3f4b.xdr and b/test-lcm-next/InvokeHostFunctionTests/e4b75527318c3f4b.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/058490aa7d8cfae3.xdr b/test-lcm-next/InvokeHostFunctionTests/e4f05a1dabec0d59.xdr similarity index 73% rename from test-lcm-current/InvokeHostFunctionTests/058490aa7d8cfae3.xdr rename to test-lcm-next/InvokeHostFunctionTests/e4f05a1dabec0d59.xdr index c09860e61b..6a5807011a 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/058490aa7d8cfae3.xdr and b/test-lcm-next/InvokeHostFunctionTests/e4f05a1dabec0d59.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e58ecf019fb8ef4c.xdr b/test-lcm-next/InvokeHostFunctionTests/e58ecf019fb8ef4c.xdr deleted file mode 100644 index b003188181..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/e58ecf019fb8ef4c.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e592b8e0d0c064f2.xdr b/test-lcm-next/InvokeHostFunctionTests/e592b8e0d0c064f2.xdr index f4afef31cc..fb148359e3 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e592b8e0d0c064f2.xdr and b/test-lcm-next/InvokeHostFunctionTests/e592b8e0d0c064f2.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e595ac8447e8be48.xdr b/test-lcm-next/InvokeHostFunctionTests/e595ac8447e8be48.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e595ac8447e8be48.xdr and b/test-lcm-next/InvokeHostFunctionTests/e595ac8447e8be48.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e60437880d9a5342.xdr b/test-lcm-next/InvokeHostFunctionTests/e60437880d9a5342.xdr deleted file mode 100644 index a9ca207a88..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/e60437880d9a5342.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e65bc9d3ad40b232.xdr b/test-lcm-next/InvokeHostFunctionTests/e65bc9d3ad40b232.xdr index 14992c7ae7..76f8358ea1 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e65bc9d3ad40b232.xdr and b/test-lcm-next/InvokeHostFunctionTests/e65bc9d3ad40b232.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e663576331e88873.xdr b/test-lcm-next/InvokeHostFunctionTests/e663576331e88873.xdr index e200b5d3ea..9c5537a97d 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e663576331e88873.xdr and b/test-lcm-next/InvokeHostFunctionTests/e663576331e88873.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e668e4a1eb385caf.xdr b/test-lcm-next/InvokeHostFunctionTests/e668e4a1eb385caf.xdr index 569374713a..94c8f242bb 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e668e4a1eb385caf.xdr and b/test-lcm-next/InvokeHostFunctionTests/e668e4a1eb385caf.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e6bd97c7e61b9c20.xdr b/test-lcm-next/InvokeHostFunctionTests/e6bd97c7e61b9c20.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e6bd97c7e61b9c20.xdr and b/test-lcm-next/InvokeHostFunctionTests/e6bd97c7e61b9c20.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e7bc3224128af431.xdr b/test-lcm-next/InvokeHostFunctionTests/e7bc3224128af431.xdr deleted file mode 100644 index 75be7ae40e..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/e7bc3224128af431.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e7c93b4b2532635a.xdr b/test-lcm-next/InvokeHostFunctionTests/e7c93b4b2532635a.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e7c93b4b2532635a.xdr and b/test-lcm-next/InvokeHostFunctionTests/e7c93b4b2532635a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e847e07471896a84.xdr b/test-lcm-next/InvokeHostFunctionTests/e847e07471896a84.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e847e07471896a84.xdr and b/test-lcm-next/InvokeHostFunctionTests/e847e07471896a84.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e8e3a93f6508722e.xdr b/test-lcm-next/InvokeHostFunctionTests/e8e3a93f6508722e.xdr deleted file mode 100644 index eae32009fa..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/e8e3a93f6508722e.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e8e94108c4e35442.xdr b/test-lcm-next/InvokeHostFunctionTests/e8e94108c4e35442.xdr deleted file mode 100644 index a1a24413e7..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/e8e94108c4e35442.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e970c80dd6512e2a.xdr b/test-lcm-next/InvokeHostFunctionTests/e970c80dd6512e2a.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e970c80dd6512e2a.xdr and b/test-lcm-next/InvokeHostFunctionTests/e970c80dd6512e2a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e978d88c40ed87f1.xdr b/test-lcm-next/InvokeHostFunctionTests/e978d88c40ed87f1.xdr index 263c1616e7..8bd6f1ebc8 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e978d88c40ed87f1.xdr and b/test-lcm-next/InvokeHostFunctionTests/e978d88c40ed87f1.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e999346808076671.xdr b/test-lcm-next/InvokeHostFunctionTests/e999346808076671.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e999346808076671.xdr and b/test-lcm-next/InvokeHostFunctionTests/e999346808076671.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/e9d3d132208dd2f6.xdr b/test-lcm-next/InvokeHostFunctionTests/e9d3d132208dd2f6.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/e9d3d132208dd2f6.xdr and b/test-lcm-next/InvokeHostFunctionTests/e9d3d132208dd2f6.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ea940d6997fea54c.xdr b/test-lcm-next/InvokeHostFunctionTests/ea940d6997fea54c.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ea940d6997fea54c.xdr and b/test-lcm-next/InvokeHostFunctionTests/ea940d6997fea54c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/eaa4c6f56373a470.xdr b/test-lcm-next/InvokeHostFunctionTests/eaa4c6f56373a470.xdr index a5822a2ca2..1123b5df30 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/eaa4c6f56373a470.xdr and b/test-lcm-next/InvokeHostFunctionTests/eaa4c6f56373a470.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/eadfba1154674062.xdr b/test-lcm-next/InvokeHostFunctionTests/eadfba1154674062.xdr index ac08bea77d..1dbff02b1b 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/eadfba1154674062.xdr and b/test-lcm-next/InvokeHostFunctionTests/eadfba1154674062.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/5f0e7c9e5b14d2fa.xdr b/test-lcm-next/InvokeHostFunctionTests/ec228ae524fb95c9.xdr similarity index 68% rename from test-lcm-next/InvokeHostFunctionTests/5f0e7c9e5b14d2fa.xdr rename to test-lcm-next/InvokeHostFunctionTests/ec228ae524fb95c9.xdr index e9b7ce3293..3ae2f88675 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/5f0e7c9e5b14d2fa.xdr and b/test-lcm-next/InvokeHostFunctionTests/ec228ae524fb95c9.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ec29598b16b053bc.xdr b/test-lcm-next/InvokeHostFunctionTests/ec29598b16b053bc.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ec29598b16b053bc.xdr and b/test-lcm-next/InvokeHostFunctionTests/ec29598b16b053bc.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ecd35a6539ca78d9.xdr b/test-lcm-next/InvokeHostFunctionTests/ecd35a6539ca78d9.xdr index f9faac70c8..a737298250 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ecd35a6539ca78d9.xdr and b/test-lcm-next/InvokeHostFunctionTests/ecd35a6539ca78d9.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ecee0b3efb0526e4.xdr b/test-lcm-next/InvokeHostFunctionTests/ecee0b3efb0526e4.xdr index 50119f220e..7519d5ba93 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ecee0b3efb0526e4.xdr and b/test-lcm-next/InvokeHostFunctionTests/ecee0b3efb0526e4.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ed348cde4f3127e8.xdr b/test-lcm-next/InvokeHostFunctionTests/ed348cde4f3127e8.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ed348cde4f3127e8.xdr and b/test-lcm-next/InvokeHostFunctionTests/ed348cde4f3127e8.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ed39ca2daf59835d.xdr b/test-lcm-next/InvokeHostFunctionTests/ed39ca2daf59835d.xdr index 41a236224c..0174b8bdd2 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ed39ca2daf59835d.xdr and b/test-lcm-next/InvokeHostFunctionTests/ed39ca2daf59835d.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ed4083446fa69ab7.xdr b/test-lcm-next/InvokeHostFunctionTests/ed4083446fa69ab7.xdr index a1cf443c9b..0630febf6d 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ed4083446fa69ab7.xdr and b/test-lcm-next/InvokeHostFunctionTests/ed4083446fa69ab7.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ed4298d1c34e0b79.xdr b/test-lcm-next/InvokeHostFunctionTests/ed4298d1c34e0b79.xdr deleted file mode 100644 index 0140adb098..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/ed4298d1c34e0b79.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/5da4c3861d2a2428.xdr b/test-lcm-next/InvokeHostFunctionTests/ed458e0fae1f87be.xdr similarity index 65% rename from test-lcm-next/InvokeHostFunctionTests/5da4c3861d2a2428.xdr rename to test-lcm-next/InvokeHostFunctionTests/ed458e0fae1f87be.xdr index 063a58b8be..d4225958da 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/5da4c3861d2a2428.xdr and b/test-lcm-next/InvokeHostFunctionTests/ed458e0fae1f87be.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/eda22224ec5ac6ea.xdr b/test-lcm-next/InvokeHostFunctionTests/eda22224ec5ac6ea.xdr index c751f8cbbc..5783b5c8e7 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/eda22224ec5ac6ea.xdr and b/test-lcm-next/InvokeHostFunctionTests/eda22224ec5ac6ea.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/eda3dfe5b6940848.xdr b/test-lcm-next/InvokeHostFunctionTests/eda3dfe5b6940848.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/eda3dfe5b6940848.xdr and b/test-lcm-next/InvokeHostFunctionTests/eda3dfe5b6940848.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/eda811ebbd672d8d.xdr b/test-lcm-next/InvokeHostFunctionTests/eda811ebbd672d8d.xdr index 1517f72983..9a76f7dbfd 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/eda811ebbd672d8d.xdr and b/test-lcm-next/InvokeHostFunctionTests/eda811ebbd672d8d.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/edeef19bce43c3da.xdr b/test-lcm-next/InvokeHostFunctionTests/edeef19bce43c3da.xdr index ff040a49af..94dca2fea1 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/edeef19bce43c3da.xdr and b/test-lcm-next/InvokeHostFunctionTests/edeef19bce43c3da.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/edf8d15f65abdd7c.xdr b/test-lcm-next/InvokeHostFunctionTests/edf8d15f65abdd7c.xdr deleted file mode 100644 index 7f44159822..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/edf8d15f65abdd7c.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ee0f9fb5465b72ad.xdr b/test-lcm-next/InvokeHostFunctionTests/ee0f9fb5465b72ad.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ee0f9fb5465b72ad.xdr and b/test-lcm-next/InvokeHostFunctionTests/ee0f9fb5465b72ad.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ee277035f023392a.xdr b/test-lcm-next/InvokeHostFunctionTests/ee277035f023392a.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ee277035f023392a.xdr and b/test-lcm-next/InvokeHostFunctionTests/ee277035f023392a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ee2f02eb252fcc27.xdr b/test-lcm-next/InvokeHostFunctionTests/ee2f02eb252fcc27.xdr index 5dce8ae903..7d651289bc 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ee2f02eb252fcc27.xdr and b/test-lcm-next/InvokeHostFunctionTests/ee2f02eb252fcc27.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ee3472dd29024e40.xdr b/test-lcm-next/InvokeHostFunctionTests/ee3472dd29024e40.xdr index 6ccb31f184..30a3d6032c 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ee3472dd29024e40.xdr and b/test-lcm-next/InvokeHostFunctionTests/ee3472dd29024e40.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/eee17f706f7deb9a.xdr b/test-lcm-next/InvokeHostFunctionTests/eee17f706f7deb9a.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/eee17f706f7deb9a.xdr and b/test-lcm-next/InvokeHostFunctionTests/eee17f706f7deb9a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ef37aff90281f523.xdr b/test-lcm-next/InvokeHostFunctionTests/ef37aff90281f523.xdr index 4c0652b7ad..b0f0977dac 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ef37aff90281f523.xdr and b/test-lcm-next/InvokeHostFunctionTests/ef37aff90281f523.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ef79595a3c250a3a.xdr b/test-lcm-next/InvokeHostFunctionTests/ef79595a3c250a3a.xdr index 181493d2d5..1f3293f9c1 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ef79595a3c250a3a.xdr and b/test-lcm-next/InvokeHostFunctionTests/ef79595a3c250a3a.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ef80e6a78893c56c.xdr b/test-lcm-next/InvokeHostFunctionTests/ef80e6a78893c56c.xdr index 97a5f208c0..6b700b0aee 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ef80e6a78893c56c.xdr and b/test-lcm-next/InvokeHostFunctionTests/ef80e6a78893c56c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/efc0bd51b5b29e40.xdr b/test-lcm-next/InvokeHostFunctionTests/efc0bd51b5b29e40.xdr index 42bc9f106d..ad8c87311d 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/efc0bd51b5b29e40.xdr and b/test-lcm-next/InvokeHostFunctionTests/efc0bd51b5b29e40.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/efd47464023e9e55.xdr b/test-lcm-next/InvokeHostFunctionTests/efd47464023e9e55.xdr index 1f6b2c611d..b17182778f 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/efd47464023e9e55.xdr and b/test-lcm-next/InvokeHostFunctionTests/efd47464023e9e55.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/efe4261cc946881e.xdr b/test-lcm-next/InvokeHostFunctionTests/efe4261cc946881e.xdr index 157307f459..ebb3de611e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/efe4261cc946881e.xdr and b/test-lcm-next/InvokeHostFunctionTests/efe4261cc946881e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f0638599b34ec8a1.xdr b/test-lcm-next/InvokeHostFunctionTests/f0638599b34ec8a1.xdr index 1e898c7de3..8d19821b71 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f0638599b34ec8a1.xdr and b/test-lcm-next/InvokeHostFunctionTests/f0638599b34ec8a1.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f0ae5731df64cbe0.xdr b/test-lcm-next/InvokeHostFunctionTests/f0ae5731df64cbe0.xdr deleted file mode 100644 index 8e714ec5d5..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/f0ae5731df64cbe0.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f0e8fbaf2d4bdbcd.xdr b/test-lcm-next/InvokeHostFunctionTests/f0e8fbaf2d4bdbcd.xdr index 0b5f412f35..64f73f4752 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f0e8fbaf2d4bdbcd.xdr and b/test-lcm-next/InvokeHostFunctionTests/f0e8fbaf2d4bdbcd.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f168c76aba835145.xdr b/test-lcm-next/InvokeHostFunctionTests/f168c76aba835145.xdr index 9c818b48fb..3592356045 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f168c76aba835145.xdr and b/test-lcm-next/InvokeHostFunctionTests/f168c76aba835145.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f17be5b4b66ea006.xdr b/test-lcm-next/InvokeHostFunctionTests/f17be5b4b66ea006.xdr index 18f7ed9f08..9f8298680d 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f17be5b4b66ea006.xdr and b/test-lcm-next/InvokeHostFunctionTests/f17be5b4b66ea006.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f1b13fa29eb12ca4.xdr b/test-lcm-next/InvokeHostFunctionTests/f1b13fa29eb12ca4.xdr index c090aeb882..0e56bb65fb 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f1b13fa29eb12ca4.xdr and b/test-lcm-next/InvokeHostFunctionTests/f1b13fa29eb12ca4.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f1f574cc8ac44007.xdr b/test-lcm-next/InvokeHostFunctionTests/f1f574cc8ac44007.xdr deleted file mode 100644 index 03b251ffeb..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/f1f574cc8ac44007.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f1fc663779e87b60.xdr b/test-lcm-next/InvokeHostFunctionTests/f1fc663779e87b60.xdr index ec49395e03..f1680e4073 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f1fc663779e87b60.xdr and b/test-lcm-next/InvokeHostFunctionTests/f1fc663779e87b60.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f2530b53ad33fc1e.xdr b/test-lcm-next/InvokeHostFunctionTests/f2530b53ad33fc1e.xdr deleted file mode 100644 index beb8d93d13..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/f2530b53ad33fc1e.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f26b5de9280bbacd.xdr b/test-lcm-next/InvokeHostFunctionTests/f26b5de9280bbacd.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f26b5de9280bbacd.xdr and b/test-lcm-next/InvokeHostFunctionTests/f26b5de9280bbacd.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f27c6aef8abbd723.xdr b/test-lcm-next/InvokeHostFunctionTests/f27c6aef8abbd723.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f27c6aef8abbd723.xdr and b/test-lcm-next/InvokeHostFunctionTests/f27c6aef8abbd723.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f287aa63bbdb6ba8.xdr b/test-lcm-next/InvokeHostFunctionTests/f287aa63bbdb6ba8.xdr index a89b93d472..23396744da 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f287aa63bbdb6ba8.xdr and b/test-lcm-next/InvokeHostFunctionTests/f287aa63bbdb6ba8.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/bd0e2c7d9d444eb7.xdr b/test-lcm-next/InvokeHostFunctionTests/f2cef3f027b2550b.xdr similarity index 81% rename from test-lcm-next/InvokeHostFunctionTests/bd0e2c7d9d444eb7.xdr rename to test-lcm-next/InvokeHostFunctionTests/f2cef3f027b2550b.xdr index 519878a1d0..ffa3d9e2be 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/bd0e2c7d9d444eb7.xdr and b/test-lcm-next/InvokeHostFunctionTests/f2cef3f027b2550b.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f2d73eb7f022f0cb.xdr b/test-lcm-next/InvokeHostFunctionTests/f2d73eb7f022f0cb.xdr index ab6f0276dc..471d1f5b87 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f2d73eb7f022f0cb.xdr and b/test-lcm-next/InvokeHostFunctionTests/f2d73eb7f022f0cb.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f2eb7607bcc37fbb.xdr b/test-lcm-next/InvokeHostFunctionTests/f2eb7607bcc37fbb.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f2eb7607bcc37fbb.xdr and b/test-lcm-next/InvokeHostFunctionTests/f2eb7607bcc37fbb.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f3230f7682e7de69.xdr b/test-lcm-next/InvokeHostFunctionTests/f3230f7682e7de69.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f3230f7682e7de69.xdr and b/test-lcm-next/InvokeHostFunctionTests/f3230f7682e7de69.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f43fbd97002badc6.xdr b/test-lcm-next/InvokeHostFunctionTests/f43fbd97002badc6.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f43fbd97002badc6.xdr and b/test-lcm-next/InvokeHostFunctionTests/f43fbd97002badc6.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/54e3fdf28cd70bd4.xdr b/test-lcm-next/InvokeHostFunctionTests/f4920266273226bc.xdr similarity index 67% rename from test-lcm-current/InvokeHostFunctionTests/54e3fdf28cd70bd4.xdr rename to test-lcm-next/InvokeHostFunctionTests/f4920266273226bc.xdr index 84ab047f1a..b07dfc0729 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/54e3fdf28cd70bd4.xdr and b/test-lcm-next/InvokeHostFunctionTests/f4920266273226bc.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f4f351372abade91.xdr b/test-lcm-next/InvokeHostFunctionTests/f4f351372abade91.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f4f351372abade91.xdr and b/test-lcm-next/InvokeHostFunctionTests/f4f351372abade91.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f506528d32fd0652.xdr b/test-lcm-next/InvokeHostFunctionTests/f506528d32fd0652.xdr index d890fbafd0..483859c374 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f506528d32fd0652.xdr and b/test-lcm-next/InvokeHostFunctionTests/f506528d32fd0652.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f538b7222e421b51.xdr b/test-lcm-next/InvokeHostFunctionTests/f538b7222e421b51.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f538b7222e421b51.xdr and b/test-lcm-next/InvokeHostFunctionTests/f538b7222e421b51.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f57219130594aa83.xdr b/test-lcm-next/InvokeHostFunctionTests/f57219130594aa83.xdr index 7fb40040e4..9523325b30 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f57219130594aa83.xdr and b/test-lcm-next/InvokeHostFunctionTests/f57219130594aa83.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f5d072a9fb1463da.xdr b/test-lcm-next/InvokeHostFunctionTests/f5d072a9fb1463da.xdr index 1bdd32355a..623fd26ff6 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f5d072a9fb1463da.xdr and b/test-lcm-next/InvokeHostFunctionTests/f5d072a9fb1463da.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/29b03d37cd3099be.xdr b/test-lcm-next/InvokeHostFunctionTests/f639c592b8caf7eb.xdr similarity index 73% rename from test-lcm-current/InvokeHostFunctionTests/29b03d37cd3099be.xdr rename to test-lcm-next/InvokeHostFunctionTests/f639c592b8caf7eb.xdr index c0b13e88d1..0b9b13c16a 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/29b03d37cd3099be.xdr and b/test-lcm-next/InvokeHostFunctionTests/f639c592b8caf7eb.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f709a2d8db627467.xdr b/test-lcm-next/InvokeHostFunctionTests/f709a2d8db627467.xdr deleted file mode 100644 index 5a0849825d..0000000000 Binary files a/test-lcm-next/InvokeHostFunctionTests/f709a2d8db627467.xdr and /dev/null differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f7ca893de81e0719.xdr b/test-lcm-next/InvokeHostFunctionTests/f7ca893de81e0719.xdr index 319ea0012f..4ea3e525e1 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f7ca893de81e0719.xdr and b/test-lcm-next/InvokeHostFunctionTests/f7ca893de81e0719.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f7e97011ed711385.xdr b/test-lcm-next/InvokeHostFunctionTests/f7e97011ed711385.xdr index d32d68cf2f..a64afe145a 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f7e97011ed711385.xdr and b/test-lcm-next/InvokeHostFunctionTests/f7e97011ed711385.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f7f94eb704afa841.xdr b/test-lcm-next/InvokeHostFunctionTests/f7f94eb704afa841.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f7f94eb704afa841.xdr and b/test-lcm-next/InvokeHostFunctionTests/f7f94eb704afa841.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f80ab46aebfceee5.xdr b/test-lcm-next/InvokeHostFunctionTests/f80ab46aebfceee5.xdr index 2d70ad6a6a..457b429ff1 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f80ab46aebfceee5.xdr and b/test-lcm-next/InvokeHostFunctionTests/f80ab46aebfceee5.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f85719dc2181f545.xdr b/test-lcm-next/InvokeHostFunctionTests/f85719dc2181f545.xdr index 645d6b74d1..fcc83800d6 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f85719dc2181f545.xdr and b/test-lcm-next/InvokeHostFunctionTests/f85719dc2181f545.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f860f4c299f7c690.xdr b/test-lcm-next/InvokeHostFunctionTests/f860f4c299f7c690.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f860f4c299f7c690.xdr and b/test-lcm-next/InvokeHostFunctionTests/f860f4c299f7c690.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f8630c82e2e21ee3.xdr b/test-lcm-next/InvokeHostFunctionTests/f8630c82e2e21ee3.xdr index 69ac4da83c..d74cb639a6 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f8630c82e2e21ee3.xdr and b/test-lcm-next/InvokeHostFunctionTests/f8630c82e2e21ee3.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/c1a3227b9d15d7db.xdr b/test-lcm-next/InvokeHostFunctionTests/f8b28b729df1dbc2.xdr similarity index 77% rename from test-lcm-current/InvokeHostFunctionTests/c1a3227b9d15d7db.xdr rename to test-lcm-next/InvokeHostFunctionTests/f8b28b729df1dbc2.xdr index a5e87b7ab7..69e04bf761 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/c1a3227b9d15d7db.xdr and b/test-lcm-next/InvokeHostFunctionTests/f8b28b729df1dbc2.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/f98d63a422dc7316.xdr b/test-lcm-next/InvokeHostFunctionTests/f98d63a422dc7316.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/f98d63a422dc7316.xdr and b/test-lcm-next/InvokeHostFunctionTests/f98d63a422dc7316.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/fa2ba8e3c2560e56.xdr b/test-lcm-next/InvokeHostFunctionTests/fa2ba8e3c2560e56.xdr index ffa4d5ad40..a67cd1ebd6 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/fa2ba8e3c2560e56.xdr and b/test-lcm-next/InvokeHostFunctionTests/fa2ba8e3c2560e56.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ef78b3de24d812f7.xdr b/test-lcm-next/InvokeHostFunctionTests/fa2d83db51a98600.xdr similarity index 66% rename from test-lcm-next/InvokeHostFunctionTests/ef78b3de24d812f7.xdr rename to test-lcm-next/InvokeHostFunctionTests/fa2d83db51a98600.xdr index adb388ded6..790667dbf2 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ef78b3de24d812f7.xdr and b/test-lcm-next/InvokeHostFunctionTests/fa2d83db51a98600.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/fa3f6b4664496f4e.xdr b/test-lcm-next/InvokeHostFunctionTests/fa3f6b4664496f4e.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/fa3f6b4664496f4e.xdr and b/test-lcm-next/InvokeHostFunctionTests/fa3f6b4664496f4e.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/fa4b194dcfa3785c.xdr b/test-lcm-next/InvokeHostFunctionTests/fa4b194dcfa3785c.xdr index 91c0b03a36..982792a478 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/fa4b194dcfa3785c.xdr and b/test-lcm-next/InvokeHostFunctionTests/fa4b194dcfa3785c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/fa54dfbe49ee7aab.xdr b/test-lcm-next/InvokeHostFunctionTests/fa54dfbe49ee7aab.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/fa54dfbe49ee7aab.xdr and b/test-lcm-next/InvokeHostFunctionTests/fa54dfbe49ee7aab.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/fa8d540011cb479c.xdr b/test-lcm-next/InvokeHostFunctionTests/fa8d540011cb479c.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/fa8d540011cb479c.xdr and b/test-lcm-next/InvokeHostFunctionTests/fa8d540011cb479c.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/fb103634b7406e33.xdr b/test-lcm-next/InvokeHostFunctionTests/fb103634b7406e33.xdr index 603d8adf12..b93a1eae18 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/fb103634b7406e33.xdr and b/test-lcm-next/InvokeHostFunctionTests/fb103634b7406e33.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/fb5372535aab3beb.xdr b/test-lcm-next/InvokeHostFunctionTests/fb5372535aab3beb.xdr index aca0bf6a40..a334ed8fb2 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/fb5372535aab3beb.xdr and b/test-lcm-next/InvokeHostFunctionTests/fb5372535aab3beb.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/fbec9a9e0db4dfc9.xdr b/test-lcm-next/InvokeHostFunctionTests/fbec9a9e0db4dfc9.xdr index 0b00007b71..98c4db256d 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/fbec9a9e0db4dfc9.xdr and b/test-lcm-next/InvokeHostFunctionTests/fbec9a9e0db4dfc9.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/fc180de263c6378d.xdr b/test-lcm-next/InvokeHostFunctionTests/fc180de263c6378d.xdr index 5715e22c0a..f971a6fc2e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/fc180de263c6378d.xdr and b/test-lcm-next/InvokeHostFunctionTests/fc180de263c6378d.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/fc65c51cb0a307a8.xdr b/test-lcm-next/InvokeHostFunctionTests/fc65c51cb0a307a8.xdr index 539c74145f..891582de2e 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/fc65c51cb0a307a8.xdr and b/test-lcm-next/InvokeHostFunctionTests/fc65c51cb0a307a8.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/fcc1d92eb9aefea4.xdr b/test-lcm-next/InvokeHostFunctionTests/fcc1d92eb9aefea4.xdr index 2d03e1ce8f..b9a84d3203 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/fcc1d92eb9aefea4.xdr and b/test-lcm-next/InvokeHostFunctionTests/fcc1d92eb9aefea4.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/fcc7940f9747ef41.xdr b/test-lcm-next/InvokeHostFunctionTests/fcc7940f9747ef41.xdr index e8eab333ab..7a17bda7b3 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/fcc7940f9747ef41.xdr and b/test-lcm-next/InvokeHostFunctionTests/fcc7940f9747ef41.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/fdc0726b33a30b71.xdr b/test-lcm-next/InvokeHostFunctionTests/fdc0726b33a30b71.xdr index c70848d5b0..e3809b3550 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/fdc0726b33a30b71.xdr and b/test-lcm-next/InvokeHostFunctionTests/fdc0726b33a30b71.xdr differ diff --git a/test-lcm-current/InvokeHostFunctionTests/f0ae5731df64cbe0.xdr b/test-lcm-next/InvokeHostFunctionTests/fe50a5e9f82ab4a3.xdr similarity index 66% rename from test-lcm-current/InvokeHostFunctionTests/f0ae5731df64cbe0.xdr rename to test-lcm-next/InvokeHostFunctionTests/fe50a5e9f82ab4a3.xdr index 79f0d55564..cdc4400eab 100644 Binary files a/test-lcm-current/InvokeHostFunctionTests/f0ae5731df64cbe0.xdr and b/test-lcm-next/InvokeHostFunctionTests/fe50a5e9f82ab4a3.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ea4a1267d6c3a211.xdr b/test-lcm-next/InvokeHostFunctionTests/fe5913259b30b9bf.xdr similarity index 63% rename from test-lcm-next/InvokeHostFunctionTests/ea4a1267d6c3a211.xdr rename to test-lcm-next/InvokeHostFunctionTests/fe5913259b30b9bf.xdr index 9acf4aec51..e588bd7237 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ea4a1267d6c3a211.xdr and b/test-lcm-next/InvokeHostFunctionTests/fe5913259b30b9bf.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/fecb8c7203544f20.xdr b/test-lcm-next/InvokeHostFunctionTests/fecb8c7203544f20.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/fecb8c7203544f20.xdr and b/test-lcm-next/InvokeHostFunctionTests/fecb8c7203544f20.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ff17a6200f26a9e2.xdr b/test-lcm-next/InvokeHostFunctionTests/ff17a6200f26a9e2.xdr index 19fdee905c..65e6b9b7de 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ff17a6200f26a9e2.xdr and b/test-lcm-next/InvokeHostFunctionTests/ff17a6200f26a9e2.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ff35b35da8c78163.xdr b/test-lcm-next/InvokeHostFunctionTests/ff35b35da8c78163.xdr index 7021a22954..7c6c5c0b90 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ff35b35da8c78163.xdr and b/test-lcm-next/InvokeHostFunctionTests/ff35b35da8c78163.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/ffde1b7463c8c452.xdr b/test-lcm-next/InvokeHostFunctionTests/ffde1b7463c8c452.xdr index 9df51945d4..56aa1bfb42 100644 Binary files a/test-lcm-next/InvokeHostFunctionTests/ffde1b7463c8c452.xdr and b/test-lcm-next/InvokeHostFunctionTests/ffde1b7463c8c452.xdr differ diff --git a/test-lcm-next/InvokeHostFunctionTests/index.json b/test-lcm-next/InvokeHostFunctionTests/index.json index cb9f9fb52d..b3aa2534bc 100644 --- a/test-lcm-next/InvokeHostFunctionTests/index.json +++ b/test-lcm-next/InvokeHostFunctionTests/index.json @@ -1,22 +1,25 @@ { + "!cfg protocol version" : 29, + "!rng seed" : 12345, + "!test all versions" : false, + "!versions to test" : [ 29 ], "0046300f950c0211" : "Soroban_authorization-default_classic_account-deep_tree-incorrect_signature_payload", "00e76ef8f869401f" : "Soroban_authorization-classic_and_custom_accounts-single_call-unused_auth_entries-failure_with_malformed_function_name", "014fcfa4f59b51d4" : "Soroban_footprint_validation-invokeHostFunction-readOnly-config_setting", "018599ef4068218e" : "Soroban_authorization-default_classic_account-wide_tree-unused_auth_entries-failure_with_malformed_function_name", + "0266bee165a0b438" : "state_archival-protocol_version_29-conditional_TTL_extension-absolute_refund", "03560ea94d548ceb" : "Soroban_authorization-multisig_classic_account-single_call-unused_auth_entries-failure_with_malformed_function_name", "03a5e8d5ea1d3a10" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_9", "03df1dc73d71eb00" : "Module_cache_cost_with_restore_gaps-scenario_B-_restore_and_invoke_in_same_ledger", "04530f6112a41176" : "ledger_entry_size_limit_enforced-contract_code_limits", - "0470c77e04ef179a" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-manual_restore", "048c93e37abb62ea" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-failed_auto_restores_and_manual_restores_across_stages-two_failed_restores_and_a_successful_restore_in_the_same_stage", - "04b00b08d10222a3" : "contract_storage-protocol_version_26-footprint-unused_readWrite_key", + "04c4d4cc1a4c7b46" : "contract_storage-protocol_version_29-write_bytes_limit_enforced", "0525df1061c74b13" : "charge_rent_fees_for_storage_resize-resize_and_extend-failed_due_to_low_fee", - "0540c58d02f9c06b" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-restore,_update_value_in_next_tx-across_stages", - "05c88cab546ce496" : "Soroban_non-refundable_resource_fees_are_stable-protocol_version_28", "068bb21d88974e0d" : "Soroban_authorization-custom_account-deep_tree-unused_auth_entries-failure_with_malformed_function_name", "06cbc0fe2a3f8280" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_8", "0718f219d05d95c5" : "parallel_txs-delete_and_re-create_temporary_entry_with_lower_TTL-same_stage", "075b4bea01d35444" : "Soroban_authorization-classic_account_with_weights-wide_tree-success", + "07a8d36187cd3462" : "trustline_deletion_then_SAC_payment-protocol_version_29", "07c78b13b19c1cca" : "Soroban_authorization-default_classic_account-deep_tree-unused_auth_entries-failure_with_malformed_function_name", "090b6171bc887479" : "Soroban_classic_account_authentication-account_with_required_multisig-success_with_credentials_v2", "091f6d22b48f7501" : "Soroban_footprint_validation-invokeHostFunction-readWrite-native_asset_trustline", @@ -29,10 +32,12 @@ "0a5c74765d1481ad" : "Soroban_authorization-multisig_classic_account-deep_tree-success", "0a7c39ca98f1ae85" : "Soroban_authorization-custom_account-wide_tree-unused_auth_entries-success_with_arbitrary_valid_function", "0a9a9e7662e8f5b0" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-issuer_trustline", + "0a9e15c210b27eb7" : "state_archival_operation_errors-protocol_version_29-restore_operation-exceeded_readBytes", "0b38afb8b9aaa794" : "resource_fee_exceeds_uint32-other_account_fee_bump-failure-insufficient_fee_bumper_balance", + "0b51082fea0c09b1" : "basic_contract_invocation-protocol_version_29-non-existent_contract_id", + "0c004ec5e3c54aa7" : "state_archival_operation_errors-protocol_version_29-restore_operation-insufficient_refundable_fee", "0c35da322a33f3c2" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_13", "0c43ba995c341a31" : "Soroban_authorization-classic_account_with_weights-wide_tree-unused_auth_entries-failure_with_long_malformed_function_name", - "0c775185679f70cb" : "classic_payment_source_same_as_soroban_fee_bump_source-protocol_version_28", "0c92eb78da37bfdd" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-restore,_delete,_restore-delete_in_same_stage_as_second_restore", "0cb06b7800ce099c" : "Soroban_authorization-multisig_classic_account-deep_tree-unused_auth_entries-success_with_arbitrary_valid_function", "0cfa6a9a348ad29f" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-TTL_entry", @@ -42,7 +47,6 @@ "0f97452228eac10a" : "Soroban_authorization-default_classic_account-deep_tree-success", "102ec8047ba9b73e" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_7", "11caaacc02cfaf33" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_17", - "11db6d39fd0eae58" : "state_archival-protocol_version_26-TTL_threshold", "12400eda8720567b" : "autorestore_contract_instance-restore_with_no_writes-classic_entries_count_towards_read_bytes-insufficient_write_bytes", "12e5bf578c813325" : "overly_large_soroban_values_are_handled_gracefully-diagnostics", "133235aeb624b4fb" : "ledger_entry_size_limit_enforced-contract_data_limits", @@ -52,17 +56,14 @@ "14407acab9b18289" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-native_asset_trustline", "1452c35fbbe6c3ab" : "Soroban_authorization-multisig_classic_account-wide_tree-unused_auth_entries-failure_with_long_malformed_function_name", "1484cd9b56513ed7" : "Soroban_classic_account_authentication-default_account-wrong_signature_name", - "1538a12625fd25fb" : "classic_payment_to_soroban_fee_bump_account-protocol_version_28", - "15a4d85f5dd2fd3b" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-restore,_update_value_in_next_tx-same_stage", "15bc83b6792d6072" : "Soroban_authorization-classic_and_custom_accounts-deep_tree-incorrect_signature_payload", "15ecaba55fd111cc" : "autorestore_with_storage_resize-manual_restore-extend_only", "1648891cd7b9ac4f" : "Soroban_authorization-custom_account-single_call-success_with_duplicate_auth_entries", "165a1612aefb1f12" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_19", "169611b4e9b946c9" : "resource_fee_exceeds_uint32-self_fee_bump-success-inclusion_fee_and_refund_exceed_uint32", "169eaf7fc82af3dc" : "Soroban_classic_account_authentication-duplicate_signature_not_allowed_with_insufficient_single_signature_threshold", - "16b5f93e30d64633" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-autorestore,_delete_value_in_next_tx-across_stages", "16bac056666df725" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_2", - "17ee1ab07947fa54" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-restore,_update_value_in_next_tx-same_stage", + "170512fdcfd48e15" : "multiple_soroban_ops_in_a_tx-protocol_version_29-with_fee_bump", "192dc34906478ab9" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_17", "193297e2240649fc" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-autorestore-across_stages", "1967a2d9962bb619" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_14", @@ -71,58 +72,52 @@ "1adc68cc7a5cf88e" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-issuer_trustline", "1b18e4016bfdf294" : "contract_constructor_support-constructor_with_no_arguments-v1_host_function,_v2_auth", "1c3d83a0318651b9" : "contract_errors_cause_transaction_to_fail-err", - "1d5bfe4be2ebaacb" : "source_account_of_first_tx_is_in_second_txs_footprint-protocol_version_26", - "1d8e86ddd8b11e7b" : "state_archival-protocol_version_26-conditional_TTL_extension-calculate_refund", + "1cf2a7976fb37347" : "archival_meta-protocol_version_29-persistent_entry_meta-restore_expired_but_not_evicted-restore,_update_value_in_next_tx-across_stages", "1dd0d92b94ce7c6f" : "Soroban_authorization-classic_account_with_weights-single_call-incorrect_signature_payload", "1e0b81121b9c895c" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_1", + "1e3b9bd5e2a72ad7" : "source_account_of_first_tx_is_in_second_txs_footprint-protocol_version_29", "1e3c70b0ecdbfb4f" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore-autorestore", "1ec1111288c846ad" : "Soroban_classic_account_authentication-default_account_with_additional_signer-incomplete_key", - "1f52ba0b7c5a13f0" : "basic_contract_invocation-protocol_version_28-insufficient_read_bytes_before_p23", + "1f15add1dc0ddc92" : "archival_meta-protocol_version_29-persistent_entry_meta-entry_evicted-eviction_meta-autorestore,_delete_value_in_next_tx-same_stage", "1f62f6743bb52550" : "readonly_ttl_bumps_across_threads_and_stages-multiple_readonly_ttl_bumps_same_stage", - "2076a51f648569cd" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-autorestore", - "20868c9e218c2273" : "state_archival-protocol_version_26-contract_storage_archival-TTL_enforcement-entry_accessible_when_currentLedger_==_liveUntilLedger", + "2055896750cd175f" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-wrong_signature_key_type", "20a6a4892d5acc69" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-failed_auto_restores_and_manual_restores_across_stages-two_failed_restores_across_stages", "20b9b462d5735ae2" : "Soroban_classic_account_authentication-default_account_with_additional_signer-wrong_field_order", "20c2b0f439ace889" : "Soroban_classic_account_authentication-account_with_weights-success", "211f4a93951f94b4" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_5", "21938ae254995cd4" : "Soroban_classic_account_authentication-account_with_weights-empty_vector_signature", "21ac7793688994ad" : "Soroban_footprint_validation-invokeHostFunction-readWrite-data", - "21c43b92b819267f" : "Trustline_stellar_asset_contract-protocol_version_26", "21e553dd1071721a" : "autorestore_contract_instance-restore_with_write", "221f1cad327fb891" : "Stellar_asset_contract_transfer_with_CAP-67_address_types-native_asset", "227f785ddbb9ab40" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_4", "2287bf75d44d6db2" : "Soroban_classic_account_authentication-account_with_required_multisig-incomplete_signature", - "229eca4a5af3b3cd" : "state_archival_operation_errors-protocol_version_28-extend_operation-too_large_extension", + "22b51f8885cb01b4" : "archival_meta-protocol_version_29-persistent_entry_meta-restore_expired_but_not_evicted-manual_restore", "22c6c1fecdd3222c" : "Soroban_authorization-multisig_classic_account-wide_tree-success_with_duplicate_auth_entries", + "22c9f0d43d968ecf" : "archival_meta-protocol_version_29-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_delete", "22df21f5f58e57ba" : "complex_contract-diagnostics_disabled", "2342772cbe3d3e0c" : "Soroban_footprint_validation-restoreOp-readOnly_footprint_not_empty", + "236e2db9eeecc097" : "Trustline_stellar_asset_contract-protocol_version_29", "23733e3ae41a70ad" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_14", "23900da58ed1ec25" : "Soroban_classic_account_authentication-default_account_with_additional_signer-missing_key_field", "23a89388bfb65808" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_9", "246b195d9beac8d6" : "Soroban_authorization-custom_account-wide_tree-success_for_tree_with_extra_nodes", - "24bce78365780bb1" : "classic_payment_to_soroban_fee_bump_account-protocol_version_26", - "2567ee7cb82c415f" : "multiple_soroban_ops_in_a_tx-protocol_version_28-without_fee_bump", "25e5dd2fc7614ea7" : "Failed_write_still_causes_ttl_observation", "266b724000b97eb7" : "Soroban_footprint_validation-restoreOp-temp_entries_are_not_allowed", - "2691da61cb031c32" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-restore,_update_value_in_next_tx-same_stage", + "26b71e168a5de930" : "state_archival-protocol_version_29-conditional_TTL_extension-calculate_refund", "26fb40313adc084c" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_15", "2703a3e0e62612e8" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_11", - "275035785578c436" : "state_archival-protocol_version_28-contract_instance_and_Wasm_archival-lifetime_extensions", + "27699b1bc4dd968a" : "basic_contract_invocation-protocol_version_29-insufficient_read_bytes_after_p23", "279b3ea1936ed91c" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_7", "28480490bc8a3fae" : "Soroban_authorization-classic_and_custom_accounts-deep_tree-success_for_tree_with_extra_nodes", "285f5877a54deb4e" : "Soroban_footprint_validation-invokeHostFunction-readWrite-contract_data_key_above_limit", "286138b521aa29ed" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_20", "28e6a6a32da1fb63" : "Soroban_authorization-multisig_classic_account-deep_tree-success_with_duplicate_auth_entries", - "291ec7f3dd23aed8" : "state_archival_operation_errors-protocol_version_28-extend_operation-readBytes_limit", "293f7ed0e476294c" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_17", - "2944621c12e38c82" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-autorestore,_delete_value_in_next_tx-same_stage", "2951f9e3e0241cc4" : "Soroban_authorization-custom_account-single_call-no_auth", "2963054aff2cd923" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_17", - "299b1de69721232a" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-autorestore,_delete_value_in_next_tx-across_stages", - "29b03d37cd3099be" : "contract_storage-protocol_version_26-footprint-no_footprint", - "2ace299730fbdd52" : "fee_bump_refund_account_merged-protocol_version_26", "2af87dc6245a802c" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-wrong_key_name", "2b19e70a8b41485f" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_13", + "2bbb41b7df874a0a" : "state_archival_operation_errors-protocol_version_29-restore_operation-success", "2c26a7ba5b931a86" : "Soroban_classic_account_authentication-default_account-wrong_key_name", "2ce02d45eeb17f14" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-claimable_balance", "2d96d9114eebd574" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_2", @@ -131,19 +126,14 @@ "2e8a9747bf075ec1" : "Soroban_footprint_validation-invokeHostFunction-readWrite-offer", "2e93251358cac25c" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_15", "2ea8bcb3f8d6be16" : "Soroban_authorization-classic_and_custom_accounts-single_call-success", - "2eb004014053b494" : "refund_test_with_closeLedger-protocol_version_28", "2eb7c4a770d05ab6" : "Soroban_classic_account_authentication-account_with_required_multisig-incomplete_key", - "2f05b787de3b1118" : "Soroban_delegated_signer_authentication-single_delegate-void_top-level_signature", "2f06a14dfcb5cd88" : "Soroban_authorization-classic_and_custom_accounts-deep_tree-success_with_duplicate_auth_entries", - "2f1ef83ec6a30e47" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_delete", - "2faf63148d9c990e" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_deleted,_then_recreate_with_new_TX-across_stages", "303dce5b05111d4b" : "Soroban_authorization-multisig_classic_account-deep_tree-incorrect_signature_payload", - "30f874adb24456b1" : "basic_contract_invocation-protocol_version_28-correct_invocation", - "30fb87b1984c9677" : "Stellar_asset_contract_transfer_with_CAP-67_address_types", "311f3f548207d5d6" : "Soroban_authorization-multisig_classic_account-wide_tree-incorrect_signature_payload", "3152146ae3e1601f" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_11", "318b008d239ea9d8" : "Module_cache", "3279e450f885436a" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-restore,_delete,_restore-across_stages", + "328c8ae9715589c5" : "archival_meta-protocol_version_29-persistent_entry_meta-restore_expired_but_not_evicted-restore,_delete_value_in_next_tx-across_stages", "329c8076e0ba5976" : "Soroban_footprint_validation-invokeHostFunction-readWrite-TTL_entry", "32e313f52f20cae1" : "Soroban_classic_account_authentication-default_account-uninitialized_map", "3304ede4be3e7951" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_19", @@ -151,11 +141,10 @@ "3344d57a6c44b645" : "Soroban_authorization-default_classic_account-wide_tree-success_with_duplicate_auth_entries", "3351d4c3d6daa80b" : "Soroban_classic_account_authentication-account_with_required_multisig-uninitialized_map", "33541948d53d210f" : "Soroban_footprint_validation-invokeHostFunction-readOnly-offer", + "33a3c48e268855e6" : "archival_meta-protocol_version_29-persistent_entry_meta-restore_expired_but_not_evicted-autorestore,_delete_value_in_next_tx-across_stages", "33f7502a4490dbc8" : "Soroban_authorization-classic_account_with_weights-deep_tree-success_with_duplicate_auth_entries", "343cb2cb92cd8aca" : "Soroban_authorization-classic_and_custom_accounts-wide_tree-no_auth", - "3468dbd89e1d09e5" : "classic_phase_bumps_sequence_of_soroban_source_account-protocol_version_28", - "34bda29a61241c80" : "state_archival-protocol_version_28-conditional_TTL_extension-calculate_refund", - "34c4629e4bafa2dd" : "contract_storage-protocol_version_28-footprint-no_footprint", + "34486a4b8221b151" : "archival_meta-protocol_version_29-persistent_entry_meta-restore_expired_but_not_evicted-restore,_update_value_in_next_tx-same_stage", "35117649a10b863c" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_11", "35b99a95ff36fd47" : "Soroban_authorization-default_classic_account-deep_tree-unused_auth_entries-failure_with_long_malformed_function_name", "36193429a9fd13f9" : "Soroban_authorization-classic_account_with_weights-single_call-failure_for_tree_with_missing_node", @@ -166,163 +155,140 @@ "370b65bf45bf359a" : "Soroban_footprint_validation-invokeHostFunction-readWrite-claimable_balance", "372873b046d26a73" : "transaction_validation_diagnostics", "375e418b328316a8" : "Soroban_classic_account_authentication-default_account-incomplete_signature", - "38cfd148d6296478" : "basic_contract_invocation-protocol_version_26-insufficient_instructions", + "37d222a79102d90a" : "refund_to_source_in_tx1_and_SAC_transfer_from_same_account_in_tx2-protocol_version_29-failure", "38d9c5df4335cbbf" : "Soroban_authorization-multisig_classic_account-wide_tree-unused_auth_entries-success_with_arbitrary_valid_function", - "393bdca30f6cfe37" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_deleted,_then_recreate_with_new_TX-same_stage", "394272a31b2f42f9" : "Soroban_footprint_validation-invokeHostFunction-readWrite-liquidity_pool", - "39cb1e990e856d1d" : "basic_contract_invocation-protocol_version_26-incorrect_invocation_parameters-too_few_parameters", + "39d77461e71857ac" : "state_archival_operation_errors-protocol_version_29-extend_operation-insufficient_refundable_fee", "3abe7e7946b3a3aa" : "charge_rent_fees_for_storage_resize-resize_with_no_extend-failed_due_to_low_fee", "3ae3a09a2ac1bace" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_19", + "3aeb08dd6d872f9f" : "contract_storage-protocol_version_29-read_bytes_limit_enforced", "3b0802ffb3b76400" : "Soroban_classic_account_authentication-default_account_with_additional_signer-missing_signature_field", - "3b91093ca60bf8ca" : "basic_contract_invocation-protocol_version_28-insufficient_instructions", - "3be02d8253170239" : "Soroban_delegated_signer_authentication-single_delegate-bad_delegate_payload", + "3b9daac6049f494f" : "archival_meta-protocol_version_29-persistent_entry_meta-restore_expired_but_not_evicted-autorestore,_delete_value_in_next_tx-same_stage", "3c1ebb13484322b9" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_2", "3c84ec0cd4e29a9e" : "Soroban_authorization-classic_account_with_weights-deep_tree-success", - "3da98fc3d352b14a" : "merge_account_then_SAC_payment_scenarios-protocol_version_28-SAC_payment_from_the_merged_account", "3db91544d5ae2281" : "settings_upgrade-from_init_settings", - "3e658e0ecfc377ad" : "multiple_soroban_ops_in_a_tx-protocol_version_26-with_fee_bump", "3ebb523abd74e1c1" : "readonly_ttl_bumps_across_threads_and_stages-extend_persistent_contract_function_across_stages", "3ed1bb2f1af2ea38" : "resource_fee_exceeds_uint32-other_account_fee_bump-failure-fee_bump_fee_is_not_sufficient_to_cover_the_resource_fee_with_low_resource_fee", "3ef1fb92602e14d5" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-manual_restore-across_stages", "3f41a40a5611b7d8" : "Soroban_authorization-classic_account_with_weights-single_call-unused_auth_entries-failure_with_malformed_function_name", + "4049c5bf43d27574" : "classic_phase_bumps_sequence_of_soroban_source_account-protocol_version_29", "40cc10c2a3fe22f0" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_18", "40fc1592b7b8d9a7" : "Soroban_classic_account_authentication-default_account-wrong_field_order", - "416716038d1bf264" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_delete", "41a75a802c103130" : "Soroban_classic_account_authentication-default_account_with_additional_signer-success", - "41b156d3fa61a392" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_updated_value", - "426bf7e8fc76eaea" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_deleted,_then_recreate_with_new_TX-same_stage", - "429b2f1e9f48bfe9" : "source_account_of_first_tx_is_in_second_txs_footprint-protocol_version_28", "432866f9e4658727" : "Soroban_classic_account_authentication-default_account_with_additional_signer-uninitialized_map", "43509a8017a394ec" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-wrong_signature_name", "43aa6585c53544c0" : "Soroban_classic_account_authentication-default_account_with_additional_signer-uninitialized_vector_signature", - "43ab812359d242e5" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-autorestore,_delete_value_in_next_tx-across_stages", - "43caed795b61ad7c" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-autorestore,_delete_value_in_next_tx-same_stage", "43d0750bf32a8142" : "Soroban_authorization-classic_and_custom_accounts-single_call-success_for_tree_with_extra_nodes", "4403f2717365f3f1" : "Soroban_authorization-classic_and_custom_accounts-wide_tree-success_for_tree_with_extra_nodes", + "44132eb86a0334be" : "state_archival-protocol_version_29-contract_instance_and_Wasm_archival-restore_contract_instance_and_wasm", + "4445d44170e0cfe1" : "state_archival-protocol_version_29-contract_instance_and_Wasm_archival-restore_contract_instance,_not_wasm", "444e7910e5721658" : "Soroban_authorization-default_classic_account-wide_tree-no_auth", - "44aed0d0d619653f" : "basic_contract_invocation-protocol_version_26-insufficient_read_bytes_before_p23", "44ed42af0c335da0" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_15", + "4512adf732987d33" : "refund_test_with_closeLedger-protocol_version_29", "45bb7c67fa144f76" : "Soroban_classic_account_authentication-account_with_required_multisig-empty_vector_signature", "45fafb2b89af5af9" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_7", "463cc045e4e770ef" : "loadgen_Wasm_executes_properly", "46841d2f33918f97" : "Soroban_authorization-multisig_classic_account-single_call-failure_for_tree_with_missing_node", - "46b0acde0e911bc2" : "state_archival-protocol_version_28-max_TTL_extension-extension_op", "46bb33ad49f0924d" : "Soroban_authorization-classic_account_with_weights-single_call-no_auth", "46bc30f464b80820" : "Soroban_footprint_validation-invokeHostFunction-readWrite-valid", "46ee08cbe6a5345e" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_0", "471f63ec9db5a9dd" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_19", "472ac360b2cee870" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-claimable_balance", - "47ca3b5bf744ccaa" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_delete", "47efc2a10557bd97" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_0", "47fee2a3bc870ecc" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-autorestore,_delete,_then_create-same_stage", "485a9f1997660b04" : "Soroban_footprint_validation-autorestore_footprint-classic_key_marked_as_archived", "4876c2f30088ca20" : "Soroban_authorization-classic_account_with_weights-single_call-success_for_tree_with_extra_nodes", - "48c781bbceb21112" : "basic_contract_invocation-protocol_version_26-correct_invocation", "490a163425465416" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_9", - "490f1f4997c0b5d4" : "basic_contract_invocation-protocol_version_28-insufficient_refundable_resource_fee", "49689aae806682f8" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_16", "49f65f2d365f1cf2" : "Soroban_authorization-classic_and_custom_accounts-wide_tree-failure_for_tree_with_missing_node", "4a1932cf528ee7ca" : "Soroban_classic_account_authentication-account_with_required_multisig-wrong_key_name", "4a8c58a85988d163" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_4", "4aa2d8d102f584a4" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_16", "4ae7dbea4b507a75" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_5", - "4b48a6a4f275f4e1" : "basic_contract_invocation-protocol_version_28-incorrect_invocation_parameters-malformed_parameters", + "4af293dc53825cbe" : "state_archival-protocol_version_29-max_TTL_extension-extension_op", "4b4fde93869500d3" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_3", - "4b78ba479ffbf011" : "Soroban_delegated_signer_authentication-single_delegate-wrong_delegate_signature_type", "4b7e19f44373ff48" : "Soroban_footprint_validation-invokeHostFunction-readOnly-liquidity_pool", "4bc0adc4bfd824ae" : "Soroban_footprint_validation-invokeHostFunction-readOnly-claimable_balance", + "4c29f760282cb30d" : "archival_meta-protocol_version_29-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_updated_value", "4c5cc01aded482f8" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_18", "4cd30f7ebe173060" : "Soroban_classic_account_authentication-default_account-missing_key_field", "4db1a66114f8b194" : "Soroban_authorization-classic_account_with_weights-deep_tree-no_auth", "4eaeadc112025f27" : "create_in_first_stage_delete_in_second_stage", "4ee0f3b0ffb1a967" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_18", - "4ef066d1bdf57a24" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_updated_value", "4ff86e8ec6d8f89c" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-empty_map", - "50b8c59ec9bdb6bf" : "classic_phase_sets_master_weight_of_soroban_source_account_to_0-protocol_version_28", - "50da3c19b259f60b" : "state_archival-protocol_version_28-contract_instance_and_Wasm_archival-restore_contract_instance_and_wasm", + "51607121e005fb7f" : "archival_meta-protocol_version_29-persistent_entry_meta-entry_evicted-eviction_meta-restore,_update_value_in_next_tx-same_stage", "51616f70e97b17d5" : "Soroban_authorization-classic_account_with_weights-single_call-unused_auth_entries-success_with_arbitrary_valid_function", "5171bdbde7eb7562" : "Soroban_authorization-custom_account-single_call-unused_auth_entries-failure_with_malformed_function_name", "519ee0e221d13e7a" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-data", "51e36c475d33d2bb" : "Soroban_authorization-classic_and_custom_accounts-single_call-unused_auth_entries-success_with_arbitrary_valid_function", "51f0bd683d0d5829" : "Soroban_authorization-classic_and_custom_accounts-wide_tree-unused_auth_entries-failure_with_long_malformed_function_name", "52c707bc77bf01f6" : "Module_cache_miss_on_immediate_execution-separate_ledger_upload_and_execution", - "5320263ea9731510" : "basic_contract_invocation-protocol_version_26-incorrect_invocation_parameters-too_many_parameters", "536297cefb569ed7" : "Soroban_authorization-custom_account-single_call-unused_auth_entries-success_with_arbitrary_valid_function", "5365a779053a148d" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_3", "53b461e8db0fddd1" : "Soroban_authorization-multisig_classic_account-single_call-success_for_tree_with_extra_nodes", - "53c11b905406d9ca" : "basic_contract_invocation-protocol_version_28-account_address", "540eac72b8688d25" : "Soroban_footprint_validation-invokeHostFunction-readOnly-native_asset_trustline", - "5416ca18f9a5fa27" : "state_archival_operation_errors-protocol_version_26-restore_operation-exceeded_writeBytes", "546a3cc311788248" : "Soroban_classic_account_authentication-account_with_weights-success_with_credentials_v2", - "54e3fdf28cd70bd4" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_deleted,_then_recreate_with_new_TX-across_stages", "54f8492f87d26b35" : "Soroban_authorization-default_classic_account-single_call-no_auth", - "55c7bac6754e8daf" : "contract_storage-protocol_version_28-Same_ScVal_key,_different_types", + "5675aede8324645c" : "state_archival_operation_errors-protocol_version_29-extend_operation-too_large_extension", "569840c5704c5e44" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_16", "57207be4a3e12536" : "Soroban_classic_account_authentication-account_with_required_multisig-missing_key_field", "57659d96c64bd183" : "Soroban_classic_account_authentication-duplicate_signature_not_allowed_with_multisig", "5770d78319f7e869" : "resource_fee_exceeds_uint32-other_account_fee_bump-failure-fee_bump_fee_is_not_sufficient_to_cover_the_resource_fee", + "57a428f77fd05af1" : "contract_storage-protocol_version_29-footprint-RO_footprint_for_RW_entry", "585310a1b2f3c9e1" : "Soroban_classic_account_authentication-multiple_signers_with_insufficient_weight_not_authenticated", "588e655d03094c0e" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_13", - "5897c539e59df560" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-restore,_delete_value_in_next_tx-across_stages", "58d33db7d651fcd6" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_13", - "58e3b7a81b4b1fbc" : "state_archival_operation_errors-protocol_version_28-extend_operation-insufficient_refundable_fee", "59096fc089c399f5" : "parallel_txs-delete_and_re-create_persistent_entry_with_lower_TTL-across_stages", + "591b0f65f2643876" : "refund_still_happens_on_bad_auth-protocol_version_29", + "593eaf7fb01d7232" : "basic_contract_invocation-protocol_version_29-insufficient_read_bytes_before_p23", "594d4af3fbb90e26" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-restore,_delete,_restore-across_stages", "598b33597b504a5f" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-uninitialized_vector_signature", "59a15bc254310ed9" : "Soroban_classic_account_authentication-account_with_weights-missing_signature_field", "59a168278f646f8f" : "Soroban_authorization-classic_account_with_weights-single_call-success_with_duplicate_auth_entries", - "59c181d5ff7acc7e" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-autorestore,_delete_value_in_next_tx-same_stage", - "5a067d6f1a7c300f" : "state_archival-protocol_version_28-contract_instance_and_Wasm_archival-restore_contract_Wasm,_not_instance", "5b5419e7ec6c21c3" : "Soroban_authorization-classic_and_custom_accounts-deep_tree-unused_auth_entries-failure_with_long_malformed_function_name", - "5bd72d146c15215c" : "state_archival-protocol_version_26-contract_instance_and_Wasm_archival-restore_contract_Wasm,_not_instance", - "5da4c3861d2a2428" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-restore,_delete_value_in_next_tx-same_stage", + "5cbc615625d83996" : "state_archival-protocol_version_29-TTL_threshold", "5e733f15f9fe6c15" : "parallel_txs_hit_declared_readBytes-restore", "5e8558b4e95d77a3" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-liquidity_pool", - "5e95d63123990f96" : "classic_payment_source_same_as_soroban_fee_bump_source-protocol_version_26", - "5f0e7c9e5b14d2fa" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_deleted,_then_recreate_with_new_TX-same_stage", - "5f484e7d113eb7b9" : "basic_contract_invocation-protocol_version_28-malformed_function_names", + "5eed63dee9c1b99a" : "Soroban_classic_account_authentication-default_account_with_additional_signer-wrong_signature_key_type", + "5f3872f905c5baf1" : "non-fee_source_account_is_recipient_of_payment_in_both_classic_and_soroban-protocol_version_29", + "5f7972a6994dafe2" : "archival_meta-protocol_version_29-persistent_entry_meta-restore_expired_but_not_evicted-restore,_delete_value_in_next_tx-same_stage", "5f7b6356a31b9872" : "Soroban_classic_account_authentication-default_account-wrong_signature_type", + "5f8754383c35d1be" : "classic_phase_sets_master_weight_of_soroban_source_account_to_0-protocol_version_29", + "5fcfab73812561f2" : "basic_contract_invocation-protocol_version_29-incorrect_footprint", "6031e1f0663cfda5" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_13", + "604c6265d13fc31a" : "archival_meta-protocol_version_29-temp_entry_meta", + "6054872800de82ad" : "state_archival_operation_errors-protocol_version_29-restore_operation-exceeded_writeBytes", "608765b88758cdff" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-liquidity_pool", "60d32d465e9ef646" : "Soroban_authorization-classic_account_with_weights-deep_tree-unused_auth_entries-failure_with_malformed_function_name", "6172930301eec1db" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-empty_vector_signature", + "617ce679889b737e" : "merge_account_then_SAC_payment_scenarios-protocol_version_29-SAC_payment_with_merged_account_as_source", "61aaf65d2d2be2df" : "Soroban_authorization-multisig_classic_account-wide_tree-success_for_tree_with_extra_nodes", - "61c90fa30af7ebec" : "state_archival-protocol_version_28-contract_storage_archival-write_does_not_increase_TTL", "61f1ec50d0457920" : "Soroban_authorization-default_classic_account-wide_tree-success", - "622a635fa0e892e7" : "Soroban_delegated_signer_authentication-single_delegate-void_delegate_signature", "62ae728143dd1ae3" : "Soroban_authorization-default_classic_account-single_call-failure_for_tree_with_missing_node", "630112e28640b3dc" : "Soroban_classic_account_authentication-default_account_with_additional_signer-incomplete_signature", - "63050b4296b7bd70" : "Soroban_delegated_signer_authentication-deep_delegate_tree-above_depth_limit", "633ede77405d5244" : "contract_constructor_support-constructor_with_arguments_and_auth", "63973d7e63330d22" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_23", "63bf3b0d817b48a3" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-native_asset_trustline", - "63eb63e8c2c13d4e" : "state_archival-protocol_version_28-contract_storage_archival-TTL_enforcement-entry_accessible_when_currentLedger_==_liveUntilLedger", "6445b19d68f45e62" : "Soroban_authorization-default_classic_account-deep_tree-success_for_tree_with_extra_nodes", - "6452cb6f030f5835" : "Soroban_delegated_signer_authentication-single_delegate-successful_authentication", "647908425725f18e" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_18", "64c67c03ad8477ca" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_20", "64def0179fc4dbe6" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_10", "6519e434acf354b7" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_9", "659ac68c6d773240" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-contract_data_key_above_limit", - "65be2448771fb442" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-restore,_delete_value_in_next_tx-same_stage", "65d4ab7a4ee03638" : "contract_errors_cause_transaction_to_fail-ok_val_err", "660ffaf163aa3a0d" : "Soroban_authorization-custom_account-single_call-unused_auth_entries-failure_with_long_malformed_function_name", "666cc90ebbdab3dd" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-missing_key_field", "66755facd883bef4" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-offer", "6716ff61cd9b5a3f" : "Soroban_authorization-multisig_classic_account-single_call-success_with_duplicate_auth_entries", "675cca94471892a1" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_4", - "6781141559d52ed3" : "basic_contract_invocation-protocol_version_28-insufficient_read_bytes_after_p23", "678620649d7edfe9" : "persistent_entry_archival-eviction-key_accessible_after_restore-autorestore", "67c57dc9f673aa9e" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-wrong_field_order", "68392e6abed97fb5" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-autorestore-same_stage", "6856b0b044010cae" : "Soroban_custom_account_authentication-successful_authentication", - "68cbff25009fe342" : "basic_contract_invocation-protocol_version_28-non-existent_contract_id", "68f165975379ef6f" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-config_setting", "69051a1b441d9996" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_8", - "691cd6b55fa9a9fb" : "state_archival_operation_errors-protocol_version_28-restore_operation-success", "69abe494995566fb" : "Soroban_authorization-classic_and_custom_accounts-deep_tree-unused_auth_entries-success_with_arbitrary_valid_function", "69d72740ac448701" : "Soroban_authorization-classic_and_custom_accounts-wide_tree-unused_auth_entries-success_with_arbitrary_valid_function", - "69ea6faa228bf063" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_deleted,_then_recreate_with_new_TX-same_stage", "6a0fcad7207a7356" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_18", "6a5c2ecc147d9ba9" : "parallel_restore_and_update", "6b1bba1cde19195d" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-config_setting", @@ -330,261 +296,225 @@ "6be1723f2de82c90" : "Soroban_classic_account_authentication-default_account_with_additional_signer-wrong_key_name", "6c7ee12d6e1882df" : "Soroban_authorization-default_classic_account-single_call-success", "6ca3ca208041d5d9" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_10", - "6d661fda6fedbadc" : "state_archival-protocol_version_28-contract_storage_archival-extendOp_when_currentLedger_==_liveUntilLedger", "6de1fadf0f1a6789" : "version_test", + "6dfc8f8d0c1f4d61" : "basic_contract_invocation-protocol_version_29-account_address", "6e020886d77520ee" : "Soroban_authorization-classic_account_with_weights-deep_tree-unused_auth_entries-failure_with_long_malformed_function_name", "6e0258e8cfa3ab47" : "Soroban_footprint_validation-extendOp-valid", "6e1d5421cf61b82d" : "Soroban_authorization-classic_and_custom_accounts-deep_tree-no_auth", - "6e2ec29147b7b931" : "archival_meta-protocol_version_28-Create_temp_entry_with_same_key_as_an_expired_entry_on_eviction_ledger", + "6e6a0dee9b273c6f" : "state_archival-protocol_version_29-contract_storage_archival-entry_accessible_when_currentLedger_==_liveUntilLedger", "6f27e3a9c63fca5b" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-data", "6f3467c6e13a1648" : "Soroban_footprint_validation-extendOp-readWrite_set_with_Soroban_key", "6fe7ad5169387958" : "parallel_txs-basic_test", "6ffafbc029e47549" : "Soroban_authorization-default_classic_account-wide_tree-success_for_tree_with_extra_nodes", "701983d81c015a60" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_12", "70b7679c1de24a4b" : "Soroban_authorization-custom_account-single_call-failure_for_tree_with_missing_node", - "711a5390f886c7ff" : "basic_contract_invocation-protocol_version_26-account_address", "714af0a63932eb6b" : "Soroban_authorization-multisig_classic_account-single_call-unused_auth_entries-success_with_arbitrary_valid_function", "71db73c744a926be" : "Soroban_footprint_validation-soroban_entries-archived_entries-max_+_1", "725278041cf421e0" : "Soroban_authorization-default_classic_account-single_call-unused_auth_entries-failure_with_malformed_function_name", "729f8af24dc7fbd8" : "autorestore_with_storage_resize-autorestore", "72e32d5e4cbe23f2" : "delete_non_existent_entry_with_parallel_apply", - "734335eb1ab5000f" : "refund_still_happens_on_bad_auth-protocol_version_28", "73d97239afd1a289" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-wrong_signature_type", "7476d7d3f060cf1d" : "overly_large_soroban_values_are_handled_gracefully-event_data", - "748c7e19021ce5e2" : "contract_storage-protocol_version_28-write_bytes_limit_enforced", "749d86ef2b83de64" : "Soroban_footprint_validation-autorestore_footprint-valid_keys", "74cb309604b87ad5" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_12", - "74eec9cae165fa50" : "state_archival-protocol_version_28-contract_instance_and_Wasm_archival-restore_contract_instance,_not_wasm", - "755302381dc99f66" : "basic_contract_invocation-protocol_version_28-incorrect_footprint", "7560b4ebec62de03" : "Soroban_authorization-classic_and_custom_accounts-single_call-success_with_duplicate_auth_entries", "75a857ffd876a72d" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_1", "7623428964713c55" : "Soroban_authorization-multisig_classic_account-wide_tree-failure_for_tree_with_missing_node", "7624c43e428ee32d" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_4", "763b53bb30a2499d" : "Soroban_footprint_validation-classic_entries_counted_as_disk-read_only-max_+_1", + "764084a2f48fbd19" : "basic_contract_invocation-protocol_version_29-incorrect_invocation_parameters-too_many_parameters", + "7738c2df0c244d0d" : "archival_meta-protocol_version_29-persistent_entry_meta-entry_evicted-eviction_meta-restore,_delete_value_in_next_tx-across_stages", + "77649b5f4eec4b72" : "state_archival-protocol_version_29-contract_instance_and_Wasm_archival-lifetime_extensions", "77904c0e7819a7eb" : "Soroban_authorization-default_classic_account-wide_tree-failure_for_tree_with_missing_node", "77b0f96ee78d5679" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_5", - "77f16a104596eb69" : "validate_return_values-protocol_version_28", "7811a2db272e2bc5" : "Soroban_authorization-multisig_classic_account-single_call-no_auth", "781c971d7b58563a" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_15", "78d19632e893bee4" : "persistent_entry_archival-expiration_without_eviction-restore_with_nonexistent_key", "7974f01f0568597f" : "autorestore_with_storage_resize-autorestore_with_rent_bump_and_resize", - "79e52eb41531b9e3" : "refund_to_source_in_tx1_and_SAC_transfer_from_same_account_in_tx2-protocol_version_28-success", - "7ab8a5bbd143dfa8" : "state_archival_operation_errors-protocol_version_28-extend_operation-success", "7af34c851b5af2ba" : "Soroban_classic_account_authentication-default_account-success_with_credentials_v2", "7b24f552eb083ed6" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_19", "7c3fa2905342aef3" : "Soroban_classic_account_authentication-default_account_with_additional_signer-empty_vector_signature", "7c588d1eada8e956" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_14", "7c7ac7fe41e94018" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_17", "7ca0fb2954bbb6c8" : "Soroban_footprint_validation-autorestore_footprint-unsorted_archived_indexes", + "7cc3684dd630603a" : "archival_meta-protocol_version_29-persistent_entry_meta-entry_evicted-eviction_meta-autorestore,_delete_value_in_next_tx-across_stages", "7cf5a062e427a3b3" : "Soroban_custom_account_authentication-void_signature", "7db90301e11fa5d0" : "Soroban_classic_account_authentication-account_with_required_multisig-wrong_key_type", "7dd9f6410b671c2f" : "overly_large_soroban_values_are_handled_gracefully-store_key", - "7e2cf78094517d5a" : "non-fee_source_account_is_recipient_of_payment_in_both_classic_and_soroban-protocol_version_28", + "7de21bd4d91d805e" : "archival_meta-protocol_version_29-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_deleted,_then_recreate_with_new_TX-across_stages", "7f1fec7fe0be9e43" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_13", - "7f4f40cb7a2fbb6f" : "state_archival-protocol_version_26-contract_instance_and_Wasm_archival-restore_contract_instance,_not_wasm", "7f737b8fa30b66b4" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_6", "7f7e72aa985692ae" : "Soroban_classic_account_authentication-account_with_required_multisig-wrong_signature_order", "811ecb1190787c4f" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_20", "81c974086b0e4f56" : "Soroban_custom_account_authentication-owner_change", "824743daeb17e7e9" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_21", + "83c656314634c36a" : "refund_account_merged-protocol_version_29", "83e78d1ac27b4951" : "Soroban_authorization-classic_account_with_weights-wide_tree-incorrect_signature_payload", "83f9b0ae9387fa6d" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-contract_data_key_above_limit", "841b5a633ba3dcd4" : "Soroban_authorization-custom_account-single_call-success", "84315cd6d68b5749" : "Soroban_authorization-classic_account_with_weights-single_call-unused_auth_entries-failure_with_long_malformed_function_name", - "8433fde0f0bbd2f7" : "basic_contract_invocation-protocol_version_26-insufficient_refundable_resource_fee", "843c6cc8cb69c839" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_1", - "846ca1ad625e9ea7" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_updated_value", - "846db27a79a2ec7d" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-autorestore", + "8455df4697c3967d" : "archival_meta-protocol_version_29-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_delete", "858ea3c6fa587d2c" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_11", "860c9ebb141ea269" : "Soroban_classic_account_authentication-default_account-missing_signature_field", "8666b7f3149900ec" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-incomplete_key", "86c090d2b24bc515" : "Soroban_footprint_validation-classic_entries_counted_as_disk-read_write-max_+_1", "86ec0b605b279d49" : "Soroban_classic_account_authentication-account_with_required_multisig-wrong_signature_name", "875401f18d4d37e0" : "Soroban_classic_account_authentication-account_with_required_multisig-empty_map", + "877f82cfac49070f" : "contract_storage-protocol_version_29-Same_ScVal_key,_different_types", "8848fdad9b841822" : "Soroban_authorization-default_classic_account-deep_tree-no_auth", "8878f61751a807b8" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_3", "887c083fc1639e43" : "Soroban_authorization-classic_account_with_weights-wide_tree-unused_auth_entries-failure_with_malformed_function_name", "8900d5bd1b2b9f70" : "Soroban_footprint_validation-invokeHostFunction-readWrite-issuer_trustline", "891a276e7ce06b91" : "Soroban_authorization-multisig_classic_account-deep_tree-success_for_tree_with_extra_nodes", - "894fd4e0f979d673" : "refund_is_sent_to_fee-bump_source-protocol_version_26", "895b3456160d157c" : "Soroban_authorization-classic_account_with_weights-deep_tree-unused_auth_entries-success_with_arbitrary_valid_function", "897ee371b2a80230" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-autorestore_then_delete", "898221ce90bbe12a" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-autorestore_then_delete", "89f9145d00c68451" : "overly_large_soroban_values_are_handled_gracefully-event_topic", - "89fc4f3bfc2e66a6" : "trustline_deletion_then_SAC_payment-protocol_version_26", "8adead0567fe7d71" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-native_asset_trustline", "8b13d91d773c9085" : "Soroban_authorization-custom_account-wide_tree-success_with_duplicate_auth_entries", - "8b327a3e8ca7a777" : "state_archival-protocol_version_26-conditional_TTL_extension-absolute_refund", + "8b62ea69fc56c0a7" : "merge_account_then_SAC_payment_scenarios-protocol_version_29-SAC_payment_to_the_merged_account", "8cf745afc0a51283" : "Soroban_footprint_validation-soroban_entries-archived_entries-max", "8d0a24bb396f996d" : "parallel_txs-delete_and_re-create_temporary_entry_with_lower_TTL-across_stages", + "8d7be440e1455d0b" : "basic_contract_invocation-protocol_version_29-incorrect_invocation_parameters-too_few_parameters", "8dd5261011c6c3bc" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_16", "8dfbc063af86ec35" : "overly_large_soroban_values_are_handled_gracefully-store_in_instance_storage", "8e99b44b297caaac" : "Soroban_footprint_validation-restoreOp-valid", - "8f46b4013f8e249b" : "archival_meta-protocol_version_26-Create_temp_entry_with_same_key_as_an_expired_entry_on_eviction_ledger", - "8f96b2243358519a" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-autorestore", - "8f9963180cf54ace" : "archival_meta-protocol_version_28-temp_entry_meta", "8fa77a7691d9a43d" : "Soroban_classic_account_authentication-account_with_required_multisig-missing_signature_field", - "90153646e94af892" : "state_archival-protocol_version_26-max_TTL_extension-extend_host_function_persistent", "908acbd3aceb8316" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_11", - "90bf93d9cc8919fb" : "fee_bump_inner_account_merged_then_used_as_inner_account_on_soroban_fee_bump-protocol_version_26", "90d44cefcaf5f29b" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-incomplete_signature", + "912edb34a90b9157" : "archival_meta-protocol_version_29-Create_temp_entry_with_same_key_as_an_expired_entry_on_eviction_ledger", + "9146eb4425682ade" : "state_archival-protocol_version_29-contract_storage_archival-TTL_enforcement-restoreOp_skips_when_currentLedger_==_liveUntilLedger", "91eb7b4592150c3e" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_6", "9209c586bd226b99" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_6", - "920a1fad5ca8a29b" : "state_archival-protocol_version_26-contract_instance_and_Wasm_archival-lifetime_extensions", "9245f43fc2fba8b0" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-offer", - "92680c457fe83aa7" : "state_archival_operation_errors-protocol_version_26-restore_operation-success", + "925562b1c2fa6d94" : "validate_return_values-protocol_version_29", + "92812a1aacefe098" : "state_archival-protocol_version_29-contract_instance_and_Wasm_archival-restore_contract_Wasm,_not_instance", "92b288c4d95b05f9" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-autorestore,_delete,_then_has-across_stages", "930b08e2d077bfdc" : "Soroban_classic_account_authentication-account_with_weights-uninitialized_vector_signature", "932641f2b5405789" : "overly_large_soroban_values_are_handled_gracefully-return_value", "93481a30a4ea3f79" : "Soroban_authorization-custom_account-deep_tree-unused_auth_entries-success_with_arbitrary_valid_function", - "93b030d05e31f59e" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-restore,_delete_value_in_next_tx-across_stages", "93ba029750a86166" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_20", "940e8bdc84f9af94" : "readonly_ttl_bumps_across_threads_and_stages-readonly_ttl_bumps_with_mixed_stages", "9435de885ff30026" : "Soroban_authorization-custom_account-wide_tree-no_auth", "94f5f9a57e087669" : "overly_large_soroban_values_are_handled_gracefully-serialize", - "955397e091e35fad" : "archival_meta-protocol_version_26-temp_entry_meta", "9592b7d06c5fd16c" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_12", "95dc94b3567bf81b" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_5", "95dfceb1b6e1c811" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_10", "95ede71a6074dc1b" : "Soroban_authorization-custom_account-wide_tree-success", "964450cc2eb51081" : "Soroban_classic_account_authentication-default_account-wrong_key_type", - "96690328bd10efc5" : "refund_test_with_closeLedger-protocol_version_26", + "973c473e2b3d9f51" : "classic_payment_source_same_as_soroban_fee_bump_source-protocol_version_29", + "98926b2de35ed6e6" : "archival_meta-protocol_version_29-persistent_entry_meta-restore_expired_but_not_evicted-autorestore", "98958916fd28f843" : "autorestore_contract_instance-autorestore_fees", - "98dd9afc9aec58e3" : "state_archival-protocol_version_26-contract_storage_archival-write_does_not_increase_TTL", "99541d3371b2ebcf" : "Module_cache_across_protocol_versions", + "99cfc2b1081eda32" : "Soroban_classic_account_authentication-account_with_weights-wrong_signature_key_type", "9a2c38c5272df06c" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_14", "9a4d995b45b4db13" : "Soroban_footprint_validation-autorestore_footprint-index_out_of_bounds", "9abda59d0cea408b" : "Soroban_classic_account_authentication-duplicate_signature_not_allowed_with_sufficient_single_signature_threshold", "9b5ea22fe53632fe" : "Soroban_footprint_validation-invokeHostFunction-readOnly-data", - "9b7aa5eb73370090" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-restore,_delete_value_in_next_tx-across_stages", "9c169e4a17366ef4" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_16", "9c319f6ebbf74238" : "Soroban_authorization-multisig_classic_account-wide_tree-unused_auth_entries-failure_with_malformed_function_name", "9c797412cd0d11b5" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_14", - "9c99d2135d9d7d77" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-restore,_update_value_in_next_tx-same_stage", "9cbd66b8c4018c16" : "Soroban_authorization-classic_account_with_weights-deep_tree-failure_for_tree_with_missing_node", "9ccccec1202f5b81" : "resource_fee_exceeds_uint32-self_fee_bump-failure-fee_bump_fee_is_not_sufficient_to_cover_the_resource_fee_with_high_inclusion_fee", - "9de1ea718b77ffa2" : "create_and_invoke_external_ref_contract", - "9e44fefde737f8bc" : "contract_storage-protocol_version_26-footprint-RO_footprint_for_RW_entry", "9e7d59169e4ded64" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-wrong_key_type", "9e81b4f36cfd3af7" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_7", + "9eb4e26b61bc0325" : "state_archival-protocol_version_29-contract_storage_archival-write_does_not_increase_TTL", "9f130c1b0c7b7a7a" : "Soroban_classic_account_authentication-account_with_weights-wrong_signature_type", "9f280040dbfe9ebd" : "overly_large_soroban_values_are_handled_gracefully-store_in_instance_storage_key", "9fa92df05d0615bf" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-restore,_delete,_restore-delete_in_same_stage_as_first_restore", "a0119ab86c638bee" : "Soroban_footprint_validation-autorestore_footprint-entry_in_readOnly_footprint", - "a0964aad16627449" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-restore,_update_value_in_next_tx-across_stages", + "a0530911bb14b4b9" : "archival_meta-protocol_version_29-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_deleted,_then_recreate_with_new_TX-same_stage", "a0b7e7243a96c9c6" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_4", "a0d59eaf3b79413c" : "Soroban_authorization-default_classic_account-deep_tree-success_with_duplicate_auth_entries", "a0fd94b0902a1c7f" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-manual_restore-same_stage", + "a1e8a2de64ca02cb" : "multiple_soroban_ops_in_a_tx-protocol_version_29-without_fee_bump", "a258cc5505846d79" : "Soroban_authorization-classic_account_with_weights-wide_tree-success_for_tree_with_extra_nodes", + "a3e6e4ec2134a31c" : "state_archival_operation_errors-protocol_version_29-extend_operation-success", "a4453c1269875574" : "parallel_txs_hit_declared_readBytes-invoke", - "a4f13a2fa6293428" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_delete", "a71e4d9203d52748" : "Soroban_authorization-classic_and_custom_accounts-single_call-no_auth", "a72c947ed7b434d3" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_2", - "a7a45d93c64cf3d9" : "Soroban_delegated_signer_authentication-deep_delegate_tree-significantly_above_depth_limit", "a80621eee94baae6" : "Soroban_classic_account_authentication-account_with_required_multisig-uninitialized_vector_signature", "a8a9725a33441cb5" : "Soroban_classic_account_authentication-default_account_with_additional_signer-wrong_signature_type", "a8d1cb44f470573f" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-autorestore-across_stages", "a904442b4503e607" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_8", "a94afbf4a15753e8" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-uninitialized_map", "a9af3a29cf25b4d2" : "Soroban_authorization-classic_and_custom_accounts-single_call-unused_auth_entries-failure_with_long_malformed_function_name", - "aa167c6283a763db" : "contract_storage-protocol_version_28-footprint-unused_readWrite_key", "aa53f5c640a1c97e" : "resource_fee_exceeds_uint32-self_fee_bump-success-low_inclusion_fee", - "aa722688a0fedfc0" : "refund_account_merged-protocol_version_26", + "aaf3b23c21536d24" : "Soroban_non-refundable_resource_fees_are_stable-protocol_version_29", "ab3bce4773581342" : "Soroban_authorization-custom_account-deep_tree-unused_auth_entries-failure_with_long_malformed_function_name", - "ab898f0b7ce30529" : "classic_phase_bumps_sequence_of_soroban_source_account-protocol_version_26", "abe9daab6e04747a" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_0", "ac9dbf09c7cb19e8" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_18", "ad00903073e6c1d2" : "Soroban_authorization-classic_account_with_weights-wide_tree-failure_for_tree_with_missing_node", "ad19485cea9fa38c" : "read-only_bumps_across_threads", + "ae37ace1fbc924e5" : "basic_contract_invocation-protocol_version_29-correct_invocation", "ae601103b9e4498d" : "Soroban_authorization-classic_and_custom_accounts-deep_tree-failure_for_tree_with_missing_node", "aec6a7cfd3c1af73" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_5", - "aedd27a8939d199b" : "basic_contract_invocation-protocol_version_28-incorrect_invocation_parameters-too_many_parameters", "aef8c4cf49c5cce1" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_8", "af54a98dbdd88b52" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-TTL_entry", + "af5af20b7b9fedf3" : "basic_contract_invocation-protocol_version_29-malformed_function_names", "afa256621921b22e" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-issuer_trustline", "afe35bda9ebb3f2c" : "Soroban_authorization-multisig_classic_account-deep_tree-failure_for_tree_with_missing_node", "b045bf491859a6b8" : "Soroban_authorization-custom_account-deep_tree-no_auth", "b064c60719fa9bec" : "Soroban_footprint_validation-classic_entries_counted_as_disk-read_write-max", - "b07277fd54b0b7bc" : "Soroban_delegated_signer_authentication-single_delegate-empty_top-level_enum_signature", "b136f91677750cd4" : "contract_errors_cause_transaction_to_fail-err_eek", "b149a7eb981b5ed6" : "autorestore_contract_instance-restore_with_no_writes-classic_entries_count_towards_read_bytes-classic_keys_count_towards_read_bytes", - "b19f5bf32940c80d" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-restore,_delete_value_in_next_tx-across_stages", "b1d5a1bda5b51e5b" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_17", - "b20d08c08e32c884" : "state_archival_operation_errors-protocol_version_28-restore_operation-exceeded_readBytes", - "b295e5d7cd1ec038" : "fee_bump_refund_account_merged-protocol_version_28", + "b1ea5e0a15f73c18" : "state_archival-protocol_version_29-max_TTL_extension-extend_host_function_temp", "b3082e3bcd3a078c" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-autorestore-same_stage", "b3101bb9f07292f5" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_1", "b3437be97f124777" : "Soroban_authorization-classic_and_custom_accounts-deep_tree-success", "b34f3ecaf4fdb062" : "Soroban_classic_account_authentication-default_account-success", "b3f7fce5e8492f2e" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_16", "b4148adbbba04047" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-restore,_delete,_restore-same_stage", - "b416ed58e16fa07d" : "state_archival-protocol_version_28-conditional_TTL_extension-absolute_refund", - "b457c6cb2cf0da70" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-autorestore,_delete_value_in_next_tx-same_stage", "b5a503183a69e95f" : "contract_errors_cause_transaction_to_fail-ok_err", + "b5db087139748e93" : "Soroban_classic_account_authentication-default_account-wrong_signature_key_type", "b5e418a8a8cf65b9" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_2", "b652542975ff5560" : "persistent_entry_archival-eviction-key_accessible_after_restore-restore_op", - "b6ce7aade1aed1e3" : "state_archival_operation_errors-protocol_version_26-extend_operation-success", - "b71e067496723cb3" : "multiple_soroban_ops_in_a_tx-protocol_version_26-without_fee_bump", - "b74618989cc0605c" : "Soroban_non-refundable_resource_fees_are_stable-protocol_version_26", "b7db472d275c4797" : "autorestore_contract_instance-restore_with_no_writes-insufficient_read_bytes", - "b808b59ac14049b2" : "state_archival-protocol_version_26-max_TTL_extension-extend_host_function_temp", "b9862c0b86a145aa" : "Soroban_authorization-default_classic_account-single_call-unused_auth_entries-failure_with_long_malformed_function_name", - "b9a60ebb460b7c41" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-restore,_delete_value_in_next_tx-same_stage", "b9bdda6eada575ea" : "Soroban_authorization-classic_and_custom_accounts-wide_tree-success", "ba8824d29063376f" : "resource_fee_exceeds_uint32-other_account_fee_bump-success-inclusion_fee_exceeds_uint32", "ba9e85782489d4b3" : "Soroban_authorization-default_classic_account-single_call-unused_auth_entries-success_with_arbitrary_valid_function", "baa71b7a006a3951" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-TTL_entry", + "baeae6dfbb97ae8c" : "archival_meta-protocol_version_29-persistent_entry_meta-entry_evicted-eviction_meta-restore,_update_value_in_next_tx-across_stages", "bb10b7a54991da41" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_3", - "bb90c142fc6d2475" : "state_archival_operation_errors-protocol_version_28-restore_operation-insufficient_refundable_fee", - "bc6d1b280111560a" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-autorestore", - "bca8245505310e26" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-restore,_update_value_in_next_tx-across_stages", - "bd0e2c7d9d444eb7" : "state_archival_operation_errors-protocol_version_26-extend_operation-readBytes_limit", + "bc4e53b6b14ed910" : "Soroban_classic_account_authentication-account_with_required_multisig-wrong_signature_key_type", "bd7ec9becd2cf279" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_9", "bdf21d276e44df51" : "Soroban_classic_account_authentication-account_with_required_multisig-success", "bdfcd5f448d7a9cd" : "Soroban_authorization-multisig_classic_account-deep_tree-unused_auth_entries-failure_with_malformed_function_name", "be52cd7f42814b0a" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-autorestore,_delete,_then_create-across_stages", "be6ebb5f038aa456" : "Soroban_classic_account_authentication-account_with_too_high_med_threshold_not_authenticated", - "be8c8e64b30e9fc1" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-restore,_update_value_in_next_tx-across_stages", "be9fcc614f398cf3" : "Soroban_footprint_validation-invokeHostFunction-readOnly-contract_data_key_above_limit", "bec5319840022194" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_11", "bec915835775f88a" : "Soroban_classic_account_authentication-default_account_with_additional_signer-wrong_signature_order", "beed566485392053" : "Soroban_footprint_validation-autorestore_footprint-duplicate_entries", "beee405585556b28" : "Soroban_authorization-custom_account-wide_tree-unused_auth_entries-failure_with_long_malformed_function_name", "bf27f88df8fb68c5" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-missing_signature_field", - "bf6b1019d0b7569d" : "Soroban_delegated_signer_authentication-single_delegate-wrong_top-level_signature_type", - "bf98f153a8789f78" : "state_archival_operation_errors-protocol_version_26-extend_operation-too_large_extension", + "bf572f41777a2153" : "state_archival-protocol_version_29-contract_storage_archival-extendOp_when_currentLedger_==_liveUntilLedger", "bfa396d5747102ff" : "Soroban_authorization-multisig_classic_account-single_call-success", "bfab28e80790dd46" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_22", "c03bbceaf1428236" : "readonly_ttl_bumps_across_threads_and_stages-multiple_readonly_ttl_bumps_across_stages", - "c06470e7654bc2b1" : "state_archival-protocol_version_28-max_TTL_extension-extend_host_function_temp", - "c07830e846670e5d" : "merge_account_then_SAC_payment_scenarios-protocol_version_26-SAC_payment_from_the_merged_account", - "c0e8033d91a1c841" : "state_archival-protocol_version_28-max_TTL_extension-extend_host_function_persistent", "c18c912409884beb" : "Soroban_classic_account_authentication-default_account_with_additional_signer-empty_map", "c1b1663060d151c0" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_6", "c1b4226571cd3ae1" : "Soroban_authorization-multisig_classic_account-deep_tree-no_auth", "c1c7ac4fa5ae147c" : "Soroban_classic_account_authentication-duplicate_signature_not_allowed_with_multisig_and_insufficient_threshold", "c252cebb25294eab" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_6", - "c255cd77235ad3c4" : "basic_contract_invocation-protocol_version_26-insufficient_read_bytes_after_p23", "c2ac55826ca7e6de" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-autorestore,_delete,_then_has-across_stages", "c2c932cf464209f1" : "Soroban_footprint_validation-invokeHostFunction-readWrite-config_setting", - "c312c5d7aa1dfb38" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_deleted,_then_recreate_with_new_TX-across_stages", - "c36cbaffe2709df8" : "contract_storage-protocol_version_26-Same_ScVal_key,_different_types", + "c3497f7f5230cd85" : "state_archival-protocol_version_29-max_TTL_extension-extend_host_function_persistent", "c3962c4a93291d74" : "Soroban_authorization-classic_account_with_weights-deep_tree-success_for_tree_with_extra_nodes", "c3bb0eae31d31633" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_9", - "c443a7bba49e0e10" : "state_archival_operation_errors-protocol_version_26-extend_operation-insufficient_refundable_fee", - "c455542f23c8635a" : "refund_still_happens_on_bad_auth-protocol_version_26", - "c598120b02e657a7" : "fee_bump_inner_account_merged_then_used_as_inner_account_on_soroban_fee_bump-protocol_version_28", "c5d57c89c419e4af" : "Soroban_authorization-multisig_classic_account-single_call-unused_auth_entries-failure_with_long_malformed_function_name", "c5f89e8c3c843590" : "resource_fee_exceeds_uint32-other_account_fee_bump-success-inclusion_fee_and_refund_exceed_uint32", - "c645124e1d97c334" : "state_archival-protocol_version_28-contract_storage_archival-entry_accessible_when_currentLedger_==_liveUntilLedger", - "c6aec74706bb6238" : "archival_meta-protocol_version_28-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_deleted,_then_recreate_with_new_TX-across_stages", "c6c3d9865a04db5b" : "Soroban_classic_account_authentication-account_with_weights-incomplete_key", "c6d25066860431e0" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_8", - "c81666a24e4770bd" : "contract_storage-protocol_version_26-read_bytes_limit_enforced", - "c866aa143d53bf2c" : "basic_contract_invocation-protocol_version_28-incorrect_invocation_parameters-too_few_parameters", + "c6fa3d29d6c09229" : "fee_bump_refund_account_merged-protocol_version_29", "c89523486b59f106" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_2", "c8b43ab94c4aada0" : "resource_fee_exceeds_uint32-self_fee_bump-failure-fee_bump_fee_is_not_sufficient_to_cover_the_resource_fee", + "c8de372c41ca8c93" : "contract_storage-protocol_version_29-footprint-unused_readWrite_key", "c8f28ce0094c5916" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_3", + "c91fd23bca6a56a0" : "basic_contract_invocation-protocol_version_29-insufficient_refundable_resource_fee", "c922fea348665a87" : "overly_large_soroban_values_are_handled_gracefully-store_value", "c9844b91db3ef0b0" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_1", "c99364d18b82557b" : "resource_fee_exceeds_uint32-other_account_fee_bump-success-low_inclusion_fee", @@ -592,15 +522,14 @@ "c9a9eaa405e6134c" : "failure_diagnostics", "c9dbd32afe107afb" : "Soroban_authorization-classic_and_custom_accounts-wide_tree-success_with_duplicate_auth_entries", "c9eca15bdeb9bf48" : "complex_contract-diagnostics_enabled", + "c9f9a266e693ab37" : "fee_bump_inner_account_merged_then_used_as_inner_account_on_soroban_fee_bump-protocol_version_29", "ca44bb06db470a22" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-config_setting", "ca81ee3779279e5f" : "Soroban_authorization-custom_account-single_call-incorrect_signature_payload", "ca96297c5d814422" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_5", "cab764de9b6ee4b7" : "Soroban_authorization-custom_account-deep_tree-success_for_tree_with_extra_nodes", "cb9097b6c1c38bdd" : "Soroban_classic_account_authentication-account_with_weights-empty_map", - "cc8e5617818c25e6" : "state_archival-protocol_version_26-contract_storage_archival-TTL_enforcement-restoreOp_skips_when_currentLedger_==_liveUntilLedger", "cc952a3d07337931" : "Soroban_authorization-custom_account-deep_tree-failure_for_tree_with_missing_node", "ccda2d8c73bceae6" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_2", - "cd577b89ed04d414" : "refund_to_source_in_tx1_and_SAC_transfer_from_same_account_in_tx2-protocol_version_26-success", "cd9b67cc851ef13d" : "autorestore_contract_instance-missing_archived_key_index", "cdc0fbbed34915f1" : "Soroban_classic_account_authentication-default_account-empty_vector_signature", "ce5735da86b32673" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-restore,_delete,_restore-same_stage", @@ -609,58 +538,47 @@ "ce8d1ee97a0d686d" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_13", "cebea90af92b39d2" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-success", "ced5e149f8263218" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_6", - "cf141d5e0e528a1f" : "state_archival_operation_errors-protocol_version_28-restore_operation-exceeded_writeBytes", "cf226151fb04c10f" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_7", "cf2d86dd85a2417a" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-liquidity_pool", "cf339a74cb38c15b" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-success_with_credentials_v2", - "d0994aa43a850a1a" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-autorestore,_delete_value_in_next_tx-across_stages", "d10f1da9f73be05f" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_3", "d1522d4667822bc2" : "Native_stellar_asset_contract", + "d152ab0bc07cb1d1" : "state_archival-protocol_version_29-contract_storage_archival-TTL_enforcement-entry_accessible_when_currentLedger_==_liveUntilLedger", "d15d2c79a5a0afad" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-restore,_delete,_restore-delete_in_same_stage_as_second_restore", "d192ab90b43eeb6a" : "Soroban_authorization-default_classic_account-single_call-success_with_duplicate_auth_entries", - "d1f5d115b26f2c2d" : "basic_contract_invocation-protocol_version_26-malformed_function_names", + "d20703fbc5a3ceaf" : "merge_account_then_SAC_payment_scenarios-protocol_version_29-SAC_payment_from_the_merged_account", "d2284024d86a9f4a" : "autorestore_contract_instance-restore_with_no_writes-classic_entries_count_towards_read_bytes-insufficient_read_bytes", - "d2ef4dd8a3326b1f" : "state_archival-protocol_version_26-contract_storage_archival-entry_accessible_when_currentLedger_==_liveUntilLedger", "d2fdf5f43cd795da" : "parallel_restore_and_extend_op", "d312c2e2a5a50ba8" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_19", - "d3e7a4929af1352e" : "Soroban_delegated_signer_authentication-single_delegate-uninitialized_top-level_vector_signature", + "d3b018e3b25cc49e" : "archival_meta-protocol_version_29-persistent_entry_meta-entry_evicted-eviction_meta-autorestore", "d3ee1065ef42391b" : "Soroban_authorization-classic_and_custom_accounts-single_call-failure_for_tree_with_missing_node", "d3fa9dd1a7ce68e3" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-autorestore,_delete,_then_has-same_stage", "d481fd33556741b2" : "Soroban_footprint_validation-invokeHostFunction-readOnly-issuer_trustline", "d4d73e492b2aa30e" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_6", "d4e4024caa6dbbc4" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_20", - "d51772a787c99bc1" : "merge_account_then_SAC_payment_scenarios-protocol_version_28-SAC_payment_to_the_merged_account", "d580226d468cd36a" : "contract_constructor_support-constructor_with_no_arguments-v2_host_function,_v2_auth", "d5d3d3dd818a7366" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-manual_restore-across_stages", "d604f76431c95e5e" : "contract_constructor_support-constructor_with_no_arguments-v2_host_function,_v1_auth", "d697bb21e32f6aef" : "autorestore_from_another_contract", - "d7c375608e942b41" : "archival_meta-protocol_version_28-persistent_entry_meta-restore_expired_but_not_evicted-manual_restore", - "d7e07d73417f717c" : "contract_storage-protocol_version_28-read_bytes_limit_enforced", + "d70144007a3516e6" : "basic_contract_invocation-protocol_version_29-insufficient_instructions", "d7ea63b86adedc73" : "Soroban_custom_account_authentication-wrong_signature_type", - "d85c6ee668e4f7cd" : "trustline_deletion_then_SAC_payment-protocol_version_28", - "d888d3403368dc50" : "state_archival_operation_errors-protocol_version_26-restore_operation-exceeded_readBytes", "d8cb2c3e8c67a529" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_17", - "d8f18264015ca76d" : "state_archival_operation_errors-protocol_version_26-restore_operation-insufficient_refundable_fee", - "d913ab5d872a03f8" : "state_archival-protocol_version_26-max_TTL_extension-extension_op", "d927cb7228c4823f" : "buying_liabilities_plus_refund_is_greater_than_INT64_MAX", "da22a08dbb5b6591" : "Soroban_classic_account_authentication-default_account-uninitialized_vector_signature", "da9288450114401d" : "Soroban_footprint_validation-classic_entries_counted_as_disk-read_only-max", - "dad5f5e846b5ed75" : "state_archival-protocol_version_28-TTL_threshold", + "daba09f2a05761a7" : "refund_is_sent_to_fee-bump_source-protocol_version_29", "db09947c9187fb8f" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_24", "dbade792400bbd36" : "Soroban_authorization-classic_account_with_weights-wide_tree-success_with_duplicate_auth_entries", "dbe020e6910c1bb8" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_4", "dc8cff5869997641" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_10", "dcc73c9629f5a427" : "Soroban_classic_account_authentication-account_with_weights-wrong_key_name", + "de0050023d54734e" : "refund_to_source_in_tx1_and_SAC_transfer_from_same_account_in_tx2-protocol_version_29-success", "deaef712a256815b" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-claimable_balance", "debccecc0064889e" : "Soroban_classic_account_authentication-default_account_with_additional_signer-wrong_key_type", - "df5e46d7a306de43" : "Soroban_delegated_signer_authentication-deep_delegate_tree-within_depth_limit", - "df7bbe01e8ddcfb1" : "Trustline_stellar_asset_contract-protocol_version_28", "df8ad69b2e875c3e" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_15", "dfd8d97545a410c4" : "charge_rent_fees_for_storage_resize-resize_with_no_extend-success", - "dff72321aec96f70" : "merge_account_then_SAC_payment_scenarios-protocol_version_26-SAC_payment_with_merged_account_as_source", "e0180b51b72fe65a" : "Soroban_custom_account_authentication-empty_bytes_signature", "e095dd79e65ba973" : "Soroban_classic_account_authentication-account_with_weights-wrong_field_order", - "e0f09f1dcf955676" : "merge_account_then_SAC_payment_scenarios-protocol_version_26-SAC_payment_to_the_merged_account", "e17007564165c691" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-manual_restore-same_stage", "e1b3a1546fcd4160" : "Soroban_authorization-multisig_classic_account-single_call-incorrect_signature_payload", "e1bbd873f50bb8a5" : "persistent_entry_archival-eviction-restore_with_nonexistent_key", @@ -669,100 +587,84 @@ "e260a8f0f8749e3c" : "Soroban_classic_account_authentication-account_with_weights-missing_key_field", "e267116f1684f812" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_5", "e26ad1849453e9f9" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-claimable_balance", - "e2c37e3d0ece05a9" : "state_archival-protocol_version_28-contract_storage_archival-TTL_enforcement-restoreOp_skips_when_currentLedger_==_liveUntilLedger", "e2df180a92959730" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-offer", - "e3ba82a695ba7439" : "contract_storage-protocol_version_28-successful_storage_operations", - "e3be2a388e711b29" : "refund_to_source_in_tx1_and_SAC_transfer_from_same_account_in_tx2-protocol_version_28-failure", "e3fb4fe5cfe74d62" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_16", "e436eae1b108bf65" : "Module_cache_miss_on_immediate_execution-same_ledger_upload_and_execution", - "e473a38c1e8f7e01" : "Soroban_delegated_signer_authentication-single_delegate-uninitialized_delegate_vector_signature", "e48f578b74a713cb" : "parallel_txs-multi_RO_extensions_with_a_single_RW_extension_in_a_single_stage_and_cluster._Run_4", "e4a693d475f137c9" : "Soroban_footprint_validation-soroban_entries-in-memory-max_+_1", - "e4a7e26b2bd75a51" : "state_archival-protocol_version_26-contract_storage_archival-extendOp_when_currentLedger_==_liveUntilLedger", "e4b75527318c3f4b" : "Soroban_authorization-default_classic_account-deep_tree-unused_auth_entries-success_with_arbitrary_valid_function", - "e58ecf019fb8ef4c" : "classic_phase_sets_master_weight_of_soroban_source_account_to_0-protocol_version_26", + "e4f05a1dabec0d59" : "contract_storage-protocol_version_29-successful_storage_operations", "e592b8e0d0c064f2" : "Soroban_authorization-classic_account_with_weights-wide_tree-no_auth", "e595ac8447e8be48" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_10", - "e60437880d9a5342" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-manual_restore", "e65bc9d3ad40b232" : "Soroban_classic_account_authentication-account_with_required_multisig-wrong_field_order", "e663576331e88873" : "Soroban_classic_account_authentication-account_with_weights-wrong_key_type", "e668e4a1eb385caf" : "Soroban_authorization-classic_account_with_weights-wide_tree-unused_auth_entries-success_with_arbitrary_valid_function", "e6bd97c7e61b9c20" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-data", - "e7bc3224128af431" : "Soroban_delegated_signer_authentication-single_delegate-empty_delegate_enum_signature", "e7c93b4b2532635a" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-contract_data_key_above_limit", "e847e07471896a84" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-liquidity_pool", - "e8e3a93f6508722e" : "contract_storage-protocol_version_26-successful_storage_operations", - "e8e94108c4e35442" : "refund_to_source_in_tx1_and_SAC_transfer_from_same_account_in_tx2-protocol_version_26-failure", "e970c80dd6512e2a" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-issuer_trustline", "e978d88c40ed87f1" : "autorestore_with_storage_resize-autorestore_with_rent_bump", "e999346808076671" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_8", - "e9d2d4153e77f33a" : "refund_is_sent_to_fee-bump_source-protocol_version_28", "e9d3d132208dd2f6" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_20", - "ea4a1267d6c3a211" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-manual_restore", "ea940d6997fea54c" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_19", "eaa4c6f56373a470" : "Soroban_authorization-custom_account-single_call-success_for_tree_with_extra_nodes", "eadfba1154674062" : "Soroban_classic_account_authentication-default_account-incomplete_key", + "ec228ae524fb95c9" : "archival_meta-protocol_version_29-persistent_entry_meta-restore_expired_but_not_evicted-autorestore_with_deleted,_then_recreate_with_new_TX-same_stage", "ec29598b16b053bc" : "Soroban_footprint_validation-invokeHostFunction-readOnly-valid", "ecd35a6539ca78d9" : "Soroban_authorization-multisig_classic_account-wide_tree-success", "ecee0b3efb0526e4" : "resource_fee_exceeds_uint32-self_fee_bump-failure-fee_bump_fee_is_not_sufficient_to_cover_the_resource_fee_with_low_resource_fee", "ed348cde4f3127e8" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_14", "ed39ca2daf59835d" : "Soroban_authorization-classic_and_custom_accounts-deep_tree-unused_auth_entries-failure_with_malformed_function_name", "ed4083446fa69ab7" : "contract_errors_cause_transaction_to_fail-val", - "ed4298d1c34e0b79" : "Soroban_delegated_signer_authentication-single_delegate-bad_payload", + "ed458e0fae1f87be" : "archival_meta-protocol_version_29-persistent_entry_meta-entry_evicted-eviction_meta-restore,_delete_value_in_next_tx-same_stage", "ed66735578635c64" : "parallel_txs-internal_error", "eda22224ec5ac6ea" : "Soroban_authorization-default_classic_account-single_call-success_for_tree_with_extra_nodes", "eda3dfe5b6940848" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_3", "eda811ebbd672d8d" : "autorestore_contract_instance-manual_restore", "edeef19bce43c3da" : "Soroban_classic_account_authentication-account_with_weights_and_additional_signer-wrong_signature_order", - "edf8d15f65abdd7c" : "basic_contract_invocation-protocol_version_26-incorrect_footprint", "ee0f9fb5465b72ad" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-contract_data_key_above_limit", "ee277035f023392a" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-config_setting", "ee2f02eb252fcc27" : "Soroban_authorization-custom_account-wide_tree-failure_for_tree_with_missing_node", "ee3472dd29024e40" : "Soroban_classic_account_authentication-additional_signer_with_insufficient_weight_not_authenticated", "eee17f706f7deb9a" : "Soroban_footprint_validation-invokeHostFunction-readOnly-invalid_asset_9", "ef37aff90281f523" : "autorestore_contract_instance-restore_with_no_writes-classic_entries_count_towards_read_bytes-Success", - "ef78b3de24d812f7" : "basic_contract_invocation-protocol_version_26-incorrect_invocation_parameters-malformed_parameters", "ef79595a3c250a3a" : "autorestore_with_storage_resize-manual_restore-extend_after_resize", "ef80e6a78893c56c" : "Soroban_authorization-classic_and_custom_accounts-wide_tree-incorrect_signature_payload", "efc0bd51b5b29e40" : "Soroban_authorization-classic_account_with_weights-single_call-success", "efd47464023e9e55" : "Stellar_asset_contract_transfer_with_CAP-67_address_types-custom_asset", "efe4261cc946881e" : "Soroban_authorization-default_classic_account-wide_tree-unused_auth_entries-success_with_arbitrary_valid_function", - "f021726e70bb6c48" : "multiple_soroban_ops_in_a_tx-protocol_version_28-with_fee_bump", "f0638599b34ec8a1" : "contract_errors_cause_transaction_to_fail-err_err", - "f0ae5731df64cbe0" : "archival_meta-protocol_version_26-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_updated_value", "f0e8fbaf2d4bdbcd" : "Soroban_authorization-classic_and_custom_accounts-wide_tree-unused_auth_entries-failure_with_malformed_function_name", "f168c76aba835145" : "put_in_first_stage_and_then_update_value_in_second_stage", "f17be5b4b66ea006" : "Soroban_authorization-classic_account_with_weights-deep_tree-incorrect_signature_payload", "f1b13fa29eb12ca4" : "Soroban_authorization-default_classic_account-single_call-incorrect_signature_payload", - "f1f574cc8ac44007" : "non-fee_source_account_is_recipient_of_payment_in_both_classic_and_soroban-protocol_version_26", "f1fc663779e87b60" : "Soroban_authorization-default_classic_account-deep_tree-failure_for_tree_with_missing_node", - "f2530b53ad33fc1e" : "validate_return_values-protocol_version_26", "f26b5de9280bbacd" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_0", "f27c6aef8abbd723" : "Soroban_footprint_validation-extendOp-invalid_readOnly_keys-invalid_asset_15", "f287aa63bbdb6ba8" : "Soroban_classic_account_authentication-account_with_weights-incomplete_signature", + "f2cef3f027b2550b" : "state_archival_operation_errors-protocol_version_29-extend_operation-readBytes_limit", "f2d73eb7f022f0cb" : "resource_fee_exceeds_uint32-other_account_fee_bump-failure-fee_bump_fee_is_not_sufficient_to_cover_the_resource_fee_with_high_inclusion_fee", "f2eb7607bcc37fbb" : "Soroban_footprint_validation-soroban_entries-in-memory-max", "f3230f7682e7de69" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_7", "f43fbd97002badc6" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_15", + "f4920266273226bc" : "archival_meta-protocol_version_29-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_deleted,_then_recreate_with_new_TX-across_stages", "f4f351372abade91" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_14", "f506528d32fd0652" : "Soroban_authorization-multisig_classic_account-wide_tree-no_auth", "f538b7222e421b51" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_0", "f57219130594aa83" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-failed_auto_restores_and_manual_restores_across_stages-two_failed_restores_and_a_successful_restore_in_the_same_stage", "f5d072a9fb1463da" : "persistent_entry_archival-eviction-key_accessible_after_restore_in_same_ledger-autorestore,_delete,_then_create-across_stages", - "f5d58a30f834542b" : "archival_meta-protocol_version_26-persistent_entry_meta-restore_expired_but_not_evicted-restore,_delete_value_in_next_tx-same_stage", - "f709a2d8db627467" : "basic_contract_invocation-protocol_version_26-non-existent_contract_id", - "f7b2eaed80de4146" : "state_archival-protocol_version_26-contract_instance_and_Wasm_archival-restore_contract_instance_and_wasm", + "f639c592b8caf7eb" : "contract_storage-protocol_version_29-footprint-no_footprint", "f7ca893de81e0719" : "Soroban_custom_account_authentication-uninitialized_vector_signature", "f7e97011ed711385" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-failed_auto_restores_and_manual_restores_across_stages-two_failed_restores_across_stages", "f7f94eb704afa841" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_12", "f80ab46aebfceee5" : "settings_upgrade-from_min_settings", - "f816b3efbdfa3b79" : "refund_account_merged-protocol_version_28", "f85719dc2181f545" : "Soroban_authorization-classic_and_custom_accounts-single_call-incorrect_signature_payload", "f860f4c299f7c690" : "Soroban_footprint_validation-invokeHostFunction-readOnly-TTL_entry", "f8630c82e2e21ee3" : "Soroban_authorization-custom_account-wide_tree-unused_auth_entries-failure_with_malformed_function_name", - "f8cddbe43429eb31" : "contract_storage-protocol_version_28-footprint-RO_footprint_for_RW_entry", + "f8b28b729df1dbc2" : "classic_payment_to_soroban_fee_bump_account-protocol_version_29", "f98d63a422dc7316" : "Soroban_footprint_validation-restoreOp-invalid_readWrite_keys-invalid_asset_10", "fa2ba8e3c2560e56" : "Soroban_authorization-default_classic_account-wide_tree-unused_auth_entries-failure_with_long_malformed_function_name", + "fa2d83db51a98600" : "basic_contract_invocation-protocol_version_29-incorrect_invocation_parameters-malformed_parameters", "fa3f6b4664496f4e" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-offer", "fa4b194dcfa3785c" : "persistent_entry_archival-expiration_without_eviction-key_accessible_after_restore_in_same_ledger-autorestore,_delete,_then_create-same_stage", "fa54dfbe49ee7aab" : "Soroban_footprint_validation-invokeHostFunction-readWrite-invalid_asset_0", @@ -772,13 +674,13 @@ "fbec9a9e0db4dfc9" : "charge_rent_fees_for_storage_resize-resize_and_extend-success", "fc180de263c6378d" : "resource_fee_exceeds_uint32-self_fee_bump-success-inclusion_fee_exceeds_uint32", "fc65c51cb0a307a8" : "resource_fee_exceeds_uint32-self_fee_bump-failure-insufficient_fee_bumper_balance", - "fca3eb413e17400c" : "contract_storage-protocol_version_26-write_bytes_limit_enforced", "fcc1d92eb9aefea4" : "Soroban_classic_account_authentication-default_account_with_additional_signer-wrong_signature_name", "fcc7940f9747ef41" : "Soroban_classic_account_authentication-account_with_weights-wrong_signature_name", "fdc0726b33a30b71" : "delete_in_first_stage_extend_in_second_stage", + "fe50a5e9f82ab4a3" : "archival_meta-protocol_version_29-persistent_entry_meta-entry_evicted-eviction_meta-autorestore_with_updated_value", + "fe5913259b30b9bf" : "archival_meta-protocol_version_29-persistent_entry_meta-entry_evicted-eviction_meta-manual_restore", "fecb8c7203544f20" : "Soroban_footprint_validation-restoreOp-invalid_readOnly_keys-invalid_asset_20", "ff17a6200f26a9e2" : "Soroban_authorization-custom_account-deep_tree-incorrect_signature_payload", "ff35b35da8c78163" : "Soroban_classic_account_authentication-account_with_required_multisig-wrong_signature_type", - "ff665fb4708c864d" : "merge_account_then_SAC_payment_scenarios-protocol_version_28-SAC_payment_with_merged_account_as_source", "ffde1b7463c8c452" : "Soroban_footprint_validation-extendOp-invalid_readWrite_keys-invalid_asset_12" } diff --git a/test-lcm-next/MergeTests/529b4c5987d8dacc.xdr b/test-lcm-next/MergeTests/529b4c5987d8dacc.xdr new file mode 100644 index 0000000000..8c793ba8ef Binary files /dev/null and b/test-lcm-next/MergeTests/529b4c5987d8dacc.xdr differ diff --git a/test-lcm-next/MergeTests/d5cacbf63b606f18.xdr b/test-lcm-next/MergeTests/d5cacbf63b606f18.xdr deleted file mode 100644 index 87fdfd07de..0000000000 Binary files a/test-lcm-next/MergeTests/d5cacbf63b606f18.xdr and /dev/null differ diff --git a/test-lcm-next/MergeTests/index.json b/test-lcm-next/MergeTests/index.json index 33d7011fd8..e874534625 100644 --- a/test-lcm-next/MergeTests/index.json +++ b/test-lcm-next/MergeTests/index.json @@ -1,4 +1,7 @@ { - "689f95b5f77609d7" : "merge_event_reconciler-protocol_version_28", - "d5cacbf63b606f18" : "merge_event_reconciler-protocol_version_26" + "!cfg protocol version" : 29, + "!rng seed" : 12345, + "!test all versions" : false, + "!versions to test" : [ 29 ], + "529b4c5987d8dacc" : "merge_event_reconciler-protocol_version_29" } diff --git a/test-lcm-next/OfferTests/067f5fa9f796ef3b.xdr b/test-lcm-next/OfferTests/067f5fa9f796ef3b.xdr new file mode 100644 index 0000000000..19eafef0e4 Binary files /dev/null and b/test-lcm-next/OfferTests/067f5fa9f796ef3b.xdr differ diff --git a/test-lcm-next/OfferTests/d335812f2158f0bf.xdr b/test-lcm-next/OfferTests/d335812f2158f0bf.xdr new file mode 100644 index 0000000000..1006d51afb Binary files /dev/null and b/test-lcm-next/OfferTests/d335812f2158f0bf.xdr differ diff --git a/test-lcm-next/OfferTests/f7a7364752aecebb.xdr b/test-lcm-next/OfferTests/f7a7364752aecebb.xdr deleted file mode 100644 index f12a186a1b..0000000000 Binary files a/test-lcm-next/OfferTests/f7a7364752aecebb.xdr and /dev/null differ diff --git a/test-lcm-next/OfferTests/fd69a358c98c0b3e.xdr b/test-lcm-next/OfferTests/fd69a358c98c0b3e.xdr deleted file mode 100644 index 4c5047016f..0000000000 Binary files a/test-lcm-next/OfferTests/fd69a358c98c0b3e.xdr and /dev/null differ diff --git a/test-lcm-next/OfferTests/index.json b/test-lcm-next/OfferTests/index.json index dd54afc047..016eb593da 100644 --- a/test-lcm-next/OfferTests/index.json +++ b/test-lcm-next/OfferTests/index.json @@ -1,6 +1,8 @@ { - "1f16368433da1628" : "liabilities_match_created_offer-protocol_version_28-minimum_limits", - "457999c2534447ae" : "liabilities_match_created_offer-protocol_version_28-maximum_limits", - "f7a7364752aecebb" : "liabilities_match_created_offer-protocol_version_26-minimum_limits", - "fd69a358c98c0b3e" : "liabilities_match_created_offer-protocol_version_26-maximum_limits" + "!cfg protocol version" : 29, + "!rng seed" : 12345, + "!test all versions" : false, + "!versions to test" : [ 29 ], + "067f5fa9f796ef3b" : "liabilities_match_created_offer-protocol_version_29-maximum_limits", + "d335812f2158f0bf" : "liabilities_match_created_offer-protocol_version_29-minimum_limits" } diff --git a/test-lcm-next/PathPaymentTests/6b8dd7030be55252.xdr b/test-lcm-next/PathPaymentTests/1354d03620082f2e.xdr similarity index 65% rename from test-lcm-next/PathPaymentTests/6b8dd7030be55252.xdr rename to test-lcm-next/PathPaymentTests/1354d03620082f2e.xdr index b073b86974..4154d5f10d 100644 Binary files a/test-lcm-next/PathPaymentTests/6b8dd7030be55252.xdr and b/test-lcm-next/PathPaymentTests/1354d03620082f2e.xdr differ diff --git a/test-lcm-next/PathPaymentTests/4a5fb7ad61be37b1.xdr b/test-lcm-next/PathPaymentTests/4a5fb7ad61be37b1.xdr deleted file mode 100644 index 9e4f4abe51..0000000000 Binary files a/test-lcm-next/PathPaymentTests/4a5fb7ad61be37b1.xdr and /dev/null differ diff --git a/test-lcm-current/PathPaymentTests/a0d129f4a7f84481.xdr b/test-lcm-next/PathPaymentTests/7e6226a77fae06d5.xdr similarity index 62% rename from test-lcm-current/PathPaymentTests/a0d129f4a7f84481.xdr rename to test-lcm-next/PathPaymentTests/7e6226a77fae06d5.xdr index 81af755314..4f7828bd55 100644 Binary files a/test-lcm-current/PathPaymentTests/a0d129f4a7f84481.xdr and b/test-lcm-next/PathPaymentTests/7e6226a77fae06d5.xdr differ diff --git a/test-lcm-current/PathPaymentTests/4a5fb7ad61be37b1.xdr b/test-lcm-next/PathPaymentTests/9780b9c353954cd5.xdr similarity index 65% rename from test-lcm-current/PathPaymentTests/4a5fb7ad61be37b1.xdr rename to test-lcm-next/PathPaymentTests/9780b9c353954cd5.xdr index 9e4f4abe51..3f7a1a60e8 100644 Binary files a/test-lcm-current/PathPaymentTests/4a5fb7ad61be37b1.xdr and b/test-lcm-next/PathPaymentTests/9780b9c353954cd5.xdr differ diff --git a/test-lcm-next/PathPaymentTests/a0d129f4a7f84481.xdr b/test-lcm-next/PathPaymentTests/a0d129f4a7f84481.xdr deleted file mode 100644 index 81af755314..0000000000 Binary files a/test-lcm-next/PathPaymentTests/a0d129f4a7f84481.xdr and /dev/null differ diff --git a/test-lcm-next/PathPaymentTests/index.json b/test-lcm-next/PathPaymentTests/index.json index 2de655742a..e8d5db8bb1 100644 --- a/test-lcm-next/PathPaymentTests/index.json +++ b/test-lcm-next/PathPaymentTests/index.json @@ -1,8 +1,9 @@ { - "0dfe5423d3e1cac7" : "path_payment_uses_all_offers_in_a_loop-protocol_version_28-no_issuers_missing", - "4a5fb7ad61be37b1" : "path_payment_uses_all_offers_in_a_loop-protocol_version_26-inside_issuers_missing", - "6b8dd7030be55252" : "path_payment_uses_all_offers_in_a_loop-protocol_version_26-no_issuers_missing", - "a0d129f4a7f84481" : "path_payment_uses_all_offers_in_a_loop-protocol_version_26-outside_issuers_missing", - "a89a28b26308d91a" : "path_payment_uses_all_offers_in_a_loop-protocol_version_28-outside_issuers_missing", - "d61f4d7a7dfbf38d" : "path_payment_uses_all_offers_in_a_loop-protocol_version_28-inside_issuers_missing" + "!cfg protocol version" : 29, + "!rng seed" : 12345, + "!test all versions" : false, + "!versions to test" : [ 29 ], + "1354d03620082f2e" : "path_payment_uses_all_offers_in_a_loop-protocol_version_29-no_issuers_missing", + "7e6226a77fae06d5" : "path_payment_uses_all_offers_in_a_loop-protocol_version_29-outside_issuers_missing", + "9780b9c353954cd5" : "path_payment_uses_all_offers_in_a_loop-protocol_version_29-inside_issuers_missing" } diff --git a/test-lcm-next/TxEnvelopeTests/33b31b8901ef27e4.xdr b/test-lcm-next/TxEnvelopeTests/33b31b8901ef27e4.xdr index e4c219cb76..6c5766774a 100644 Binary files a/test-lcm-next/TxEnvelopeTests/33b31b8901ef27e4.xdr and b/test-lcm-next/TxEnvelopeTests/33b31b8901ef27e4.xdr differ diff --git a/test-lcm-current/TxEnvelopeTests/dffa13279a64a929.xdr b/test-lcm-next/TxEnvelopeTests/5a5798ba7b39a55c.xdr similarity index 77% rename from test-lcm-current/TxEnvelopeTests/dffa13279a64a929.xdr rename to test-lcm-next/TxEnvelopeTests/5a5798ba7b39a55c.xdr index 87a4fb868b..c54dece1c9 100644 Binary files a/test-lcm-current/TxEnvelopeTests/dffa13279a64a929.xdr and b/test-lcm-next/TxEnvelopeTests/5a5798ba7b39a55c.xdr differ diff --git a/test-lcm-current/TxEnvelopeTests/618e7e7d356e4a28.xdr b/test-lcm-next/TxEnvelopeTests/5dd8350657e154c9.xdr similarity index 77% rename from test-lcm-current/TxEnvelopeTests/618e7e7d356e4a28.xdr rename to test-lcm-next/TxEnvelopeTests/5dd8350657e154c9.xdr index 87a4fb868b..c54dece1c9 100644 Binary files a/test-lcm-current/TxEnvelopeTests/618e7e7d356e4a28.xdr and b/test-lcm-next/TxEnvelopeTests/5dd8350657e154c9.xdr differ diff --git a/test-lcm-next/TxEnvelopeTests/8a618c6bf87583c8.xdr b/test-lcm-next/TxEnvelopeTests/8a618c6bf87583c8.xdr deleted file mode 100644 index d64a3957de..0000000000 Binary files a/test-lcm-next/TxEnvelopeTests/8a618c6bf87583c8.xdr and /dev/null differ diff --git a/test-lcm-next/TxEnvelopeTests/c5e8f50805e3d276.xdr b/test-lcm-next/TxEnvelopeTests/c5e8f50805e3d276.xdr deleted file mode 100644 index d64a3957de..0000000000 Binary files a/test-lcm-next/TxEnvelopeTests/c5e8f50805e3d276.xdr and /dev/null differ diff --git a/test-lcm-next/TxEnvelopeTests/index.json b/test-lcm-next/TxEnvelopeTests/index.json index 3bbf72a682..e4d2fc7077 100644 --- a/test-lcm-next/TxEnvelopeTests/index.json +++ b/test-lcm-next/TxEnvelopeTests/index.json @@ -1,7 +1,9 @@ { + "!cfg protocol version" : 29, + "!rng seed" : 12345, + "!test all versions" : false, + "!versions to test" : [ 29 ], "33b31b8901ef27e4" : "txset_-_correct_apply_order", - "8a618c6bf87583c8" : "soroban_transaction_validation-protocol_version_26-footprint_limit-read-only_key_over_size_limit", - "ab82fe7cbed50696" : "soroban_transaction_validation-protocol_version_28-footprint_limit-read-only_key_over_size_limit", - "c5e8f50805e3d276" : "soroban_transaction_validation-protocol_version_26-footprint_limit-read-write_key_over_size_limit", - "ed0dbfc79ec4422d" : "soroban_transaction_validation-protocol_version_28-footprint_limit-read-write_key_over_size_limit" + "5a5798ba7b39a55c" : "soroban_transaction_validation-protocol_version_29-footprint_limit-read-only_key_over_size_limit", + "5dd8350657e154c9" : "soroban_transaction_validation-protocol_version_29-footprint_limit-read-write_key_over_size_limit" } diff --git a/test-lcm-next/TxResultsTests/07c95288d49d06df.xdr b/test-lcm-next/TxResultsTests/07c95288d49d06df.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-next/TxResultsTests/07c95288d49d06df.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/0818f91bf50e070d.xdr b/test-lcm-next/TxResultsTests/0818f91bf50e070d.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-next/TxResultsTests/0818f91bf50e070d.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/0d729404c018318b.xdr b/test-lcm-next/TxResultsTests/0d729404c018318b.xdr new file mode 100644 index 0000000000..9a551c298e Binary files /dev/null and b/test-lcm-next/TxResultsTests/0d729404c018318b.xdr differ diff --git a/test-lcm-next/TxResultsTests/0e6880e7cb7ad651.xdr b/test-lcm-next/TxResultsTests/0e6880e7cb7ad651.xdr new file mode 100644 index 0000000000..9a551c298e Binary files /dev/null and b/test-lcm-next/TxResultsTests/0e6880e7cb7ad651.xdr differ diff --git a/test-lcm-next/TxResultsTests/16ba80aa94255ef1.xdr b/test-lcm-next/TxResultsTests/16ba80aa94255ef1.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-next/TxResultsTests/16ba80aa94255ef1.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/17d5554d10b7a5e0.xdr b/test-lcm-next/TxResultsTests/17d5554d10b7a5e0.xdr deleted file mode 100644 index 2b7674fcc6..0000000000 Binary files a/test-lcm-next/TxResultsTests/17d5554d10b7a5e0.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/19ecf2d5254ee652.xdr b/test-lcm-next/TxResultsTests/19ecf2d5254ee652.xdr new file mode 100644 index 0000000000..9a551c298e Binary files /dev/null and b/test-lcm-next/TxResultsTests/19ecf2d5254ee652.xdr differ diff --git a/test-lcm-next/TxResultsTests/24ef1e6662b332ff.xdr b/test-lcm-next/TxResultsTests/24ef1e6662b332ff.xdr new file mode 100644 index 0000000000..9a551c298e Binary files /dev/null and b/test-lcm-next/TxResultsTests/24ef1e6662b332ff.xdr differ diff --git a/test-lcm-next/TxResultsTests/3d108537d65b8bf5.xdr b/test-lcm-next/TxResultsTests/3d108537d65b8bf5.xdr deleted file mode 100644 index bbdbe54a03..0000000000 Binary files a/test-lcm-next/TxResultsTests/3d108537d65b8bf5.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/3f0eb921dfe20cc0.xdr b/test-lcm-next/TxResultsTests/3f0eb921dfe20cc0.xdr new file mode 100644 index 0000000000..9a551c298e Binary files /dev/null and b/test-lcm-next/TxResultsTests/3f0eb921dfe20cc0.xdr differ diff --git a/test-lcm-next/TxResultsTests/46ae9d1460e628f2.xdr b/test-lcm-next/TxResultsTests/46ae9d1460e628f2.xdr deleted file mode 100644 index bbdbe54a03..0000000000 Binary files a/test-lcm-next/TxResultsTests/46ae9d1460e628f2.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/47000ffd70ff5d5f.xdr b/test-lcm-next/TxResultsTests/47000ffd70ff5d5f.xdr new file mode 100644 index 0000000000..9a551c298e Binary files /dev/null and b/test-lcm-next/TxResultsTests/47000ffd70ff5d5f.xdr differ diff --git a/test-lcm-next/TxResultsTests/482259c23e233fb4.xdr b/test-lcm-next/TxResultsTests/482259c23e233fb4.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-next/TxResultsTests/482259c23e233fb4.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/487c04a7f50995b7.xdr b/test-lcm-next/TxResultsTests/487c04a7f50995b7.xdr new file mode 100644 index 0000000000..9a551c298e Binary files /dev/null and b/test-lcm-next/TxResultsTests/487c04a7f50995b7.xdr differ diff --git a/test-lcm-next/TxResultsTests/4998ada39809f281.xdr b/test-lcm-next/TxResultsTests/4998ada39809f281.xdr new file mode 100644 index 0000000000..9a551c298e Binary files /dev/null and b/test-lcm-next/TxResultsTests/4998ada39809f281.xdr differ diff --git a/test-lcm-next/TxResultsTests/49eea85813585ff7.xdr b/test-lcm-next/TxResultsTests/49eea85813585ff7.xdr new file mode 100644 index 0000000000..9344e22ac4 Binary files /dev/null and b/test-lcm-next/TxResultsTests/49eea85813585ff7.xdr differ diff --git a/test-lcm-next/TxResultsTests/50fab18e89f39e30.xdr b/test-lcm-next/TxResultsTests/50fab18e89f39e30.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-next/TxResultsTests/50fab18e89f39e30.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/57d6c10084923631.xdr b/test-lcm-next/TxResultsTests/57d6c10084923631.xdr new file mode 100644 index 0000000000..9a551c298e Binary files /dev/null and b/test-lcm-next/TxResultsTests/57d6c10084923631.xdr differ diff --git a/test-lcm-next/TxResultsTests/5f006545d085e016.xdr b/test-lcm-next/TxResultsTests/5f006545d085e016.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-next/TxResultsTests/5f006545d085e016.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/63bb51706201f3dd.xdr b/test-lcm-next/TxResultsTests/63bb51706201f3dd.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-next/TxResultsTests/63bb51706201f3dd.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/6a9cfb8c5d126e8b.xdr b/test-lcm-next/TxResultsTests/6a9cfb8c5d126e8b.xdr new file mode 100644 index 0000000000..9a551c298e Binary files /dev/null and b/test-lcm-next/TxResultsTests/6a9cfb8c5d126e8b.xdr differ diff --git a/test-lcm-next/TxResultsTests/6c945c0f2f0bb66c.xdr b/test-lcm-next/TxResultsTests/6c945c0f2f0bb66c.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-next/TxResultsTests/6c945c0f2f0bb66c.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/6d35e5e378e70370.xdr b/test-lcm-next/TxResultsTests/6d35e5e378e70370.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-next/TxResultsTests/6d35e5e378e70370.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/6f1c62881b7eb1c3.xdr b/test-lcm-next/TxResultsTests/6f1c62881b7eb1c3.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-next/TxResultsTests/6f1c62881b7eb1c3.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/71485755b9760b39.xdr b/test-lcm-next/TxResultsTests/71485755b9760b39.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-next/TxResultsTests/71485755b9760b39.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/74e1165f01c57731.xdr b/test-lcm-next/TxResultsTests/74e1165f01c57731.xdr new file mode 100644 index 0000000000..ad6cc8a787 Binary files /dev/null and b/test-lcm-next/TxResultsTests/74e1165f01c57731.xdr differ diff --git a/test-lcm-next/TxResultsTests/79182a04e6cc7840.xdr b/test-lcm-next/TxResultsTests/79182a04e6cc7840.xdr new file mode 100644 index 0000000000..9a551c298e Binary files /dev/null and b/test-lcm-next/TxResultsTests/79182a04e6cc7840.xdr differ diff --git a/test-lcm-next/TxResultsTests/7a229ea3a1260cdd.xdr b/test-lcm-next/TxResultsTests/7a229ea3a1260cdd.xdr new file mode 100644 index 0000000000..2159a05686 Binary files /dev/null and b/test-lcm-next/TxResultsTests/7a229ea3a1260cdd.xdr differ diff --git a/test-lcm-next/TxResultsTests/7dc8e0e9e05ecfab.xdr b/test-lcm-next/TxResultsTests/7dc8e0e9e05ecfab.xdr new file mode 100644 index 0000000000..9a551c298e Binary files /dev/null and b/test-lcm-next/TxResultsTests/7dc8e0e9e05ecfab.xdr differ diff --git a/test-lcm-next/TxResultsTests/7e9662a6eeba15d1.xdr b/test-lcm-next/TxResultsTests/7e9662a6eeba15d1.xdr new file mode 100644 index 0000000000..9344e22ac4 Binary files /dev/null and b/test-lcm-next/TxResultsTests/7e9662a6eeba15d1.xdr differ diff --git a/test-lcm-next/TxResultsTests/84449ae27e590b14.xdr b/test-lcm-next/TxResultsTests/84449ae27e590b14.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-next/TxResultsTests/84449ae27e590b14.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/873836ddcb9f07f8.xdr b/test-lcm-next/TxResultsTests/873836ddcb9f07f8.xdr new file mode 100644 index 0000000000..9a551c298e Binary files /dev/null and b/test-lcm-next/TxResultsTests/873836ddcb9f07f8.xdr differ diff --git a/test-lcm-next/TxResultsTests/8e564daf846e0ced.xdr b/test-lcm-next/TxResultsTests/8e564daf846e0ced.xdr deleted file mode 100644 index bbdbe54a03..0000000000 Binary files a/test-lcm-next/TxResultsTests/8e564daf846e0ced.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/948ceaf5339cffae.xdr b/test-lcm-next/TxResultsTests/948ceaf5339cffae.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-next/TxResultsTests/948ceaf5339cffae.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/9c150d4ef9043b6b.xdr b/test-lcm-next/TxResultsTests/9c150d4ef9043b6b.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-next/TxResultsTests/9c150d4ef9043b6b.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/9ee29fce28df3df2.xdr b/test-lcm-next/TxResultsTests/9ee29fce28df3df2.xdr new file mode 100644 index 0000000000..9a551c298e Binary files /dev/null and b/test-lcm-next/TxResultsTests/9ee29fce28df3df2.xdr differ diff --git a/test-lcm-next/TxResultsTests/a140ada2f5afca0f.xdr b/test-lcm-next/TxResultsTests/a140ada2f5afca0f.xdr new file mode 100644 index 0000000000..9a551c298e Binary files /dev/null and b/test-lcm-next/TxResultsTests/a140ada2f5afca0f.xdr differ diff --git a/test-lcm-next/TxResultsTests/a7ad902854f944c7.xdr b/test-lcm-next/TxResultsTests/a7ad902854f944c7.xdr deleted file mode 100644 index bd5514b0fc..0000000000 Binary files a/test-lcm-next/TxResultsTests/a7ad902854f944c7.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/ad8ac4e77fd02430.xdr b/test-lcm-next/TxResultsTests/ad8ac4e77fd02430.xdr new file mode 100644 index 0000000000..9a551c298e Binary files /dev/null and b/test-lcm-next/TxResultsTests/ad8ac4e77fd02430.xdr differ diff --git a/test-lcm-next/TxResultsTests/affa492c6f3b5ee0.xdr b/test-lcm-next/TxResultsTests/affa492c6f3b5ee0.xdr deleted file mode 100644 index bbdbe54a03..0000000000 Binary files a/test-lcm-next/TxResultsTests/affa492c6f3b5ee0.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/b88e41c2210b9273.xdr b/test-lcm-next/TxResultsTests/b88e41c2210b9273.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-next/TxResultsTests/b88e41c2210b9273.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/b94e47cd7fd23d5b.xdr b/test-lcm-next/TxResultsTests/b94e47cd7fd23d5b.xdr deleted file mode 100644 index bbdbe54a03..0000000000 Binary files a/test-lcm-next/TxResultsTests/b94e47cd7fd23d5b.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/b9532e30c8b654da.xdr b/test-lcm-next/TxResultsTests/b9532e30c8b654da.xdr new file mode 100644 index 0000000000..9344e22ac4 Binary files /dev/null and b/test-lcm-next/TxResultsTests/b9532e30c8b654da.xdr differ diff --git a/test-lcm-next/TxResultsTests/bb308ccf3733c82c.xdr b/test-lcm-next/TxResultsTests/bb308ccf3733c82c.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-next/TxResultsTests/bb308ccf3733c82c.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/bd17b7c465d5042d.xdr b/test-lcm-next/TxResultsTests/bd17b7c465d5042d.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-next/TxResultsTests/bd17b7c465d5042d.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/beb319a6de9dad42.xdr b/test-lcm-next/TxResultsTests/beb319a6de9dad42.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-next/TxResultsTests/beb319a6de9dad42.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/bebf2bd19f1c6003.xdr b/test-lcm-next/TxResultsTests/bebf2bd19f1c6003.xdr new file mode 100644 index 0000000000..9a551c298e Binary files /dev/null and b/test-lcm-next/TxResultsTests/bebf2bd19f1c6003.xdr differ diff --git a/test-lcm-next/TxResultsTests/bf802dee14198853.xdr b/test-lcm-next/TxResultsTests/bf802dee14198853.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-next/TxResultsTests/bf802dee14198853.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/c4c5fee5a26b0453.xdr b/test-lcm-next/TxResultsTests/c4c5fee5a26b0453.xdr new file mode 100644 index 0000000000..9a551c298e Binary files /dev/null and b/test-lcm-next/TxResultsTests/c4c5fee5a26b0453.xdr differ diff --git a/test-lcm-next/TxResultsTests/d0d6ad5a5a30b09c.xdr b/test-lcm-next/TxResultsTests/d0d6ad5a5a30b09c.xdr new file mode 100644 index 0000000000..9344e22ac4 Binary files /dev/null and b/test-lcm-next/TxResultsTests/d0d6ad5a5a30b09c.xdr differ diff --git a/test-lcm-next/TxResultsTests/d34713da8df3e583.xdr b/test-lcm-next/TxResultsTests/d34713da8df3e583.xdr deleted file mode 100644 index 5ae8d5ec96..0000000000 Binary files a/test-lcm-next/TxResultsTests/d34713da8df3e583.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/d54194f4ab97a530.xdr b/test-lcm-next/TxResultsTests/d54194f4ab97a530.xdr new file mode 100644 index 0000000000..9344e22ac4 Binary files /dev/null and b/test-lcm-next/TxResultsTests/d54194f4ab97a530.xdr differ diff --git a/test-lcm-next/TxResultsTests/dfdf7b6c5ab1af39.xdr b/test-lcm-next/TxResultsTests/dfdf7b6c5ab1af39.xdr new file mode 100644 index 0000000000..9a551c298e Binary files /dev/null and b/test-lcm-next/TxResultsTests/dfdf7b6c5ab1af39.xdr differ diff --git a/test-lcm-next/TxResultsTests/e0b80e7fe9bd74d0.xdr b/test-lcm-next/TxResultsTests/e0b80e7fe9bd74d0.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-next/TxResultsTests/e0b80e7fe9bd74d0.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/e384634a9394fbbf.xdr b/test-lcm-next/TxResultsTests/e384634a9394fbbf.xdr new file mode 100644 index 0000000000..9a551c298e Binary files /dev/null and b/test-lcm-next/TxResultsTests/e384634a9394fbbf.xdr differ diff --git a/test-lcm-next/TxResultsTests/e9784e2e250eb7eb.xdr b/test-lcm-next/TxResultsTests/e9784e2e250eb7eb.xdr new file mode 100644 index 0000000000..9344e22ac4 Binary files /dev/null and b/test-lcm-next/TxResultsTests/e9784e2e250eb7eb.xdr differ diff --git a/test-lcm-next/TxResultsTests/ef2f4d869dd1cc8d.xdr b/test-lcm-next/TxResultsTests/ef2f4d869dd1cc8d.xdr new file mode 100644 index 0000000000..9a551c298e Binary files /dev/null and b/test-lcm-next/TxResultsTests/ef2f4d869dd1cc8d.xdr differ diff --git a/test-lcm-next/TxResultsTests/f211171f27bd2ca0.xdr b/test-lcm-next/TxResultsTests/f211171f27bd2ca0.xdr new file mode 100644 index 0000000000..5c67c97b0a Binary files /dev/null and b/test-lcm-next/TxResultsTests/f211171f27bd2ca0.xdr differ diff --git a/test-lcm-next/TxResultsTests/fc4598caa5e37bed.xdr b/test-lcm-next/TxResultsTests/fc4598caa5e37bed.xdr deleted file mode 100644 index bbdbe54a03..0000000000 Binary files a/test-lcm-next/TxResultsTests/fc4598caa5e37bed.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/fe76a0ad04fa1139.xdr b/test-lcm-next/TxResultsTests/fe76a0ad04fa1139.xdr deleted file mode 100644 index 8a61662b80..0000000000 Binary files a/test-lcm-next/TxResultsTests/fe76a0ad04fa1139.xdr and /dev/null differ diff --git a/test-lcm-next/TxResultsTests/index.json b/test-lcm-next/TxResultsTests/index.json index aa23dc9485..adf02f77e5 100644 --- a/test-lcm-next/TxResultsTests/index.json +++ b/test-lcm-next/TxResultsTests/index.json @@ -1,62 +1,36 @@ { - "035b86ee46b88250" : "txresults-protocol_version_28-not_enough_signature_weight-with_operation_after", - "07c95288d49d06df" : "txresults-protocol_version_26-transaction_errors-signed-insufficient_balance", - "0818f91bf50e070d" : "txresults-protocol_version_26-transaction_errors-double_signed-too_early", - "083eef6d8b8e7e63" : "txresults-protocol_version_28-transaction_errors-signed-bad_seq", - "0b136fe2833fb959" : "txresults-protocol_version_28-transaction_errors-not_signed-insufficient_balance", - "0b1fd8ae1f8a728a" : "txresults-protocol_version_28-transaction_errors-double_signed-insufficient_fee", - "123678ce92586472" : "txresults-protocol_version_28-not_enough_signature_weight-before_tx", - "16ba80aa94255ef1" : "txresults-protocol_version_26-transaction_errors-double_signed-missing_operation", - "17a64d1bd4161b6f" : "txresults-protocol_version_28-transaction_errors-double_signed-no_account", - "17d5554d10b7a5e0" : "txresults-protocol_version_26-not_enough_signature_weight-before_tx", - "360c0ad88fddfc15" : "txresults-protocol_version_28-transaction_errors-signed-too_late", - "37ab04a7caf3bde5" : "txresults-protocol_version_28-transaction_errors-double_signed-too_early", - "3d108537d65b8bf5" : "txresults-protocol_version_26-merge_account-normal", - "46ae9d1460e628f2" : "txresults-protocol_version_26-create_account-with_payment_after", - "47301cd2824d3b67" : "txresults-protocol_version_28-transaction_errors-signed-insufficient_balance", - "482259c23e233fb4" : "txresults-protocol_version_26-transaction_errors-double_signed-too_late", - "4ade4004f3e35dfe" : "txresults-protocol_version_28-transaction_errors-double_signed-insufficient_balance", - "50fab18e89f39e30" : "txresults-protocol_version_26-transaction_errors-not_signed-insufficient_balance", - "5f006545d085e016" : "txresults-protocol_version_26-transaction_errors-signed-no_account", - "607a79b7ef1c73b8" : "txresults-protocol_version_28-transaction_errors-not_signed-no_account", - "63bb51706201f3dd" : "txresults-protocol_version_26-transaction_errors-double_signed-insufficient_balance", - "6c945c0f2f0bb66c" : "txresults-protocol_version_26-transaction_errors-signed-insufficient_fee", - "6d35e5e378e70370" : "txresults-protocol_version_26-transaction_errors-not_signed-missing_operation", - "6f1c62881b7eb1c3" : "txresults-protocol_version_26-transaction_errors-signed-too_early", - "71485755b9760b39" : "txresults-protocol_version_26-transaction_errors-signed-too_late", - "720abad845b00441" : "txresults-protocol_version_28-fees_with_liabilities-selling_liabilities", - "84449ae27e590b14" : "txresults-protocol_version_26-transaction_errors-double_signed-insufficient_fee", - "848ed86acdf91404" : "txresults-protocol_version_28-transaction_errors-double_signed-missing_operation", - "893de201c4bd7047" : "txresults-protocol_version_28-transaction_errors-not_signed-bad_seq", - "8e564daf846e0ced" : "txresults-protocol_version_26-not_enough_signature_weight-normal", - "948ceaf5339cffae" : "txresults-protocol_version_26-transaction_errors-double_signed-bad_seq", - "9b4be2f747e8e62f" : "txresults-protocol_version_28-not_enough_signature_weight-normal", - "9c150d4ef9043b6b" : "txresults-protocol_version_26-transaction_errors-not_signed-no_account", - "9cb7e7a8f7878e3d" : "txresults-protocol_version_28-merge_account-normal", - "a38acff3f582b17e" : "txresults-protocol_version_28-transaction_errors-not_signed-missing_operation", - "a4f2d0f620d7bcea" : "txresults-protocol_version_28-transaction_errors-not_signed-insufficient_fee", - "a7ad902854f944c7" : "txresults-protocol_version_26-fees_with_liabilities-buying_liabilities", - "afde3f43c9eb1027" : "txresults-protocol_version_28-create_account-normal", - "affa492c6f3b5ee0" : "txresults-protocol_version_26-merge_account-with_operation_after", - "b88e41c2210b9273" : "txresults-protocol_version_26-transaction_errors-signed-bad_seq", - "b94e47cd7fd23d5b" : "txresults-protocol_version_26-not_enough_signature_weight-with_operation_after", - "bb308ccf3733c82c" : "txresults-protocol_version_26-transaction_errors-double_signed-no_account", - "bd17b7c465d5042d" : "txresults-protocol_version_26-transaction_errors-not_signed-too_early", - "beaa58b0f46aafc6" : "txresults-protocol_version_28-transaction_errors-double_signed-bad_seq", - "beb319a6de9dad42" : "txresults-protocol_version_26-transaction_errors-signed-missing_operation", - "bf802dee14198853" : "txresults-protocol_version_26-transaction_errors-not_signed-too_late", - "c580ebe17d445df5" : "txresults-protocol_version_28-merge_account-with_operation_after", - "c95b50404ef8036f" : "txresults-protocol_version_28-transaction_errors-signed-missing_operation", - "d34713da8df3e583" : "txresults-protocol_version_26-fees_with_liabilities-selling_liabilities", - "d7342c9d22280d94" : "txresults-protocol_version_28-fees_with_liabilities-buying_liabilities", - "d7ca635473c87471" : "txresults-protocol_version_28-transaction_errors-double_signed-too_late", - "e0b80e7fe9bd74d0" : "txresults-protocol_version_26-transaction_errors-not_signed-insufficient_fee", - "ea9b1ca4d8672f21" : "txresults-protocol_version_28-transaction_errors-signed-no_account", - "eb73c7d0dd5043d8" : "txresults-protocol_version_28-transaction_errors-signed-too_early", - "ebe8cb86ddfc6bee" : "txresults-protocol_version_28-transaction_errors-not_signed-too_early", - "f351f5d5ca1fb9a2" : "txresults-protocol_version_28-transaction_errors-signed-insufficient_fee", - "fab4ae054612a770" : "txresults-protocol_version_28-transaction_errors-not_signed-too_late", - "fc4598caa5e37bed" : "txresults-protocol_version_26-create_account-normal", - "fce4063e23913ec1" : "txresults-protocol_version_28-create_account-with_payment_after", - "fe76a0ad04fa1139" : "txresults-protocol_version_26-transaction_errors-not_signed-bad_seq" + "!cfg protocol version" : 29, + "!rng seed" : 12345, + "!test all versions" : false, + "!versions to test" : [ 29 ], + "0d729404c018318b" : "txresults-protocol_version_29-transaction_errors-not_signed-too_late", + "0e6880e7cb7ad651" : "txresults-protocol_version_29-transaction_errors-double_signed-no_account", + "19ecf2d5254ee652" : "txresults-protocol_version_29-transaction_errors-double_signed-bad_seq", + "24ef1e6662b332ff" : "txresults-protocol_version_29-transaction_errors-double_signed-missing_operation", + "3f0eb921dfe20cc0" : "txresults-protocol_version_29-transaction_errors-signed-missing_operation", + "47000ffd70ff5d5f" : "txresults-protocol_version_29-transaction_errors-signed-too_late", + "487c04a7f50995b7" : "txresults-protocol_version_29-transaction_errors-double_signed-insufficient_balance", + "4998ada39809f281" : "txresults-protocol_version_29-transaction_errors-not_signed-no_account", + "49eea85813585ff7" : "txresults-protocol_version_29-not_enough_signature_weight-normal", + "57d6c10084923631" : "txresults-protocol_version_29-transaction_errors-signed-no_account", + "6a9cfb8c5d126e8b" : "txresults-protocol_version_29-transaction_errors-signed-bad_seq", + "74e1165f01c57731" : "txresults-protocol_version_29-fees_with_liabilities-buying_liabilities", + "79182a04e6cc7840" : "txresults-protocol_version_29-transaction_errors-signed-insufficient_balance", + "7a229ea3a1260cdd" : "txresults-protocol_version_29-fees_with_liabilities-selling_liabilities", + "7dc8e0e9e05ecfab" : "txresults-protocol_version_29-transaction_errors-double_signed-too_early", + "7e9662a6eeba15d1" : "txresults-protocol_version_29-create_account-normal", + "873836ddcb9f07f8" : "txresults-protocol_version_29-transaction_errors-double_signed-too_late", + "9ee29fce28df3df2" : "txresults-protocol_version_29-transaction_errors-not_signed-missing_operation", + "a140ada2f5afca0f" : "txresults-protocol_version_29-transaction_errors-signed-too_early", + "ad8ac4e77fd02430" : "txresults-protocol_version_29-transaction_errors-not_signed-bad_seq", + "b9532e30c8b654da" : "txresults-protocol_version_29-merge_account-normal", + "bebf2bd19f1c6003" : "txresults-protocol_version_29-transaction_errors-double_signed-insufficient_fee", + "c4c5fee5a26b0453" : "txresults-protocol_version_29-transaction_errors-not_signed-insufficient_balance", + "d0d6ad5a5a30b09c" : "txresults-protocol_version_29-create_account-with_payment_after", + "d54194f4ab97a530" : "txresults-protocol_version_29-merge_account-with_operation_after", + "dfdf7b6c5ab1af39" : "txresults-protocol_version_29-transaction_errors-not_signed-insufficient_fee", + "e384634a9394fbbf" : "txresults-protocol_version_29-transaction_errors-signed-insufficient_fee", + "e9784e2e250eb7eb" : "txresults-protocol_version_29-not_enough_signature_weight-with_operation_after", + "ef2f4d869dd1cc8d" : "txresults-protocol_version_29-transaction_errors-not_signed-too_early", + "f211171f27bd2ca0" : "txresults-protocol_version_29-not_enough_signature_weight-before_tx" } diff --git a/test-tx-meta-baseline-current/InvokeHostFunctionTests.json b/test-tx-meta-baseline-current/InvokeHostFunctionTests.json index 6a2f0d598a..891990ef2f 100644 --- a/test-tx-meta-baseline-current/InvokeHostFunctionTests.json +++ b/test-tx-meta-baseline-current/InvokeHostFunctionTests.json @@ -784,26 +784,6 @@ "+cR3oq2qY0I=", "KZu7zfNieRw=", "z4n404MMtso=", - "gjWPsRTDO9U=", - "+cR3oq2qY0I=", - "KZu7zfNieRw=", - "z4n404MMtso=", - "gjWPsRTDO9U=", - "+cR3oq2qY0I=", - "KZu7zfNieRw=", - "z4n404MMtso=", - "gjWPsRTDO9U=", - "+cR3oq2qY0I=", - "KZu7zfNieRw=", - "z4n404MMtso=", - "gjWPsRTDO9U=", - "+cR3oq2qY0I=", - "KZu7zfNieRw=", - "z4n404MMtso=", - "gjWPsRTDO9U=", - "+cR3oq2qY0I=", - "KZu7zfNieRw=", - "z4n404MMtso=", "gjWPsRTDO9U=" ], "Soroban classic account authentication|account with required multisig" : @@ -841,8 +821,6 @@ "wyj8BjL/gnY=", "1ivEuESIAxs=", "wyj8BjL/gnY=", - "1ivEuESIAxs=", - "wyj8BjL/gnY=", "1ivEuESIAxs=" ], "Soroban classic account authentication|account with too high med threshold not authenticated" : [ "whlcrpQuKSo=" ], @@ -864,7 +842,6 @@ "xPoOk1manoQ=", "xPoOk1manoQ=", "xPoOk1manoQ=", - "xPoOk1manoQ=", "xPoOk1manoQ=" ], "Soroban classic account authentication|account with weights and additional signer" : @@ -885,7 +862,6 @@ "T5+K8nbHbVI=", "T5+K8nbHbVI=", "T5+K8nbHbVI=", - "T5+K8nbHbVI=", "T5+K8nbHbVI=" ], "Soroban classic account authentication|additional signer with insufficient weight not authenticated" : [ "ZeeAeM/N6kA=" ], @@ -907,7 +883,6 @@ "NhzC+G+vt7w=", "NhzC+G+vt7w=", "NhzC+G+vt7w=", - "NhzC+G+vt7w=", "NhzC+G+vt7w=" ], "Soroban classic account authentication|duplicate signature not allowed with insufficient single signature threshold" : [ "whlcrpQuKSo=" ], diff --git a/test-tx-meta-baseline-next/InvokeHostFunctionTests.json b/test-tx-meta-baseline-next/InvokeHostFunctionTests.json index 6dc67843fa..6fbd5a4637 100644 --- a/test-tx-meta-baseline-next/InvokeHostFunctionTests.json +++ b/test-tx-meta-baseline-next/InvokeHostFunctionTests.json @@ -785,26 +785,6 @@ "+cR3oq2qY0I=", "KZu7zfNieRw=", "z4n404MMtso=", - "gjWPsRTDO9U=", - "+cR3oq2qY0I=", - "KZu7zfNieRw=", - "z4n404MMtso=", - "gjWPsRTDO9U=", - "+cR3oq2qY0I=", - "KZu7zfNieRw=", - "z4n404MMtso=", - "gjWPsRTDO9U=", - "+cR3oq2qY0I=", - "KZu7zfNieRw=", - "z4n404MMtso=", - "gjWPsRTDO9U=", - "+cR3oq2qY0I=", - "KZu7zfNieRw=", - "z4n404MMtso=", - "gjWPsRTDO9U=", - "+cR3oq2qY0I=", - "KZu7zfNieRw=", - "z4n404MMtso=", "gjWPsRTDO9U=" ], "Soroban classic account authentication|account with required multisig" : @@ -842,8 +822,6 @@ "wyj8BjL/gnY=", "1ivEuESIAxs=", "wyj8BjL/gnY=", - "1ivEuESIAxs=", - "wyj8BjL/gnY=", "1ivEuESIAxs=" ], "Soroban classic account authentication|account with too high med threshold not authenticated" : [ "whlcrpQuKSo=" ], @@ -865,7 +843,6 @@ "xPoOk1manoQ=", "xPoOk1manoQ=", "xPoOk1manoQ=", - "xPoOk1manoQ=", "xPoOk1manoQ=" ], "Soroban classic account authentication|account with weights and additional signer" : @@ -886,7 +863,6 @@ "T5+K8nbHbVI=", "T5+K8nbHbVI=", "T5+K8nbHbVI=", - "T5+K8nbHbVI=", "T5+K8nbHbVI=" ], "Soroban classic account authentication|additional signer with insufficient weight not authenticated" : [ "ZeeAeM/N6kA=" ], @@ -908,7 +884,6 @@ "NhzC+G+vt7w=", "NhzC+G+vt7w=", "NhzC+G+vt7w=", - "NhzC+G+vt7w=", "NhzC+G+vt7w=" ], "Soroban classic account authentication|duplicate signature not allowed with insufficient single signature threshold" : [ "whlcrpQuKSo=" ],