mirror of
https://github.com/XRPLF/rippled.git
synced 2026-08-21 06:10:58 +00:00
fix: Update CacheLedgerObjImpl to use implicit parameter
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user