Bitcoin Forum
April 27, 2024, 12:20:58 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 [91] 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 ... 205 »
  Print  
Author Topic: bitHopper: Python Pool Hopper Proxy  (Read 355551 times)
Sukrim
Legendary
*
Offline Offline

Activity: 2618
Merit: 1006


View Profile
July 31, 2011, 08:42:07 AM
Last edit: July 31, 2011, 10:10:56 AM by Sukrim
 #1801

I'll publish them on a public Wuala folder most likely in 1-2 days latest, you can link that then

@c00w:
Please remove line 16 from database.py, it's not intended this way. It overwrites the whole stuff before.

https://www.coinlend.org <-- automated lending at various exchanges.
https://www.bitfinex.com <-- Trade BTC for other currencies and vice versa.
1714220458
Hero Member
*
Offline Offline

Posts: 1714220458

View Profile Personal Message (Offline)

Ignore
1714220458
Reply with quote  #2

1714220458
Report to moderator
1714220458
Hero Member
*
Offline Offline

Posts: 1714220458

View Profile Personal Message (Offline)

Ignore
1714220458
Reply with quote  #2

1714220458
Report to moderator
"This isn't the kind of software where we can leave so many unresolved bugs that we need a tracker for them." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714220458
Hero Member
*
Offline Offline

Posts: 1714220458

View Profile Personal Message (Offline)

Ignore
1714220458
Reply with quote  #2

1714220458
Report to moderator
1714220458
Hero Member
*
Offline Offline

Posts: 1714220458

View Profile Personal Message (Offline)

Ignore
1714220458
Reply with quote  #2

1714220458
Report to moderator
1714220458
Hero Member
*
Offline Offline

Posts: 1714220458

View Profile Personal Message (Offline)

Ignore
1714220458
Reply with quote  #2

1714220458
Report to moderator
macboy80
Member
**
Offline Offline

Activity: 102
Merit: 10


View Profile
July 31, 2011, 09:48:33 AM
 #1802

Did anyone catch this?

From the UnitedMiners FAQ http://www.unitedminers.com:83/?action=faq

Quote
How are payouts calculated?
We use the Pay Per Last N Shares method to calculate payouts when a round ends.

I think he sneaked that one in there while we weren't looking.  Angry
organofcorti
Donator
Legendary
*
Offline Offline

Activity: 2058
Merit: 1007


Poor impulse control.


View Profile WWW
July 31, 2011, 11:29:13 AM
 #1803

Team Hopper is now in the top rankings!

Quote
#14   Team Hopper   Gold digger   2267 MH/s   2

Thx pbj!

how do i join the pool? seems like i just did my own pool when i changed minipool name.

https://organofcorti.triplemining.com/register

but I think you have to make a new account.

Bitcoin network and pool analysis 12QxPHEuxDrs7mCyGSx1iVSozTwtquDB3r
follow @oocBlog for new post notifications
pbj sammich
Sr. Member
****
Offline Offline

Activity: 272
Merit: 250


Fighting Liquid with Liquid


View Profile
July 31, 2011, 12:23:12 PM
 #1804

^ you bet

I keep getting "User timeout cause connection failure" with bitclockers but it doesn't seem to be affecting anything
paraipan
In memoriam
Legendary
*
Offline Offline

Activity: 924
Merit: 1004


Firstbits: 1pirata


View Profile WWW
July 31, 2011, 12:32:59 PM
 #1805

If any one is interested I made an edit to the index.html so each pool name is a link to its corresponding web address. Makes it easier to visit a pool while reviewing pool stats. The links open in a new tab / window.

Just add the line "url: http://site-address-here.com" to the pool.cfg file for each pool and then change code in the index.html to the code below.

Code:
function getName(payload, srv) {
return "<a href='" + srv['url']  + "' target='_blank' style='text-decoration:underline;color:" + getColor(payload,srv) + ";'>" + srv['name'] + "</href>";
}

function getColor(payload, srv) {
if(payload['servers'][payload['current']]['name'] == srv['name']) {
return 'yellow';
}
if(srv['lag'] == true) {
return 'red';
}
return 'white';
}

