diff --git a/AVR_Miner.py b/AVR_Miner.py index 52ce7153..484e1a90 100644 --- a/AVR_Miner.py +++ b/AVR_Miner.py @@ -6,7 +6,7 @@ Duino-Coin Team & Community 2019-2021 """ -from os import _exit, execl, mkdir +from os import _exit, mkdir from os import name as osname from os import path from os import system as ossystem @@ -26,8 +26,6 @@ from statistics import mean from signal import SIGINT, signal from time import ctime, sleep, strptime, time -from random import choice -import select import pip from subprocess import DEVNULL, Popen, check_call, call diff --git a/Unofficial miners/Minimal_PC_Miner.py b/Unofficial miners/Minimal_PC_Miner.py index c7c296d6..c4c93f08 100644 --- a/Unofficial miners/Minimal_PC_Miner.py +++ b/Unofficial miners/Minimal_PC_Miner.py @@ -9,16 +9,12 @@ from socket import socket import sys # Only python3 included libraries import time -import ssl -import select -from json import load as jsonload import requests soc = socket() - def current_time(): t = time.localtime() current_time = time.strftime("%H:%M:%S", t)