From 5c97d3108ee416962e9de14909d55952e37b5adb Mon Sep 17 00:00:00 2001 From: smeb y <48400087+a3165458@users.noreply.github.com> Date: Thu, 4 Apr 2024 15:14:28 +0800 Subject: [PATCH] Update ore.sh --- ore.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ore.sh b/ore.sh index 080792b..4daa416 100644 --- a/ore.sh +++ b/ore.sh @@ -64,7 +64,7 @@ PRIORITY_FEE=${custom_priority_fee:-1} session_name="ore" echo "开始挖矿,会话名称为 $session_name ..." -start="while true; do ore --rpc $RPC_URL --keypair ~/.config/solana/id.json --priority-fee $PRIORITY_FEE mine --threads $THREADS; echo '进程异常退出,等待重启' >&2; sleep 1; done" +start="while true; do ore --rpc $RPC_URL --keypair root/.config/solana/id.json --priority-fee $PRIORITY_FEE mine --threads $THREADS; echo '进程异常退出,等待重启' >&2; sleep 1; done" screen -dmS "$session_name" bash -c "$start" echo "挖矿进程已在名为 $session_name 的 screen 会话中后台启动。"