Bitcoin Forum
April 23, 2024, 11:21:54 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 30 31 32 33 34 35 36 37 38 39 40 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 ... 159 »
  Print  
Author Topic: [~1000 GH/sec] BTC Guild - 0% Fee Pool, LP, SSL, Full Precision, and More  (Read 379025 times)
Moussekateer
Member
**
Offline Offline

Activity: 69
Merit: 10


View Profile
June 28, 2011, 12:11:45 AM
 #1581

Use adblock, and you wont see any ads Smiley  I never knew the account page or any other page had ads on it Smiley

And why would you do that? If you don't donate to the server the least you can do is allow a small ad on the page to help with server costs. There are times to use adblock but this isn't one of those times.
1713914514
Hero Member
*
Offline Offline

Posts: 1713914514

View Profile Personal Message (Offline)

Ignore
1713914514
Reply with quote  #2

1713914514
Report to moderator
1713914514
Hero Member
*
Offline Offline

Posts: 1713914514

View Profile Personal Message (Offline)

Ignore
1713914514
Reply with quote  #2

1713914514
Report to moderator
"I'm sure that in 20 years there will either be very large transaction volume or no volume." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713914514
Hero Member
*
Offline Offline

Posts: 1713914514

View Profile Personal Message (Offline)

Ignore
1713914514
Reply with quote  #2

1713914514
Report to moderator
xenon481
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250



View Profile
June 28, 2011, 03:49:25 AM
 #1582

Out of curiosity, why does it take 120 confirmations, vs. slush only takes 100 confirmations?

If you Solo mine, and actually find a block... the 50 Bitcoin reward appears as a "Generated" transaction... as opposed to a "Sent" or "Received" transaction.
The Bitcoin protocol requires 120 confirmations before "Generated" coins can be spent. Since the pool Generates the coins, eleuthria is just making you wait the same amount of time that he has to wait before you can get your reward. I have no idea why any other pool would not use that same 120 confirmations.

The 120 confirmations are required to make absolutely sure that the block that was found is valid.

Now, let me take this time to remind everyone that you can skip all the waiting if you adjust your donation to 2.5% or more.
Not only do you help eleuthria pay for the servers needed to run the pool, but when a block is found, your estimated rewards goes instantly to your confirmed rewards. Even if a block is invalid, you still get paid.

The Bitcoin protocol actually only requires 100 confirmations before "Generated" coins are credited to your address and are spendable. It's just that the local client doesn't actually let you spend them for another 20 confirmations for some reason. Slush (and maybe others) modified their local bitcoin clients to allow them to go ahead and spend them immediately after they have been credited (100 confirmations) instead of waiting 20 more.

Tips Appreciated: 171TQ2wJg7bxj2q68VNibU75YZB22b7ZDr
eleuthria (OP)
Legendary
*
Offline Offline

Activity: 1750
Merit: 1007



View Profile
June 28, 2011, 04:15:07 AM
Last edit: June 28, 2011, 04:55:43 AM by eleuthria
 #1583

UK server cluster is now online.  Current setup is two pool nodes.  If all goes well, I will add a third node and take down NL2.btcguild.com (pointing that old address to the new server).

UPDATE:  UK servers had a quick restart (~5 seconds) to fix their addnode settings so they will always connect to the BTC Guild pool nodes.

RIP BTC Guild, April 2011 - June 2015
deadlizard
Member
**
Offline Offline

Activity: 112
Merit: 11



View Profile
June 28, 2011, 04:21:50 AM
 #1584

I never knew the account page or any other page had ads on it Smiley
yeah, I never know where the ads are until someone complains   
There are times to use adblock
[/quote]
Wait, you can turn it off? why would you ever do that?

btc address:1MEyKbVbmMVzVxLdLmt4Zf1SZHFgj56aqg
gpg fingerprint:DD1AB28F8043D0837C86A4CA7D6367953C6FE9DC

swusc2
Sr. Member
****
Offline Offline

Activity: 304
Merit: 250


Do your part for Bitcoin!


View Profile
June 28, 2011, 06:59:58 AM
 #1585

I tried connecting to the UK cluster server for a bit. What people are saying is that it gets work and solves shares but the Worker Summary doesn't display it. It's probably a front end error.

Impress your friends! Buy a bitcoin keychain!
http://forum.bitcoin.org/index.php?topic=30799.0
modrobert
Sr. Member
****
Offline Offline

Activity: 355
Merit: 284


-"When the going gets weird, the weird turn pro."


View Profile WWW
June 28, 2011, 08:24:22 AM
 #1586

I made a simple python json script to read from the BTC Guild API using the key found under "API Settings" in the user account at btcguild.com.

Code:
#!/usr/bin/env python
import sys, simplejson, urllib
API_KEY = 'insert your api key here'
API_ARG = 'api_key'
URL_BASE = 'http://www.btcguild.com/api.php'


class BtcGuildError(Exception):
    pass

