From f62ea0a8da005caeda4e2b54cf2d3ce20b38eb93 Mon Sep 17 00:00:00 2001 From: Clayton Calabrese Date: Fri, 5 Aug 2022 13:29:50 -0500 Subject: [PATCH] modify header comment for kv_config to explain that kv_database_config is not in use and will be removed as a larger effort for snapshot v7 when that ocmes. --- libraries/chain/include/eosio/chain/kv_config.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libraries/chain/include/eosio/chain/kv_config.hpp b/libraries/chain/include/eosio/chain/kv_config.hpp index 7330fa09ac..2e8bcc1627 100644 --- a/libraries/chain/include/eosio/chain/kv_config.hpp +++ b/libraries/chain/include/eosio/chain/kv_config.hpp @@ -6,11 +6,14 @@ namespace eosio { namespace chain { /** - * @brief limits for a kv database. + * @brief limits for a kv database: NOT IN USE for mandel * * Each database (ram or disk, currently) has its own limits for these parameters. * The key and value limits apply when adding or modifying elements. They may be reduced * below existing database entries. + * + * This has been marked for removal at a later date, when v7 snapshots are deemed necessary. + * kv_database_config will be removed as part of that effort. */ struct kv_database_config { std::uint32_t max_key_size = 0; ///< the maximum size in bytes of a key