Bitcoin Forum
May 04, 2024, 11:03:58 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 19 20 21 22 23 24 25 26 27 28 29 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 ... 1154 »
  Print  
Author Topic: [4+ EH] Slush Pool (slushpool.com); Overt AsicBoost; World First Mining Pool  (Read 4381866 times)
[Tycho]
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500



View Profile WWW
March 21, 2011, 04:48:17 AM
 #1361

This is a bit risky, so I'm using your pool to keep my variance down. Getting a bitcoin or two every day has really aided my peace of mind (and my relationship with my wife, who was a bit skeptical about the whole affair). It's well worth the expected "cost" of a few bitcoins a month. I'm still running an unpooled miner as well, since the lure of the big hit is ever present, but in the meantime I know I'll mine enough to pay my electric bill and have a bit left over.
You should get more than 1-2 BTC per day with 5970. Even a half of 5970 (~290 MH/s) should mine ~3.5+ BTC daily.

Welcome to my bitcoin mining pool: https://deepbit.net - Both payment schemes (including PPS), instant payout, no invalid blocks !
ICBIT Trading platform : USD/BTC futures trading, Bitcoin difficulty futures (NEW!). Third year in bitcoin business.
1714863838
Hero Member
*
Offline Offline

Posts: 1714863838

View Profile Personal Message (Offline)

Ignore
1714863838
Reply with quote  #2

1714863838
Report to moderator
1714863838
Hero Member
*
Offline Offline

Posts: 1714863838

View Profile Personal Message (Offline)

Ignore
1714863838
Reply with quote  #2

1714863838
Report to moderator
1714863838
Hero Member
*
Offline Offline

Posts: 1714863838

View Profile Personal Message (Offline)

Ignore
1714863838
Reply with quote  #2

1714863838
Report to moderator
You get merit points when someone likes your post enough to give you some. And for every 2 merit points you receive, you can send 1 merit point to someone else!
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
Ian Maxwell
Full Member
***
Offline Offline

Activity: 140
Merit: 100



View Profile WWW
March 21, 2011, 05:08:29 AM
 #1362

To clarify: getting a bitcoin or two on a really bad day. On a good day, five or six.

Ian Maxwell
PGP key | WoT rating
Cdecker
Hero Member
*****
Offline Offline

Activity: 489
Merit: 504



View Profile WWW
March 21, 2011, 11:12:54 AM
 #1363

Small update today. I added JSON API for profile page and token mechanism to authenticate against it without need of login/password in your scripts. I see that many of you are downloading profile page and parse it periodically. This API is now preferred way to check your account balance.

For API interface instructions, follow the link on top of your profile page.

This is great, I was one of the guys scraping the page (5 minutes, I figured what's the harm), but this makes it so much easier.

For those of you using Munin, now you can monitor the pools like I do:
Code:
#!/bin/bash

case $1 in
  config)
    echo "graph_title Pool reward"
    echo "graph_vlabel BTC"
    echo "confirmed_reward.label Confirmed Reward"
    echo "total_reward.label Total Reward"
    echo "graph_category Bitcoin"
    exit 0;;
esac


CURL_OPTS="-b /tmp/cookies.txt -c /tmp/cookies.txt -L -s --max-time 3 -k"
URL="https://mining.bitcoin.cz/accounts/profile/json/YOUR_TOKEN_HERE"

PROFILE=`curl $CURL_OPTS $URL`
CONFIRMED=`echo $PROFILE | grep -E '"confirmed_reward": "[0-9\.]+"' -o | awk '{print $2}' | sed 's/"//g'`
UNCONFIRMED=`echo $PROFILE | grep -E '"unconfirmed_reward": "[0-9\.]+"' -o | awk '{print $2}' | sed 's/"//g'`
TOTAL=`echo "scale=8; $CONFIRMED + $UNCONFIRMED" | bc`
echo total_reward.value $TOTAL
echo confirmed_reward.value $CONFIRMED

Just add your token and drop it into /etc/munin/plugins/ ^^

The graphs look like this:

Want to see what developers are chatting about? http://bitcoinstats.com/irc/bitcoin-dev/logs/
Bitcoin-OTC Rating
kindle
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile
March 21, 2011, 04:00:54 PM
 #1364

Hi Slush I noticed the following issues with the connection

