From 80d8e827d7d20b49d57f640746c5958b579e9b3d Mon Sep 17 00:00:00 2001 From: TimothyBanks Date: Tue, 18 Aug 2026 11:57:56 -0400 Subject: [PATCH] fix: Update CacheLedgerObjImpl to use implicit parameter --- src/tests/libxrpl/tx/wasm/host_functions/CacheLedgerObj.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/libxrpl/tx/wasm/host_functions/CacheLedgerObj.cpp b/src/tests/libxrpl/tx/wasm/host_functions/CacheLedgerObj.cpp index a717079c27..28199cd7cc 100644 --- a/src/tests/libxrpl/tx/wasm/host_functions/CacheLedgerObj.cpp +++ b/src/tests/libxrpl/tx/wasm/host_functions/CacheLedgerObj.cpp @@ -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);