Skip to content

Commit

Permalink
2022-01-11 21:31 4.0.0T6>>>修复了矿机名重复情况下web端显示错误问题,增加了首页 矿池设置页面自动刷新功能
Browse files Browse the repository at this point in the history
  • Loading branch information
charles committed Jan 11, 2022
1 parent 6a351cd commit cb3afca
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ nicococococ/MinerProxyLite
CharIesOrz/minerProxy
ryu-shen/minerProxy
盗版加料,已经有2个人找我说被抽了100%了
2022-01-11 21:31 4.0.0T6>>>修复了矿机名重复情况下web端显示错误问题,增加了首页 矿池设置页面自动刷新功能
2022-01-11 01:00 4.0.0T5>>>修复了web端在线矿机会显示为离线矿机的显示问题
2022-01-10 18:13 4.0.0T4>>>修复了同一个矿池下多个钱包地址 矿工名会互相显示在对方钱包的问题
2022-01-09 21:53 4.0.0T3>>>新增 动态修改抽水比例
Expand Down
Binary file added release/v4.0.0T6/minerProxy_v4.0.0T6_linux_amd64
Binary file not shown.
Binary file not shown.
14 changes: 8 additions & 6 deletions scripts/tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ install() {
wget https://raw.githubusercontent.com/Char1esOrz/minerProxy/master/release/v3.0.3/minerProxy_web -O /root/miner_proxy/minerProxy
;;
2)
wget https://raw.githubusercontent.com/Char1esOrz/minerProxy/master/release/v4.0.0T5/minerProxy_v4.0.0T5_linux_amd64 -O /root/miner_proxy/minerProxy
wget https://raw.githubusercontent.com/Char1esOrz/minerProxy/master/release/v4.0.0T6/minerProxy_v4.0.0T6_linux_amd64 -O /root/miner_proxy/minerProxy
;;
*)
echo "请输入正确的数字"
Expand All @@ -43,6 +43,7 @@ install() {
chmod 777 /root/miner_proxy/run.sh
echo "安装成功"
echo "正在启动..."
ulimit -n 102400
screen -dmS minerProxy
sleep 0.2s
screen -r minerProxy -p 0 -X stuff "cd /root/miner_proxy"
Expand Down Expand Up @@ -82,7 +83,7 @@ update() {
wget https://raw.githubusercontent.com/Char1esOrz/minerProxy/master/release/v3.0.3/minerProxy_web -O /root/miner_proxy/minerProxy
;;
2)
wget https://raw.githubusercontent.com/Char1esOrz/minerProxy/master/release/v4.0.0T5/minerProxy_v4.0.0T5_linux_amd64 -O /root/miner_proxy/minerProxy
wget https://raw.githubusercontent.com/Char1esOrz/minerProxy/master/release/v4.0.0T6/minerProxy_v4.0.0T6_linux_amd64 -O /root/miner_proxy/minerProxy
;;
*)
echo "请输入正确的数字"
Expand All @@ -100,7 +101,7 @@ update() {
echo "删除配置文件成功"
fi
fi

ulimit -n 102400
screen -dmS minerProxy
sleep 0.2s
screen -r minerProxy -p 0 -X stuff "cd /root/miner_proxy"
Expand All @@ -118,7 +119,7 @@ start() {
if screen -list | grep -q "minerProxy"; then
echo -e "minerProxy已启动,请勿重复启动" && exit 1
fi

ulimit -n 102400
screen -dmS minerProxy
sleep 0.2s
screen -r minerProxy -p 0 -X stuff "cd /root/miner_proxy"
Expand All @@ -134,7 +135,7 @@ restart() {
if screen -list | grep -q "minerProxy"; then
screen -X -S minerProxy quit
fi

ulimit -n 102400
screen -dmS minerProxy
sleep 0.2s
screen -r minerProxy -p 0 -X stuff "cd /root/miner_proxy"
Expand All @@ -160,6 +161,7 @@ echo " 3、更 新"
echo " 4、启 动"
echo " 5、重 启"
echo " 6、停 止"
echo " 7、配置开机启动"
echo "======================================================="
read -p "$(echo -e "请选择[1-6]:")" choose
case $choose in
Expand All @@ -184,4 +186,4 @@ case $choose in
*)
echo "输入错误请重新输入!"
;;
esac
esac

0 comments on commit cb3afca

Please sign in to comment.