I will make a pull req. for you if you want.
The code you released is public domain or you transfer copyright to c00w?

BTCitcoin: An Idea Worth Saving - Q&A with bitcoins on rugatu.com - Check my rep
ewibit
Legendary
*
Offline Offline

Activity: 2955
Merit: 1049


View Profile
July 31, 2011, 01:18:06 PM
Last edit: July 31, 2011, 01:48:14 PM by ewibit
 #1806


run with --debug like c00w said

xxx@yyy:~/bitHopper$ python bitHopper.py --debug

and post output here or in pastebin
[/quote]
------------------------------------
xxx@yyy:~/bitHopper$ python bitHopper.py --debug
[15:14:48] Updating Difficulty
[15:14:48] 1690895.8030524
[15:14:48] Updating NameCoin Difficulty
[15:14:49] 94037.96
Traceback (most recent call last):
  File "bitHopper.py", line 227, in <module>
    bithopper_global = BitHopper()
  File "bitHopper.py", line 43, in __init__
    self.pool = pool.Pool(self)
  File "/home/xxx/bitHopper/pool.py", line 33, in __init__
    self.servers[pool]['default_role'] = self.servers[pool]['role']
KeyError: 'role'
------------------------------------
its always the same (and I have done the latest git pull...)
 Huh

edit:
now I have found that it musst have something wrong with my pool.cfg
with the original pool.cfg it's ok...
I will inspect it now...
msb8r
Member
**
Offline Offline

Activity: 78
Merit: 10


View Profile WWW
July 31, 2011, 01:33:51 PM
 #1807

run with --debug like c00w said

xxx@yyy:~/bitHopper$ python bitHopper.py --debug

and post output here or in pastebin

------------------------------------
xxx@yyy:~/bitHopper$ python bitHopper.py --debug
[15:14:48] Updating Difficulty
[15:14:48] 1690895.8030524
[15:14:48] Updating NameCoin Difficulty
[15:14:49] 94037.96
Traceback (most recent call last):
  File "bitHopper.py", line 227, in <module>
    bithopper_global = BitHopper()
  File "bitHopper.py", line 43, in __init__
    self.pool = pool.Pool(self)
  File "/home/xxx/bitHopper/pool.py", line 33, in __init__
    self.servers[pool]['default_role'] = self.servers[pool]['role']
KeyError: 'role'
------------------------------------
its always the same (and I have done the latest git pull...)
 Huh

Something else that c00w said:
Quote
Errors with role:
Um check you pool.cfg and make sure very pool has its role specified. Thats the error. Some pool doesn't have a role.

New Bitcoin directory @ http://btcdir.org/
paraipan
In memoriam
Legendary
*
Offline Offline

Activity: 924
Merit: 1004


Firstbits: 1pirata


View Profile WWW
July 31, 2011, 01:36:11 PM
 #1808

man you have a stubborn hopper there

paste output of this command:
Code:
aptitude show python-twisted

BTCitcoin: An Idea Worth Saving - Q&A with bitcoins on rugatu.com - Check my rep
bitcoindaddy
Hero Member
*****
Offline Offline

Activity: 481
Merit: 500


View Profile
July 31, 2011, 03:30:06 PM
 #1809

Is bitcoins.lc playing games again? - web site says 9,987,464 rounds,  json says 138,973, but bithopper says 126183 blocks!
muyoso
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile
July 31, 2011, 03:30:54 PM
 #1810

Running the latest c00w hopper and I see that the "Exp" value is your current shares divided by difficulty.  Wouldn't it be better to do your current shares divided by the total shares of the pool instead?  That way at anytime you could glance to see how much your shares are really worth.

Would be awesome to have a total at the bottom as well where your "Total Expected:" earnings could be added.

I drink it up!
muyoso
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile
July 31, 2011, 03:32:00 PM
Last edit: July 31, 2011, 03:43:05 PM by muyoso
 #1811

