Update ore.sh
This commit is contained in:
parent
20de4eb86c
commit
ef73c40909
7
ore.sh
7
ore.sh
@ -222,6 +222,10 @@ read -p "请输入RPC配置地址: " rpc_address
|
|||||||
# 用户输入要生成的钱包配置文件数量
|
# 用户输入要生成的钱包配置文件数量
|
||||||
read -p "请输入你想要运行的钱包数量: " count
|
read -p "请输入你想要运行的钱包数量: " count
|
||||||
|
|
||||||
|
# 提示用户输入私钥
|
||||||
|
echo "为id${i}.json输入私钥 (格式为包含64个数字的JSON数组):"
|
||||||
|
read -p "私钥: " private_key
|
||||||
|
|
||||||
|
|
||||||
echo "更新系统软件包..."
|
echo "更新系统软件包..."
|
||||||
sudo apt update && sudo apt upgrade -y
|
sudo apt update && sudo apt upgrade -y
|
||||||
@ -251,9 +255,6 @@ mkdir -p ~/.config/solana
|
|||||||
# 循环创建配置文件和启动挖矿进程
|
# 循环创建配置文件和启动挖矿进程
|
||||||
for (( i=1; i<=count; i++ ))
|
for (( i=1; i<=count; i++ ))
|
||||||
do
|
do
|
||||||
# 提示用户输入私钥
|
|
||||||
echo "为id${i}.json输入私钥 (格式为包含64个数字的JSON数组):"
|
|
||||||
read -p "私钥: " private_key
|
|
||||||
|
|
||||||
# 生成配置文件路径
|
# 生成配置文件路径
|
||||||
config_file=~/.config/solana/id${i}.json
|
config_file=~/.config/solana/id${i}.json
|
||||||
|
Loading…
Reference in New Issue
Block a user