Bitcoin Forum
June 23, 2024, 09:57:10 AM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 [3]
41  Bitcoin / Mining software (miners) / Re: AOCLBF (was Phoenix Rising): Phoenix/POCLBM GUI With Built-In Overclock Tool on: July 22, 2011, 08:12:28 PM
As someone stated earlier, its not really a big thing to move your OSD boxes outside/edges of viewing area. Once youre done watching your daily show, you can move them back in seconds.
42  Bitcoin / Mining software (miners) / Re: bitHopper: Python Pool Hopper Proxy on: July 22, 2011, 08:09:28 PM
X8s.de now swapped to PPLNS

"Found block for Round 30 18 minutes ago · reply · retweet · favorite"

"After finding the next block we'll switch to PPLNS 5 hours ago · reply · retweet · favorite"

I removed them. Personally I hate PPLNS, once you stop mining those pools your shares starts instantly falling no matter how much you mined. When they then hit a block during your downtime you'll get only pennies.. Would be interesting to know efficiency of eg. x8s for 24/7 mining because there will always be people who start mining earlier in round and then drop off. Their contribution helps finding block faster and that benefits 24/7 miners.
43  Bitcoin / Mining support / Re: Best software setup for specific mining rig? on: July 22, 2011, 07:59:35 PM
I´d say win7 if you have 4 gpu´s. Easier OC'ing and miners with better GUI's. No real performance difference between the two. However, if youre planning to add one or two more gpu's, then a linux distro of your choice, because win doesnt support more than 4 gpu's. Linuxcoin is nice because it has almost all set up for you. Still a matter of personal taste. I have win7 for my main computer with 4 gpu's and linuxcoin for my dedicated mining rig with 5 gpu´s.
44  Bitcoin / Mining support / Re: Mining w/ two 5830s reboots system on: July 22, 2011, 07:53:58 PM
I had similar issues with 11.6b and also couldnt OC as high as with 11.6. Try 11.6 if that works better for you.
45  Bitcoin / Mining software (miners) / Re: bitHopper: Python Pool Hopper Proxy on: July 22, 2011, 06:23:21 PM
Edit: Nothing anymore  Smiley
46  Bitcoin / Mining software (miners) / Re: bitHopper: Python Pool Hopper Proxy on: July 17, 2011, 02:47:05 PM
you are missing a comma

Working now, thanks  Smiley
47  Bitcoin / Mining software (miners) / Re: bitHopper: Python Pool Hopper Proxy on: July 17, 2011, 02:27:08 PM
I have multiple gpu's so soes it matter if I have 1 worker for each pool and running multiple phoenix clients pointed to only 1 bithopper client or should I have 1 worker, 1 bithopper client and 1 phoenix client for each gpu?

Bithopper is a proxy. Point as many clients as you like at it.

Quote
Also I get syntax error and script wont start when applying nofee's code to pools.py, any clue why's that?

Can you post your code as entered in pools.py and password.py as well as the error?



Error:
Code:
Traceback (most recent call last):
  File "D:\aaaphoenix\bithopper\bitHopper.py", line 7, in <module>
    import work
  File "D:\aaaphoenix\bithopper\work.py", line 12, in <module>
    from bitHopper import *
  File "D:\aaaphoenix\bithopper\bitHopper.py", line 9, in <module>
    import stats
  File "D:\aaaphoenix\bithopper\stats.py", line 6, in <module>
    import pool
  File "D:\aaaphoenix\bithopper\pool.py", line 62
    'nofee':{'shares': default_shares, 'name': 'nofee',
          ^
SyntaxError: invalid syntax
>>>

pools:
Code:
  'nofee':{'shares': default_shares, 'name': 'nofee',
           'mine_address': 'nofeemining.com:8332', 'user': nofee_user,
           'pass': nofee_pass, 'lag': False, 'LP': None,
           'api_address':'http://www.nofeemining.com/api.php?key=' + nofee_user_apikey, 'role':'mine'}
        }
.
.
.
def nofee_sharesResponse(response):
    global servers
    info = json.loads(response)
    round_shares = int(info['poolRoundShares'])
    servers['nofee']['shares'] = round_shares
    bitHopper.log_msg('nofee:' + FormatShares(round_shares))
.
.
.
'nofee':nofee_sharesResponse,

