Show Posts
|
Pages: [1]
|
I'm using the Demo now for bittrex, but 1 thing i don't understand,
I have in total 0.02BTC to trade, while im not checking for a few hours, the amount of btc is at 0.03 but i didn't sell anything i only bought some alt coins. Is this a bug? or how does it work.
|
|
|
So i saw this script on github.com, but i could not get it started maybe someone els using this script? Im using EthOS, Claymoreminer import subprocess import os import re import sys import argparse import httplib, urllib
def pushover_message(title, message, app_token, user_token): conn = httplib.HTTPSConnection("api.pushover.net:443") conn.request("POST", "/1/messages.json", urllib.urlencode({ "token": app_token, # Insert app token here "user": user_token, # Insert user token here "title": title, # Title of the message "message": message # Content of the message }), { "Content-type": "application/x-www-form-urlencoded" }) return conn.getresponse()
parser = argparse.ArgumentParser()
parser.add_argument( '-f', '--checkfilepath', dest='check_file_path', help="path to store temporary file at if reboot criteria is met, but we need to wait until next time this script runs, check if that file exists, criteria are till met and then reboot", default="/tmp/reboot_conditions_met_last_time.txt" )
parser.add_argument('-a', '--pushover_app_token', dest='pushover_app_token', help="app token for pushover service for push notifications on reboot")
parser.add_argument('-u', '--pushover_user_token', dest='pushover_user_token', help="user token for pushover service for push notifications on reboot")
args = parser.parse_args()
update_data = subprocess.check_output(['update'])
hash = None miner_id = ''
for line in update_data.splitlines(): if 'hash: ' in line: hash_line = line hash_list = re.findall(r'\d+\.\d+', hash_line)
if len(hash_list) > 0: hash = float(hash_list[0])
elif 'hostname: ' in line: hostname_list = re.findall(r'\w+', line) if len(hostname_list) > 1: miner_id = hostname_list[1]
if not hash: #criteria are met #check if file exists, meaning that conditions were met last time if os.path.isfile(args.check_file_path): print 'file here' os.remove(args.check_file_path) if args.pushover_user_token and args.pushover_app_token: pushover_message( 'Miner {} restarted'.format(miner_id), 'Miner {} reached hash rate of 0'.format(miner_id), args.pushover_app_token, args.pushover_user_token ) os.system("r") else: # create a file so that next time we know if has been at state for a while os.system('touch {}'.format(args.check_file_path)) else: # if the checkfile exists, remove it because the conditions are no longer met if os.path.isfile(args.check_file_path): os.remove(args.check_file_path)
|
|
|
Im trying to dual mine on EthOS, but its not working yet, ETH is working, i set everyting up as requested bye someone els, but we cant find it what the problem can be? Anyone got to know it.
claymore.stub.conf ___________
# WARNING! Remove "#" characters to enable lines, with "#" they are disabled and will be ignored by miner! Check README for details. # WARNING! Miner loads options from this file only if there are not any options in the command line
-colors 1 -dbg -1 -esm STRATUMTYPE -epool POOL1 -ewal WALLET -epsw PASSWORD1 -eworker WORKER -allpools 1 -gser 2 -allcoins 1 -wd 0
#uncomment and configure the -dpool and -dwal lines below to enable dualmining. -mode 0
#-ewal 0x81d70F0C545750d3DAe1CD78B503fDcD9Fxxxxx -dpool stratum+tcp://sia-eu2.nanopool.org:7777 -dwal df624983c65b194444539293aa1cdf0b7aae0410e9bdffc585daad117fd2421ab7450286xxxxx/Rig/Mail -dcoin sia -dcri 16 #-dpsw x #-esm 1 #-mode 0 #-tt 70
So after more struggling, i still cant fix it :/
|
|
|
Im trying to dual mine on EthOS, but its not working yet, ETH is working, i set everyting up as requested bye someone els, but we cant find it what the problem can be? Anyone got to know it.
claymore.stub.conf ___________
# WARNING! Remove "#" characters to enable lines, with "#" they are disabled and will be ignored by miner! Check README for details. # WARNING! Miner loads options from this file only if there are not any options in the command line
-colors 1 -dbg -1 -esm STRATUMTYPE -epool POOL1 -ewal WALLET -epsw PASSWORD1 -eworker WORKER -allpools 1 -gser 2 -allcoins 1 -wd 0
#uncomment and configure the -dpool and -dwal lines below to enable dualmining. -mode 0
#-ewal 0x81d70F0C545750d3DAe1CD78B503fDcD9Fxxxxx -dpool stratum+tcp://sia-eu2.nanopool.org:7777 -dwal df624983c65b194444539293aa1cdf0b7aae0410e9bdffc585daad117fd2421ab7450286xxxxx/Rig/Mail -dcoin sia -dcri 16 #-dpsw x #-esm 1 #-mode 0 #-tt 70
|
|
|
Hey all,
My Specs are:
Intel Celereon G3930 Gigabyte GA Z170 Gaming K3 8GB DDR4 RAM 60GB SSD 6x MSI GTX 1070 ARMOR OC 1200w Corsair
Problem:
When i bought my last GPU, i connected it, pc wont boot normal, it goes do the second bios automatic i think so there is some failure? I cant find the problem, and its only when i connect 6 GPU's does anyone here runs the same motherboard with 6 GPU's? When u use 6 cars, the MH\s is bouncing up and down. from 30mhs to 15->8 and again up. How is this possible? i tried everything with Afterburner current settings are: Power Limit 70% Mem Clock +700, it was all the time stable with 5 cars, disconnected differed cards if there was a problem with the 6th card but nothing.
And atm. i am using Claymore dual miner Driver version 384,76 because windows did it automatically pool: Ethermine, Sia Nanopool
|
|
|
|