Is bitcoins.lc playing games again? - web site says 9,987,464 rounds,  json says 138,973

Maybe, or they could just be delaying the update on the website.  They usually delay stats updates for 0-3600 seconds.  If it reaches 200-250k shares and the website doesn't update then there is probably trickery afoot.

Yea, there is trickery I think.  I remember the 126183 number from last time he started messing around.  Apparently he set the same number of shares this time.  Weird.  I disabled them for the moment.

I drink it up!
Clipse
Hero Member
*****
Offline Offline

Activity: 504
Merit: 502


View Profile
July 31, 2011, 03:52:51 PM
 #1812

Is bitcoins.lc playing games again? - web site says 9,987,464 rounds,  json says 138,973

Maybe, or they could just be delaying the update on the website.  They usually delay stats updates for 0-3600 seconds.  If it reaches 200-250k shares and the website doesn't update then there is probably trickery afoot.

Yea, there is trickery I think.  I remember the 126183 number from last time he started messing around.  Apparently he set the same number of shares this time.  Weird.  I disabled them for the moment.

I think he is fking around so hoppers would help with the longer round.


...In the land of the stale, the man with one share is king... >> Clipse

We pay miners at 130% PPS | Signup here : Bonus PPS Pool (Please read OP to understand the current process)
hawks5999
Full Member
***
Offline Offline

Activity: 168
Merit: 100



View Profile WWW
July 31, 2011, 03:57:51 PM
 #1813

Did anyone catch this?

From the UnitedMiners FAQ http://www.unitedminers.com:83/?action=faq

Quote
How are payouts calculated?
We use the Pay Per Last N Shares method to calculate payouts when a round ends.

I think he sneaked that one in there while we weren't looking.  Angry

Time to add on the fly payout type to web interface? Click -> PPLNS -> Ok
Save c00w from having to change code when pools pull this.

■ ▄▄▄
■ ███
■ ■  ■               
LEDGER  WALLET    ████
■■■ ORDER NOW! ■■■
              LEDGER WALLET
Smartcard security for your BTCitcoins
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Decentralized. Open. Secure.
Clipse
Hero Member
*****
Offline Offline

Activity: 504
Merit: 502


View Profile
July 31, 2011, 04:03:16 PM
 #1814

Looks like its afterall just the webpage stats that is fked at bitcoins.lc, just got paid for the long block and its still counting on the webpage.

I think the json is accurate and we are in a new block actually.

...In the land of the stale, the man with one share is king... >> Clipse

We pay miners at 130% PPS | Signup here : Bonus PPS Pool (Please read OP to understand the current process)
joulesbeef
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250


moOo


View Profile
July 31, 2011, 04:16:32 PM
 #1815

Quote
How are payouts calculated?
We use the Pay Per Last N Shares method to calculate payouts when a round ends.

well crap.. I wonder when they did that, cause I have zero coin there and I know I have mined there. I was on united miners before c00w added them officially to the hopper.

it sorta annoys me a bit, as I warned the guy that we were coming, cause his site claims all kinds of fault tolerance. He thanked me both in the forum and via email... but he couldnt tell us he was changing payment methods?



or did we hop without looking?I know i did, someone said they were good to hop so I added them.

edit:
Quote
Testing PPLNS on the dev site Fri, 29 Jul 2011 02:06:17 +0000
I guess they just added it.. or will add it shortly

eh

WE NEED MORE proportional pools


does mineco.in now work with mine_slush?

mooo for rent
hawks5999
Full Member
***
Offline Offline

Activity: 168
Merit: 100



View Profile WWW
July 31, 2011, 04:19:12 PM
 #1816

Is bitcoins.lc playing games again? - web site says 9,987,464 rounds,  json says 138,973

Maybe, or they could just be delaying the update on the website.  They usually delay stats updates for 0-3600 seconds.  If it reaches 200-250k shares and the website doesn't update then there is probably trickery afoot.

Yea, there is trickery I think.  I remember the 126183 number from last time he started messing around.  Apparently he set the same number of shares this time.  Weird.  I disabled them for the moment.

