mirror of
https://github.com/XRPLF/clio.git
synced 2026-06-03 00:36:44 +00:00
10 lines
174 B
C++
10 lines
174 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <unordered_set>
|
|
|
|
namespace util {
|
|
[[nodiscard]] std::unordered_set<std::string> const&
|
|
getTxTypesInLowercase();
|
|
} // namespace util
|