From 5d2116e96c9d05769460e8bf3c4c0b3d1ecc512c Mon Sep 17 00:00:00 2001 From: beer-1 Date: Thu, 31 Oct 2024 15:46:00 +0900 Subject: [PATCH] add toml description --- x/move/config/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x/move/config/config.go b/x/move/config/config.go index 95ec0265..3b0a95bf 100644 --- a/x/move/config/config.go +++ b/x/move/config/config.go @@ -59,8 +59,8 @@ const DefaultConfigTemplate = ` [move] # The maximum gas amount can be used in a tx simulation call. contract-simulation-gas-limit = "{{ .MoveConfig.ContractSimulationGasLimit }}" -# The capacity of the script cache. +# The capacity of the script cache in (MiB). script-cache-capacity = "{{ .MoveConfig.ScriptCacheCapacity }}" -# The capacity of the module cache. +# The capacity of the module cache in (MiB). module-cache-capacity = "{{ .MoveConfig.ModuleCacheCapacity }}" `