def stats(query):
    url = URL_BASE + '?' + API_ARG + '=' + API_KEY
    result = simplejson.load(urllib.urlopen(url))
    if 'Error' in result:
        # An error occurred; raise an exception
        raise BtcGuildError, result['Error']
    if query == 'all':
        return result
    else:
        return result[query]

def main():
    if len(sys.argv) == 2 and (sys.argv[1] == 'all' or sys.argv[1] == 'workers' or sys.argv[1] == 'user' or sys.argv[1] == 'pool'):
        print simplejson.dumps(stats(sys.argv[1]), indent=4)
    else:
        sys.exit("Usage: btcgstats.py <all|workers|user|pool>")

if __name__ == "__main__":
    main()

Set API_KEY to your own and run the script.
MiningBuddy
Hero Member
*****
Offline Offline

Activity: 927
Merit: 1000


฿itcoin ฿itcoin ฿itcoin


View Profile
June 28, 2011, 09:26:36 AM
Last edit: June 28, 2011, 10:02:14 AM by MiningBuddy
 #1587

UK servers aren't showing share stats on the front end. We are getting credit & total shares show on the block stats page.

I don't mean to be that guy but this has been the case with EVERY new server added recently... maybe its time for a check list  Cheesy

darkpandora
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
June 28, 2011, 10:43:16 AM
 #1588

im mining at eu.btcguild.com:8332/ and on my mining rig my Mhash/sec is 1670. but on btcguild it dont show my total Mhash/s or Estimated Rewards.

is it counting my shares or should i change pool?

K U R D I  S T A N
K U R D I S T A N
K U R D I S T A N
eleuthria (OP)
Legendary
*
Offline Offline

Activity: 1750
Merit: 1007



View Profile
June 28, 2011, 01:18:38 PM
 #1589

UK servers aren't showing share stats on the front end. We are getting credit & total shares show on the block stats page.

I don't mean to be that guy but this has been the case with EVERY new server added recently... maybe its time for a check list  Cheesy

Fixed the problem.  It actually wasn't a problem on NL2 or DE.  I added the stats -before- I put the server online this time.  Unfortunately, I had a typo on the IP address (left off the last digit) used to request the server's worker summary for a user on the My Account page.

im mining at eu.btcguild.com:8332/ and on my mining rig my Mhash/sec is 1670. but on btcguild it dont show my total Mhash/s or Estimated Rewards.

is it counting my shares or should i change pool?

Shares were still being counted, it was just the worker summary script not properly polling the UK server cluster.

RIP BTC Guild, April 2011 - June 2015
kosovito
Member
**
Offline Offline

Activity: 77
Merit: 10


View Profile
June 28, 2011, 02:27:15 PM
 #1590

Just a suggestion, put servers address on web, on every name of server

Please sir, give me any coin Smiley  135T7F27z7Mtvwffz359BE1zSfYgT1oJ8S
darkpandora
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
June 28, 2011, 02:51:38 PM
 #1591

i get this error when starting the mining:
failed to connect, retrying.

is this pool really fixed or whats going on?

K U R D I  S T A N
K U R D I S T A N
K U R D I S T A N
compro01
Hero Member
*****
Offline Offline

Activity: 590
Merit: 500



View Profile
June 28, 2011, 02:55:18 PM
 #1592

i get this error when starting the mining:
failed to connect, retrying.

is this pool really fixed or whats going on?

which server are you trying to connect to?
eleuthria (OP)
Legendary
*
Offline Offline

Activity: 1750
Merit: 1007



View Profile
June 28, 2011, 02:57:41 PM
 #1593

