Skip to content

Commit

Permalink
Update PC_Miner.py
Browse files Browse the repository at this point in the history
  • Loading branch information
revoxhere authored Aug 6, 2022
1 parent 67e7874 commit eb9f9bc
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions PC_Miner.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
"""
Duino-Coin Official PC Miner 3.2 © MIT licensed
Duino-Coin Official PC Miner 3.3 © MIT licensed
https://duinocoin.com
https://github.com/revoxhere/duino-coin
Duino-Coin Team & Community 2019-2022
Expand Down Expand Up @@ -136,7 +136,7 @@ class Settings:
"""
ENCODING = "UTF8"
SEPARATOR = ","
VER = 3.2
VER = 3.3
DATA_DIR = "Duino-Coin PC Miner " + str(VER)
TRANSLATIONS = ("https://raw.githubusercontent.com/"
+ "revoxhere/"
Expand Down Expand Up @@ -1217,7 +1217,6 @@ def init():
+ "How-to-compile-fasthash-accelerations\n"
+ f"(Libducohash couldn't be loaded: {str(e)})"
).replace("\n", "\n\t\t"), 'warning', 'sys0')
sleep(15)

def load():
if os.name == 'nt':
Expand Down Expand Up @@ -1250,7 +1249,6 @@ def load():
+ "How-to-compile-fasthash-accelerations\n"
+ f"(Invalid processor architecture: {osprocessor()})"
).replace("\n", "\n\t\t"), 'warning', 'sys0')
sleep(15)
return
if not Path("libducohasher.so").is_file():
pretty_print(get_string("fasthash_download"), "info")
Expand All @@ -1266,7 +1264,6 @@ def load():
+ "How-to-compile-fasthash-accelerations\n"
+ f"(Invalid OS: {os.name})"
).replace("\n", "\n\t\t"), 'warning', 'sys0')
sleep(15)
return


Expand Down

0 comments on commit eb9f9bc

Please sign in to comment.