From 9a4fe7eb060beba5c194319f7581b697e0185f6f Mon Sep 17 00:00:00 2001 From: Steve Gerbino Date: Mon, 16 Jan 2023 14:50:58 -0500 Subject: [PATCH] Add jsonrcp and grpc service names --- libraries/util/include/koinos/util/services.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libraries/util/include/koinos/util/services.hpp b/libraries/util/include/koinos/util/services.hpp index 2ab774f..d58dfd6 100644 --- a/libraries/util/include/koinos/util/services.hpp +++ b/libraries/util/include/koinos/util/services.hpp @@ -13,6 +13,8 @@ namespace service { constexpr char p2p[] = "p2p"; constexpr char contract_meta_store[] = "contract_meta_store"; constexpr char account_history[] = "account_history"; + constexpr char grpc[] = "grpc"; + constexpr char jsonrpc[] = "jsonrpc"; } std::filesystem::path get_default_base_directory();