From 14e631a808df42d0c2d9d6b8cab3a4e498ebbe96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20O=CC=88mer=20Kayabas=CC=A7=C4=B1?= Date: Mon, 13 Nov 2023 18:18:31 +0000 Subject: [PATCH] docs: update README --- tools/confix/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/confix/README.md b/tools/confix/README.md index fb3b6f61ea62..d7867d5f4481 100644 --- a/tools/confix/README.md +++ b/tools/confix/README.md @@ -93,20 +93,20 @@ confix set ~/.simapp/config/client.toml chain-id "foo-1" # sets the value chain- ### Migrate -Migrate a configuration file to a new version, you must specify the type of the configuration file (`client` or `app`), e.g.: +Migrate a configuration file to a new version, config type defaults to `app.toml`, if you want to change it to `client.toml`, please indicate it by adding the optional parameter, e.g.: ```shell -simd config migrate v0.47 # migrates defaultHome/config/app.toml to the latest v0.47 config +simd config migrate v0.50 # migrates defaultHome/config/app.toml to the latest v0.47 config ``` ```shell -confix migrate v0.47 ~/.simapp/config/app.toml app # migrate ~/.simapp/config/app.toml to the latest v0.47 config +confix migrate v0.50 ~/.simapp/config/app.toml # migrate ~/.simapp/config/app.toml to the latest v0.47 config ``` or ```shell -confix migrate v0.47 ~/.simapp/config/client.toml client # migrate ~/.simapp/config/client.toml to the latest v0.47 config +confix migrate v0.50 ~/.simapp/config/client.toml client # migrate ~/.simapp/config/client.toml to the latest v0.47 config ``` ### Diff