password:
Code:
#nofee
nofee_user = 'my worker id'
nofee_pass= 'my password'
nofee_user_apikey = 'my api'
48  Bitcoin / Mining software (miners) / Re: bitHopper: Python Pool Hopper Proxy on: July 17, 2011, 02:13:56 PM
I have multiple gpu's so soes it matter if I have 1 worker for each pool and running multiple phoenix clients pointed to only 1 bithopper client or should I have 1 worker, 1 bithopper client and 1 phoenix client for each gpu?

Also I get syntax error and script wont start when applying nofee's code to pools.py, any clue why's that?
49  Bitcoin / Mining software (miners) / Re: bitHopper: Python Pool Hopper Proxy on: July 17, 2011, 12:51:35 PM
Does anyone know how to fix this:

EDIT: The answer was in readme  Smiley
Code:
[15:49:15] Error in user api for bitp
"[Failure instance: Traceback: <type 'exceptions.AssertionError'>: SSL support is not present\nC:\\Python27\\lib\\site-packages\\twisted\\internet\\task.py:194:__call__\nC:\\Python27\\lib\\site-packages\\twisted\\internet\\defer.py:133:maybeDeferred\nD:\\aaaphoenix\\bithopper\\stats.py:93:update_api_stats\nC:\\Python27\\lib\\site-packages\\twisted\\internet\\defer.py:1141:unwindGenerator\n--- <exception caught here> ---\nC:\\Python27\\lib\\site-packages\\twisted\\internet\\defer.py:1020:_inlineCallbacks\nD:\\aaaphoenix\\bithopper\\work.py:70:get\nD:\\aaaphoenix\\bithopper\\client.py:748:request\nD:\\aaaphoenix\\bithopper\\client.py:797:_request\nD:\\aaaphoenix\\bithopper\\client.py:698:_connect\nC:\\Python27\\lib\\site-packages\\twisted\\internet\\protocol.py:289:connectSSL\nC:\\Python27\\lib\\site-packages\\twisted\\internet\\protocol.py:239:_connect\nC:\\Python27\\lib\\site-packages\\twisted\\internet\\posixbase.py:434:connectSSL\n]"

Same error for all pools. I have api´s defined in psdws.py and logins in pools.py.
50  Bitcoin / Mining software (miners) / Re: bitHopper: Python Pool Hopper Proxy on: July 15, 2011, 11:56:33 PM
What I am doing wrong?

Code:
root@linuxcoin:/opt/miners/phoenix/bithopper# sudo python bitHopper.py
Traceback (most recent call last):
  File "bitHopper.py", line 7, in <module>
    import work
  File "/opt/miners/phoenix/bithopper/work.py", line 12, in <module>
    from bitHopper import *
  File "/opt/miners/phoenix/bithopper/bitHopper.py", line 8, in <module>
    import diff
  File "/opt/miners/phoenix/bithopper/diff.py", line 13, in <module>
    difficulty = get_difficulty()
  File "/opt/miners/phoenix/bithopper/diff.py", line 9, in get_difficulty
    response = urllib2.urlopen(req)
  File "/usr/lib/python2.6/urllib2.py", line 126, in urlopen
    return _opener.open(url, data, timeout)
  File "/usr/lib/python2.6/urllib2.py", line 397, in open
    response = meth(req, response)
  File "/usr/lib/python2.6/urllib2.py", line 510, in http_response
    'http', request, response, code, msg, hdrs)
  File "/usr/lib/python2.6/urllib2.py", line 435, in error
    return self._call_chain(*args)
  File "/usr/lib/python2.6/urllib2.py", line 369, in _call_chain
    result = func(*args)
  File "/usr/lib/python2.6/urllib2.py", line 518, in http_error_default
    raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
urllib2.HTTPError: HTTP Error 503: Service Unavailable
51  Other / Beginners & Help / Re: Three 5770's vs Two 5830's on: July 10, 2011, 07:34:36 PM
5830 are more efficient for each dollar you pay.
52  Other / Beginners & Help / Re: Newbie lessons learned after building first mining rig on: July 10, 2011, 07:33:32 PM
No point using GD70 just because ou get the cards on motherboard. Just buy cheapest mobo with enough pci-e ports and use extenders.
53  Other / Beginners & Help / Re: Newbie restrictions on: July 10, 2011, 07:31:18 PM
I support these restictions.
54  Other / Beginners & Help / Re: Introduce yourself :) on: July 10, 2011, 07:30:06 PM
Hi to everyone  Smiley
55  Other / Beginners & Help / Re: further improved phatk OpenCL kernel (> 2% increase) for Phoenix - 2011-07-06 on: July 06, 2011, 03:20:00 PM
Went from 322 to 329 with hd 5830
Pages: « 1 2 [3]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!