#include #include #include #include namespace xrpl::test::bench { namespace { void checkKeyletImpl(benchmark::State& state) { static constexpr auto kWasmName = std::string_view{"check_id"}; benchmarkImpl( state, kWasmName, [] { return Fixtures::instance().host(); }, [](auto& host) { return host.checkKeylet(Fixtures::instance().alice().id(), Fixtures::kSeq); }); } BENCHMARK(checkKeyletImpl)->UseManualTime()->Iterations(kBenchIterations); } // namespace } // namespace xrpl::test::bench