fix: Update CacheLedgerObjImpl to use implicit parameter

This commit is contained in:
TimothyBanks
2026-08-18 11:57:56 -04:00
parent b84d25fbed
commit 80d8e827d7

View File

@@ -25,7 +25,7 @@ struct CacheLedgerObjImpl : WasmImplTest
for (auto i = int32_t{1}; i < 257; ++i)
{
auto const slot = h->cacheLedgerObj(key, i);
auto const slot = h->cacheLedgerObj(key, implicit ? 0 : i);
ASSERT_TRUE(slot.has_value()) << "cacheLedgerObj should find the created account";
EXPECT_EQ(*slot, i);