Update Artela.sh

This commit is contained in:
smeb y 2024-04-14 11:11:21 +08:00 committed by GitHub
parent 41c6507778
commit 2e5ad3472d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -201,7 +201,7 @@ artelad tx staking create-validator validator.json --from $wallet_name \
function delegate_self_validator() { function delegate_self_validator() {
read -p "请输入质押代币数量: " math read -p "请输入质押代币数量: " math
read -p "请输入钱包名称: " wallet_name read -p "请输入钱包名称: " wallet_name
artelad tx staking delegate $(artelad keys show wallet --bech val -a) ${math}art --from $wallet_name --chain-id=artela_11822-1 --gas=300000 -y artelad tx staking delegate $(artelad keys show $wallet_name --bech val -a) ${math}art --from $wallet_name --chain-id=artela_11822-1 --gas=300000 -y
} }