Listener for "BTM 5970 (1)": 21/03/2011 23:56:35, Server temporarily down for maintenance
Listener for "BTM 5850": 21/03/2011 23:56:36, Server temporarily down for maintenance
Listener for "BTM 5970 (2)": 21/03/2011 23:57:38, Problems communicating with bitcoin RPC
Listener for "BTM 5850": 21/03/2011 23:58:36, Server temporarily down for maintenance

Is there some upgrading going on at the sever ?

Cheers!

dishwara
Legendary
*
Offline Offline

Activity: 1855
Merit: 1016



View Profile
March 21, 2011, 04:18:06 PM
 #1365

Too much RPC error today.
xenon481
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250



View Profile
March 21, 2011, 04:21:49 PM
 #1366

Currently, the Block History on the Statistics page only displays the last 30 blocks solved by the pool. This can be a problem (and is right now) if the pool has solved more than 30 blocks within a time period that the entire network hasn't yet solved 120 blocks. In this case, you can't monitor whether the solved blocks are being successfully confirmed nor how far away they are from being confirmed.

For instance, currently, the pool's block 2193 (114305) is the last one listed on the page, but it still has 7 confirmations left. I can't tell from the page whether or not there are any other blocks (say 2192) that still require confirmations.

Theoretically, this should only be a problem when the pool has approximately (keeping variance in mind) 1/3rd (or is it 1/4th?) of the total current hashing power of the entire network.

Tips Appreciated: 171TQ2wJg7bxj2q68VNibU75YZB22b7ZDr
[Tycho]
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500



View Profile WWW
March 21, 2011, 04:30:39 PM
 #1367

Currently, the Block History on the Statistics page only displays the last 30 blocks solved by the pool. This can be a problem (and is right now) if the pool has solved more than 30 blocks within a time period that the entire network hasn't yet solved 120 blocks. In this case, you can't monitor whether the solved blocks are being successfully confirmed nor how far away they are from being confirmed.
http://mining.bitcoin.cz/stats/?history=1000

Welcome to my bitcoin mining pool: https://deepbit.net - Both payment schemes (including PPS), instant payout, no invalid blocks !
ICBIT Trading platform : USD/BTC futures trading, Bitcoin difficulty futures (NEW!). Third year in bitcoin business.
Ian Maxwell
Full Member
***
Offline Offline

Activity: 140
Merit: 100



View Profile WWW
March 21, 2011, 04:37:16 PM
 #1368

Thanks, I was wondering the same thing. Is there any way we could get a pull-down menu or something on the page?

Question: I notice that at the beginning of every block, my expected reward shoots up, then gradually moves down again. Is this an artifact of the payment system, or is it because people are trying to game it by disconnecting right after a block is found and reconnecting a few minutes later?

If the latter, it seems like it's self-correcting: by staying connected I have a small chance of a much higher reward, with the expected payout probably not changing that much.

Ian Maxwell
PGP key | WoT rating
xenon481
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250



View Profile
March 21, 2011, 04:50:35 PM
 #1369

Question: I notice that at the beginning of every block, my expected reward shoots up, then gradually moves down again. Is this an artifact of the payment system, or is it because people are trying to game it by disconnecting right after a block is found and reconnecting a few minutes later?

If the latter, it seems like it's self-correcting: by staying connected I have a small chance of a much higher reward, with the expected payout probably not changing that much.

That's the way that the score system works. Each proof of work that you find is worth full value when you find it and then gradually decreases in value as it ages.

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

Activity: 1386
Merit: 1097



View Profile WWW
March 21, 2011, 05:02:05 PM
 #1370

Too much RPC error today.

I'm intensively solving issue in bitcoind related to today's spam transactions. Looks like bitcoind is busy calculating the spam transactions and rejecting getwork requests.

Ian Maxwell
Full Member
***
Offline Offline

Activity: 140
Merit: 100



View Profile WWW
March 21, 2011, 05:16:14 PM
 #1371

xenon: I understand that, but I'm continuing to submit shares. Even if my earlier ones are aging, shouldn't my later ones be making up for it?

Ian Maxwell
PGP key | WoT rating
Shardok
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
March 21, 2011, 05:20:37 PM
 #1372

As I said, I tried most of them that were recommended and of them RPCMiner was the only one that really gave me any kind of Input on what was going wrong.

With ufasoft, it just pops up, then closes.

With jgarzik, I installed it, and yet, I can't open it. It just shows a folder, then inside of it a blank named application that when run asks me what to open with, and an option to uninstall it.

