Feat:implement quick blocks for signet mining

This commit is contained in:
Elyan 2024-02-23 02:06:12 -08:00
parent df4c4bcdbd
commit 94006c0590
2 changed files with 4 additions and 1 deletions

View File

@ -62,6 +62,9 @@ RUN chmod +x /usr/local/bin/install.sh
COPY miner /usr/local/bin/miner COPY miner /usr/local/bin/miner
RUN chmod +x /usr/local/bin/miner RUN chmod +x /usr/local/bin/miner
COPY miner_imports /usr/local/bin/miner_imports
RUN chmod -R +x /usr/local/bin/miner_imports
COPY *.sh /usr/local/bin/ COPY *.sh /usr/local/bin/
RUN chmod +x /usr/local/bin/*.sh RUN chmod +x /usr/local/bin/*.sh
COPY rpcauth.py /usr/local/bin/rpcauth.py COPY rpcauth.py /usr/local/bin/rpcauth.py

2
miner
View File

@ -2,7 +2,7 @@
# Copyright (c) 2020 The Bitcoin Core developers # Copyright (c) 2020 The Bitcoin Core developers
# Distributed under the MIT software license, see the accompanying # Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php. # file COPYING or http://www.opensource.org/licenses/mit-license.php.
# Modified for quick blocks and run in leaner docker container # Modified for quick blocks and run in leaner docker container(By Easepay Inc 2024)
# Standard library imports for path setup # Standard library imports for path setup
import argparse import argparse