rpc: add missing string_view include to server.h

CRPCTable::help() takes std::string_view but server.h relies on
transitive includes for it.

Add the direct include (probably makes iwyu happier too?)
This commit is contained in:
will
2026-03-02 20:10:24 +00:00
parent 1a2523e901
commit d4d64ae739

View File

@@ -13,6 +13,7 @@
#include <functional>
#include <map>
#include <string>
#include <string_view>
#include <univalue.h>