From a22732fb6648117cf75421a594e6e3b39cfaaff0 Mon Sep 17 00:00:00 2001 From: Ed Hennis Date: Tue, 5 May 2026 19:17:54 -0400 Subject: [PATCH] Fix build errors caused by divergence from base branch --- src/test/app/SHAMapStore_test.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/app/SHAMapStore_test.cpp b/src/test/app/SHAMapStore_test.cpp index d246ecf4af..1534ce1b8c 100644 --- a/src/test/app/SHAMapStore_test.cpp +++ b/src/test/app/SHAMapStore_test.cpp @@ -231,7 +231,7 @@ public: store.rendezvous(); - BEAST_EXPECT(env.closed()->info().seq == deleteInterval + 3); + BEAST_EXPECT(env.closed()->header().seq == deleteInterval + 3); lastRotated = store.getLastRotated(); BEAST_EXPECT(lastRotated == deleteInterval + 5); BEAST_EXPECT(lastRotated == 13); @@ -606,9 +606,9 @@ public: auto& ns = env.app().getNodeStore(); std::map hashes; auto storeHash = [&]() { - hashes.emplace(env.current()->info().seq, env.current()->info().hash); + hashes.emplace(env.current()->header().seq, env.current()->header().hash); - auto const& root = ns.fetchNodeObject(hashes[env.current()->info().seq]); + auto const& root = ns.fetchNodeObject(hashes[env.current()->header().seq]); BEAST_EXPECT(root); };