Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

delete unused libraries for Miners #1232

Merged
merged 2 commits into from
Jan 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions AVR_Miner.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 0 additions & 4 deletions Unofficial miners/Minimal_PC_Miner.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down