I think he is fking around so hoppers would help with the longer round.



Ironically, if he didn't fk around he'd probably get mine_charity miners.
Seems to me the question of ethics is being turned around. Faking stats is now the unethical thing, hopping is just an alternative lifestyle.

■ ▄▄▄
■ ███
■ ■  ■               
LEDGER  WALLET    ████
■■■ ORDER NOW! ■■■
              LEDGER WALLET
Smartcard security for your BTCitcoins
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Decentralized. Open. Secure.
Clipse
Hero Member
*****
Offline Offline

Activity: 504
Merit: 502


View Profile
July 31, 2011, 04:24:02 PM
 #1817

Well it now seems the json isnt updating but the webstats is fixed(he had some downtime few mins ago to fix that)

prob best to just disable for now since its allready pass 43% for this round.

...In the land of the stale, the man with one share is king... >> Clipse

We pay miners at 130% PPS | Signup here : Bonus PPS Pool (Please read OP to understand the current process)
hawks5999
Full Member
***
Offline Offline

Activity: 168
Merit: 100



View Profile WWW
July 31, 2011, 04:27:29 PM
 #1818

Quote
How are payouts calculated?
We use the Pay Per Last N Shares method to calculate payouts when a round ends.

well crap.. I wonder when they did that, cause I have zero coin there and I know I have mined there. I was on united miners before c00w added them officially to the hopper.

it sorta annoys me a bit, as I warned the guy that we were coming, cause his site claims all kinds of fault tolerance. He thanked me both in the forum and via email... but he couldnt tell us he was changing payment methods?



or did we hop without looking?I know i did, someone said they were good to hop so I added them.

edit:
Quote
Testing PPLNS on the dev site Fri, 29 Jul 2011 02:06:17 +0000
I guess they just added it.. or will add it shortly

eh

WE NEED MORE proportional pools


does mineco.in now work with mine_slush?
http://webcache.googleusercontent.com/search?oe=UTF-8&hl=en&q=cache:lNdyqYfgG74J:unitedminers.com/?action%3Dfaq
Yep on July 28 it was prop. Changed mid block. Another unethical pool op-per. Wink

■ ▄▄▄
■ ███
■ ■  ■               
LEDGER  WALLET    ████
■■■ ORDER NOW! ■■■
              LEDGER WALLET
Smartcard security for your BTCitcoins
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Decentralized. Open. Secure.
gnaget
Full Member
***
Offline Offline

Activity: 154
Merit: 102


View Profile
July 31, 2011, 04:28:56 PM
 #1819

Is bitcoins.lc playing games again? - web site says 9,987,464 rounds,  json says 138,973

Maybe, or they could just be delaying the update on the website.  They usually delay stats updates for 0-3600 seconds.  If it reaches 200-250k shares and the website doesn't update then there is probably trickery afoot.

Yea, there is trickery I think.  I remember the 126183 number from last time he started messing around.  Apparently he set the same number of shares this time.  Weird.  I disabled them for the moment.

I think he is fking around so hoppers would help with the longer round.



Ironically, if he didn't fk around he'd probably get mine_charity miners.
Seems to me the question of ethics is being turned around. Faking stats is now the unethical thing, hopping is just an alternative lifestyle.

Cheesy

Although, don't use mine_charity yet, there is a bug with it and they don't get picked up for regular mining.  Its fixed, just waiting for it to get picked up by c00w
MaGNeT
Legendary
*
Offline Offline

Activity: 1526
Merit: 1002


Waves | 3PHMaGNeTJfqFfD4xuctgKdoxLX188QM8na


View Profile WWW
July 31, 2011, 04:37:00 PM
 #1820

Quote
How are payouts calculated?


does mineco.in now work with mine_slush?

Quote
Mineco.in

We are now trialing a PPLNS reward scheme.

Who does this benefit?

In brief, this benefits 24/7 miners whilst still allowing others to get rewards for their work, but their rewards will start decreasing once they leave the pool.

Pages: « 1 ... 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 [91] 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 ... 205 »
  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!