Bitcoin Forum
May 09, 2024, 10:42:13 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 [3]  All
  Print  
Author Topic: New mining pool for testing (now closed)  (Read 20702 times)
adv
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
February 13, 2011, 05:32:55 AM
 #41

When will next run a pool? This is particularly relevant in the context of the problems with the Slush's pool.

U may thank me here: 14Js1ng1SvYBPgUJnjNAEPYH4d6SHF79UF
1715294533
Hero Member
*
Offline Offline

Posts: 1715294533

View Profile Personal Message (Offline)

Ignore
1715294533
Reply with quote  #2

1715294533
Report to moderator
If you want to be a moderator, report many posts with accuracy. You will be noticed.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715294533
Hero Member
*
Offline Offline

Posts: 1715294533

View Profile Personal Message (Offline)

Ignore
1715294533
Reply with quote  #2

1715294533
Report to moderator
Cdecker
Hero Member
*****
Offline Offline

Activity: 489
Merit: 504



View Profile WWW
February 13, 2011, 02:05:17 PM
 #42

I'm trying to build my own small pool which I'd use to gather statistics about the miners I'm deploying. Would that script work for that purpose? I guess that validation is not necessary if I trust my miners, right?

Want to see what developers are chatting about? http://bitcoinstats.com/irc/bitcoin-dev/logs/
Bitcoin-OTC Rating
jgarzik (OP)
Legendary
*
Offline Offline

Activity: 1596
Merit: 1091


View Profile
February 13, 2011, 04:36:07 PM
 #43

I'm trying to build my own small pool which I'd use to gather statistics about the miners I'm deploying. Would that script work for that purpose?

Yes.

Quote
I guess that validation is not necessary if I trust my miners, right?

Correct.

Jeff Garzik, Bloq CEO, former bitcoin core dev team; opinions are my own.
Visit bloq.com / metronome.io
Donations / tip jar: 1BrufViLKnSWtuWGkryPsKsxonV2NQ7Tcj
Txyru
Member
**
Offline Offline

Activity: 61
Merit: 10


View Profile
February 21, 2011, 10:50:06 PM
Last edit: February 22, 2011, 05:52:52 AM by Txyru
 #44

Maybe someone can help me here to get poold.py setup.

I recreated the database thats needed, but the pool server keeps rejecting all the CHECKWORKs for my own pc using m0mchill's gpu miner. It works fine with bitpenny, but I dont know why its getting rejected. In my client it says work accepted, but on the server in the cmd window it says that it has been rejected, doesnt give a reason, and doesnt give credit.

Here are some screenshots...



EDIT: I confirmed that this is actually CORRECT operation and that credits are only given when a block is found. False alarm.

Also, for anyone who wants to use poold.py, here is the SQL you need to recreate the database to get started...

Code:
BEGIN TRANSACTION;
CREATE TABLE credits (username TEXT, height NUMERIC, type TEXT, v TEXT, datetime NUMERIC);
CREATE TABLE shares (username TEXT, height NUMERIC, datetime NUMERIC, accepted TEXT, datastr TEXT);
CREATE TABLE users (username TEXT, password TEXT);
COMMIT;
geebus
Sr. Member
****
Offline Offline

Activity: 258
Merit: 250



View Profile WWW
March 12, 2011, 02:03:32 AM
 #45

PATCH FOR POOLD.PY TO ALLOW SUPPORT FOR UFASOFT'S CPU MINER:

Original - Lines 319 - 323:
Code:
	auth = s.headers.get('Authorization')
auth_user = checkauth(db, auth)
if auth_user is None:
s.send_error(401, "not authorized")
return

Change to:
Code:
                auth = s.headers.get('Authorization')
                if auth is None:
                        s.send_response(401)
                        s.send_header('WWW-Authenticate', 'Basic realm=\"poold\"')
                        s.send_header('Content-type', 'text/html')
                        s.end_headers()
                        auth = s.headers.get('Authorization')
                auth_user = checkauth(db, auth)
                if auth_user is None:
                        s.send_error(401, "not authorized")
                        return

Feel like donating to me? BTC Address: 14eUVSgBSzLpHXGAfbN9BojXTWvTb91SHJ
snedie
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
March 13, 2011, 07:49:03 PM
 #46

You still looking for testers? I'm willing to donate a single miner running a 5970 core. What method are you using to share the bitcoins earned?
jgarzik (OP)
Legendary
*
Offline Offline

Activity: 1596
Merit: 1091


View Profile
March 13, 2011, 08:29:18 PM
 #47

You still looking for testers? I'm willing to donate a single miner running a 5970 core. What method are you using to share the bitcoins earned?

The pool test has been closed for a few weeks.  I'll update the top post.


Jeff Garzik, Bloq CEO, former bitcoin core dev team; opinions are my own.
Visit bloq.com / metronome.io
Donations / tip jar: 1BrufViLKnSWtuWGkryPsKsxonV2NQ7Tcj
Pages: « 1 2 [3]  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!