Skip to content

Commit

Permalink
Release 2.0.0
Browse files Browse the repository at this point in the history
* Fix python 3.10 deprecation warnings
* Support ProgPow DAG reduction
  • Loading branch information
us77ipis committed Nov 15, 2022
1 parent 329814d commit 1f144c9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion veilproxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,8 @@ def onNewJob(self, job=None, loginId=None):


def main():
parser = argparse.ArgumentParser(description="Stratum proxy to solo mine to VEIL node.")
parser = argparse.ArgumentParser(prog="veilproxy",
description="Stratum proxy to solo mine to VEIL node.")
parser.add_argument('-a', '--address', default='0.0.0.0',
help="the address to listen on, defaults to 0.0.0.0")
parser.add_argument('-p', '--port', type=int, required=True,
Expand All @@ -378,6 +379,7 @@ def main():
help="show jobs in the log")
parser.add_argument('-v', '--verbose', '--debug', action="store_true",
help="set log level to debug")
parser.add_argument('--version', action='version', version='%(prog)s 2.0.0')
args = parser.parse_args()

global SHOW_JOBS
Expand Down

0 comments on commit 1f144c9

Please sign in to comment.