Though when I navigate to the folder jgarzik installs to I find minerd.exe and when I run that it just claims to startup, then gives HTTP request failed errors. I don't see anywhere to edit the url it connects to or anything like that either.
[Tycho]
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500



View Profile WWW
March 21, 2011, 05:34:50 PM
 #1373

As I said, I tried most of them that were recommended and of them RPCMiner was the only one that really gave me any kind of Input on what was going wrong.

With ufasoft, it just pops up, then closes.

With jgarzik, I installed it, and yet, I can't open it. It just shows a folder, then inside of it a blank named application that when run asks me what to open with, and an option to uninstall it.

Though when I navigate to the folder jgarzik installs to I find minerd.exe and when I run that it just claims to startup, then gives HTTP request failed errors. I don't see anywhere to edit the url it connects to or anything like that either.
Looks like you aren't familiar with command prompt and console applications. Am i correct ?

Welcome to my bitcoin mining pool: https://deepbit.net - Both payment schemes (including PPS), instant payout, no invalid blocks !
ICBIT Trading platform : USD/BTC futures trading, Bitcoin difficulty futures (NEW!). Third year in bitcoin business.
Shardok
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
March 21, 2011, 05:40:19 PM
Last edit: March 21, 2011, 05:50:21 PM by Shardok
 #1374

No, I am, just used to ones that can Also be run by opening them. Sorta hit me that's why ufasofts was being a pain. Though now I'm only half certain if that's working or not. Running, gave no more errors after I figured out the nearly unreadable help, and it's showing a grand total of 0 MHash/s with a nice flashing line after it.

This is what I wrote, assuming it's correct for me...

Code:
bitcoin-miner -g no  -o http://mining.bitcoin.cz -u user -p pass

Why is it that no one has bothered to make one with either A: readable help, or B: a GUI?
[Tycho]
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500



View Profile WWW
March 21, 2011, 05:53:26 PM
 #1375

Why is it that no one has bothered to make one with either A: readable help, or B: a GUI?
There is GUI for m0mchil's poclbm OpenCL miner.

Welcome to my bitcoin mining pool: https://deepbit.net - Both payment schemes (including PPS), instant payout, no invalid blocks !
ICBIT Trading platform : USD/BTC futures trading, Bitcoin difficulty futures (NEW!). Third year in bitcoin business.
Cablesaurus
Sr. Member
****
Offline Offline

Activity: 302
Merit: 250



View Profile WWW
March 21, 2011, 06:00:25 PM
 #1376

Does slush' pool support long polling?

PCIe Extender Cables; Dummy Plugs, Fans; PSU Cables; Cases & More
Visit www.Cablesaurus.com and our forum thread at http://bitcointalk.org/index.php?topic=6128.0
Shardok
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
March 21, 2011, 06:01:16 PM
 #1377

I had more luck programming for a C++ class I never went to than I did trying to figure these things out. (Though that's likely because you got a C if you turned in a program that at least had a few lines written in it saying what you wanted it to do)

I'm guessing it's working now, and eventually I should be able to see proof that it is by checking my account on the website.

And sadly, my video card sucks and doesn't support OpenCL
slush (OP)
Legendary
*
Offline Offline

Activity: 1386
Merit: 1097



View Profile WWW
March 21, 2011, 06:13:17 PM
 #1378

Does slush' pool support long polling?

Not yet (publicly), I'm in the last stage of testing.

slush (OP)
Legendary
*
Offline Offline

Activity: 1386
Merit: 1097



View Profile WWW
March 21, 2011, 06:32:03 PM
 #1379

Today we found one bottleneck in bitcoind. When there are many of transactions in the network and many getwork calls (as on the pool), the processing of spam transactions cause high CPU load and freeze getwork requests for the moment. This caused today's higher ratio of stale shares. Artforz found one nice workaround how to handle this, but it needs some development and testing. In the meantime, pool does not accept free transactions as quick&dirty anti-spam prevention. I understand it is far from idea, but we (me, m0mchil and ArtForz) are working on the better solution.

frankiebits
Full Member
***
Offline Offline

Activity: 155
Merit: 100



View Profile
March 21, 2011, 06:47:24 PM
 #1380

So I started mining on your pool today and right now according to my miner I have over 1500 accepted shares but in the "My account" page it is only showing around 300.

Can you help me understand a little better why that is?
Pages: « 1 ... 19 20 21 22 23 24 25 26 27 28 29 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 ... 1154 »
  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!