EU (UK) having a few issues after trying to point regular 'btcguild.com' to it (~600 GH worth of people who haven't picked a specific server).  Working on diagnosing the problem, btcguild.com pointed back to DE for now.

RIP BTC Guild, April 2011 - June 2015
darkpandora
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
June 28, 2011, 03:50:34 PM
 #1594

i get this error when starting the mining:
failed to connect, retrying.

is this pool really fixed or whats going on?

which server are you trying to connect to?

eu.btcguild.com

but now its working fine after connecting to uswest.btcguild.com

K U R D I  S T A N
K U R D I S T A N
K U R D I S T A N
CubedRoot
Sr. Member
****
Offline Offline

Activity: 291
Merit: 250


View Profile
June 28, 2011, 04:28:41 PM
 #1595

Use adblock, and you wont see any ads Smiley  I never knew the account page or any other page had ads on it Smiley

And why would you do that? If you don't donate to the server the least you can do is allow a small ad on the page to help with server costs. There are times to use adblock but this isn't one of those times.

I refuse to look at ads in my browser. Sorry.  Especially when I am donating 2.5% to the pool, I despise the idea of having to look at ads.
I run adblock on every single site I visit. There are many many other ways a site can make money other than plastering the page with ads.
Clavulanic
Sr. Member
****
Offline Offline

Activity: 714
Merit: 250



View Profile
June 28, 2011, 05:12:51 PM
 #1596

I don't know if this was talked about before, but recently (the past few days) my systems have been bouncing from 99% GPU load to 95% and even lower sometimes. This happened on 4 different systems and I couldn't get it to stay steady at 99% as usual. I switched over to slush's pool for now and they are all staying steady at 99%. This is with the same settings and same systems. Any info on what might have happened?

██████████

████████

██████

████

██████

████████

██████████
.
Appreciate Coin
Send and receive tokens
in blogs and social
media communities
▄▄█████████▄▄
▄█████████████████▄
▄███▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀███▄
▄████ ███ █████ ███ ████▄
▄█████▄▄ ▄▄▄▄ ▄▄▄▄ ▄▄█████▄
██████▀▀ ▀▀▀▀ ▀▀▀▀ ▀▀██████
██████ ███ █████ ███ ██████
██████▄▄ ▄▄▄▄ ▄▄▄▄ ▄▄██████
▀█████▀▀ ▀▀▀▀ ▀▀▀▀ ▀▀█████▀
▀████ ███ █████ ███ ████▀
▀███▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄███▀
▀█████████████████▀
▀▀█████████▀▀
▀▀▀▀▀▀▀▀
NO
INFLATION

.
▀▀▀▀▀▀▀▀
▄▄█████████▄▄
▄███████▀▀▀███████▄
▄████▀▀▀▀  ▄  ▀▀▀▀████▄
▄████  ▄▄▄▄███▄▄▄▄  ████▄
▄█████  ███████████  █████▄
████▀  ▄██▀     ▀██▄  █████
████  ████  ███  ████  ████
████▄  ▀██▄     ▄██▀  █████
▀█████  ███████████  █████▀
▀████  ▀▀▀▀███▀▀▀▀  ████▀
▀████▄▄▄▄  ▀  ▄▄▄▄████▀
▀███████▄▄▄███████▀
▀▀█████████▀▀
▀▀▀▀▀▀▀▀
TECHNICAL
INTEGRATIONS

.
▀▀▀▀▀▀▀▀
▄▄█████████▄▄
▄█████████████████▄
▄██████████▀██████████▄
▄█████████▀   ▀█████████▄
▄████████▀       ▀████████▄
█████████▄▄█▌ ▐█▄▄█████████
████████████▌ ▐████████████
████████████▌ ▐████████████
▀███████████▌ ▐███████████▀
▀██████████▌ ▐██████████▀
▀█████████████████████▀
▀█████████████████▀
▀▀█████████▀▀
▀▀▀▀▀▀▀▀
GROWING
USE CASES

.
▀▀▀▀▀▀▀▀
▄▄█████████▄▄
▄█████████████████▄
▄████████▀   ▀████████▄
▄████▀     ▄▄▄     ▀████▄
▄█████  ███████████  █████▄
████▀  ▄███████▀▀██▄  ▀████
████  ████  ▀▀  ▄████  ████
████▄  ▀███▄  ▄████▀  ▄████
▀█████  ███████████  █████▀
▀████▄     ▀▀▀     ▄████▀
▀████████▄   ▄████████▀
▀█████████████████▀
▀▀█████████▀▀
▀▀▀▀▀▀▀▀
EASE OF
CRYPTO TRADING

.
▀▀▀▀▀▀▀▀
██████████

████████

██████

████

██████

████████

██████████
TurdHurdur
Full Member
***
Offline Offline

Activity: 216
Merit: 100


View Profile
June 28, 2011, 05:13:52 PM
 #1597

I refuse to look at ads in my browser. Sorry.  Especially when I am donating 2.5% to the pool, I despise the idea of having to look at ads.
I run adblock on every single site I visit. There are many many other ways a site can make money other than plastering the page with ads.

I'm donating 2.5% and there are no ads. Could you tell me of some of the "many many" other ways a site can make money?
eleuthria (OP)
Legendary
*
Offline Offline

Activity: 1750
Merit: 1007



View Profile
June 28, 2011, 05:18:46 PM
 #1598

The ads only appear for < 0.5% donators.  Adblock or not, they will not appear unless your donation is at the lowest levels.  The site is not "plastered with ads".  It has one wide but short google adsense banner ad.

Other ways to make money?  I'd be all for it!  This was just a way to get something out of the continued growth.  The pool's donations per block have been slipping consistently, and these ads on 0.0-0.4% donators are a very good way to normalize the revenue coming from people who don't give back to a pool that is currently demanding many dedicated servers. 

RIP BTC Guild, April 2011 - June 2015
Clipse
Hero Member
*****
Offline Offline

Activity: 504
Merit: 502


View Profile
June 28, 2011, 05:20:14 PM
 #1599

btcguild having issues with proper updates on rounds again?

...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)
eleuthria (OP)
Legendary
*
Offline Offline

Activity: 1750
Merit: 1007



View Profile
June 28, 2011, 05:21:25 PM
 #1600

btcguild having issues with proper updates on rounds again?

Rounds have been running fine all morning without any need for intervention.  What are you referring to?

RIP BTC Guild, April 2011 - June 2015
Pages: « 1 ... 30 31 32 33 34 35 36 37 38 39 40 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 ... 159 »
  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!