From 16b0977f1eedcfabef542ff39cba30d29021f408 Mon Sep 17 00:00:00 2001 From: smeb y <48400087+a3165458@users.noreply.github.com> Date: Wed, 10 Jul 2024 09:18:48 +0800 Subject: [PATCH] Update new-titan.sh --- new-titan.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/new-titan.sh b/new-titan.sh index 1b62f15..575015a 100644 --- a/new-titan.sh +++ b/new-titan.sh @@ -205,9 +205,9 @@ titand tx staking create-validator \ # 给自己地址验证者质押 function delegate_self_validator() { -read -p "请输入质押代币数量: " math +read -p "请输入质押代币数量(单位为uttnt,1ttnt=1000000uttnt): " math read -p "请输入钱包名称: " wallet_name -titand tx staking delegate $(titand keys show $wallet_name --bech val -a) ${math}ttnt --from $wallet_name --fees 500uttnt +titand tx staking delegate $(titand keys show $wallet_name --bech val -a) ${math}uttnt --from $wallet_name --fees 500uttnt }