Bitcoin Forum
September 19, 2024, 11:04:36 PM *
News: Latest Bitcoin Core release: 27.1 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 »
701  Bitcoin / Hardware / Re: Bounty: a bitstream for better utilizing the Cairnsmore1 143-243btc on: July 27, 2012, 03:58:34 PM
Zefir's escrow status added to bounty terms post.

Thank you for the support. And thanks to all contributors so far, we just entered the three-digit range (113BTC as of writing).

Keep it rolling!
702  Alternate cryptocurrencies / Mining (Altcoins) / Re: Quad XC6SLX150 Board - Initial Price £400/$640/520€ on: July 26, 2012, 11:10:44 PM
Isn't that easier to just flick a switch?

As far as I understood Yohan and Glasswalker, the Baudrate is dependent on the array controller's clock. And Glasswalker's recent bitstream operates in 25MHz mode, effectively requiring to set serial line to 57.6 kBd. Just posted a pull request to add support in fpgautils.c as preparation for a CM1 driver for cgminer.
703  Alternate cryptocurrencies / Mining (Altcoins) / Re: Quad XC6SLX150 Board - Initial Price £400/$640/520€ on: July 26, 2012, 07:53:52 PM

When I apply the Patch Zefir I get

Hunk #1 FAILED at 53.
Hunk #2 FAILED at 195.
2 out of 2 hunks FAILED -- saving rejects to file driver-icarus.c.rej
patching file fpgautils.c
Hunk #1 FAILED at 210.
1 out of 1 hunk FAILED -- saving rejects to file fpgautils.c.rej

I tried to add it manually to the file but then got errors building cgminer.

Let's fix that outside this thread, I'll contact you personally.
704  Alternate cryptocurrencies / Mining (Altcoins) / Re: Quad XC6SLX150 Board - Initial Price £400/$640/520€ on: July 26, 2012, 07:11:38 PM
How do I set the Baudrate in Cgminer Zefir? I have 2.5.0 built already just need to set that Baudrate and I think I'm good.

You need to build from source with the following patch applied:
Code:
diff --git a/driver-icarus.c b/driver-icarus.c
index 5f2c78a..ab98ac9 100644
--- a/driver-icarus.c
+++ b/driver-icarus.c
@@ -53,7 +53,7 @@
 #include "miner.h"
 
 // The serial I/O speed - Linux uses a define 'B115200' in bits/termios.h
-#define ICARUS_IO_SPEED 115200
+#define ICARUS_IO_SPEED 57600
 
 // The size of a successful nonce read
 #define ICARUS_READ_SIZE 4
@@ -195,7 +195,7 @@ static void rev(unsigned char *s, size_t l)
        }
 }
 
-#define icarus_open2(devpath, purge)  serial_open(devpath, 115200, ICARUS_READ_FAULT_DECISECONDS, purge)
+#define icarus_open2(devpath, purge)  serial_open(devpath, ICARUS_IO_SPEED, ICARUS_READ_FAULT_DECISECONDS, pu
 #define icarus_open(devpath)  icarus_open2(devpath, false)
 
 static int icarus_gets(unsigned char *buf, int fd, struct timeval *tv_finish, struct thr_info *thr, int read_
diff --git a/fpgautils.c b/fpgautils.c
index 0ebee7f..2cf8c15 100644
--- a/fpgautils.c
+++ b/fpgautils.c
@@ -210,6 +210,10 @@ serial_open(const char*devpath, unsigned long baud, signed short timeout, bool p
        switch (baud) {
        case 0:
                break;
+       case 57600:
+               cfsetispeed( &my_termios, B57600 );
+               cfsetospeed( &my_termios, B57600 );
+               break;
        case 115200:
                cfsetispeed( &my_termios, B115200 );
                cfsetospeed( &my_termios, B115200 );

To build:
Code:
./autogen.sh
./configure --disable-opencl --disable-cpumining --enable-icarus
make clean
make

And finally run with
Code:
./cgminer -S /dev/ttyUSB0 -S /dev/ttyUSB1 -S /dev/ttyUSB2 -S /dev/ttyUSB3
assuming you have a valid ~/.cgminer/cgminer.conf

705  Alternate cryptocurrencies / Mining (Altcoins) / Re: Quad XC6SLX150 Board - Initial Price £400/$640/520€ on: July 26, 2012, 05:52:32 PM
Got Glasswalker's test bitstream programmed and working.

Took my most stable board (2.63 + 2.63U with twin-test), programmed to SPI and seems to work. After ~25 minutes I get:
Code:
cgminer version 2.5.0 - Started: [2012-07-26 19:20:12]
--------------------------------------------------------------------------------
 (5s):1599.3 (avg):1495.8 Mh/s | Q:95  A:209  R:0  HW:0  E:220%  U:7.5/m
 TQ: 4  ST: 4  SS: 0  DW: 17  NB: 5  LW: 778  GF: 0  RF: 0
 Connected to http://eu.ozco.in:8332 with LP as user zeta-mining.1
 Block: 000008e19c79451adacd7c603a91be7f...  Started: [19:40:07]
--------------------------------------------------------------------------------
 [P]ool management [S]ettings [D]isplay options [Q]uit
 ICA 0:                | 367.8/372.6Mh/s | A:73 R:0 HW:0 U: 2.61/m
 ICA 1:                | 364.1/372.4Mh/s | A:75 R:0 HW:0 U: 2.68/m
 ICA 2:                | 373.9/372.8Mh/s | A:63 R:0 HW:0 U: 2.25/m
 ICA 3:                | 380.0/378.0Mh/s | A: 0 R:0 HW:0 U: 0.00/m
--------------------------------------------------------------------------------

As Glasswalker mentioned, one FPGA is idling (orange LED lit), but 7.5U is way better than 5.3U Smiley

For programming the DIP switches are to be set as Yohan was explaining in the post here, while for mining the mini-howto is almost complete: you need to switch all FPGA DIP switches (2-5) ON.


For those working with Linux, I am using the xc3sprog toolsuite natively, built from SVN with the patch I posted here and the following script (ran as sudo):
Code:
#!/bin/bash

BS=fpgaminer_top.bit

./xc3sprog -c cm1 -p0 -Ixc6lx150.bit $BS && \
./xc3sprog -c cm1 -p1 -Ixc6lx150.bit $BS && \
./xc3sprog -c cm1 -p2 -Ixc6lx150.bit $BS && \
./xc3sprog -c cm1 -p3 -Ixc6lx150.bit $BS && \
    echo "Fertig" | zenity --info || { echo "Fatal error!" && echo "Fehler" | zenity --error; }

You'll need to build cgminer from source with the Baudrate set to 57.6k to mine.


Edit: copy-paste garbage fixed
706  Bitcoin / Hardware / Re: Bounty: a bitstream for better utilizing the Cairnsmore1 143-243btc on: July 26, 2012, 03:52:02 PM
3 ppl agreeing on the escrow is just not enough, imho. I have nothing agaist zephir, nor can I say anything for him. Just havent paid that much (or any) attention to he's doings in the bitcoin world. So ramp up some more support and I'll change the post.

Hi Isokivi,

sorry if I got it wrong: you as the thread owner and bounty initiator should have done the escrow, but AFAIR you refused to do that and since some of the folks here know and trust me, I took the initiative. That might have been premature, but anticipating the bitstream to be ready this week it was not too early. If you changed your mind and want to take the responsibility, I'll be glad to send you the collected coins or give you the private key to the existing address.

Otherwise (as already stated somewhere) having 50 CM1 boards I have a personal vital interest that the advanced bitstream shows up as fast as possible and the bounty gets paid. If you need to check whether you want to trust me, just visit my mining bond thread (see my sig) and read the second post.


Thanks, Zefir
707  Bitcoin / Hardware / Re: Bounty: a bitstream for better utilizing the Cairnsmore1 143-243btc on: July 25, 2012, 07:47:18 PM
Ok folks, here we go.

I have put up a spreadsheet where I will account the contributions for this bounty.

The coins will be deposited to 1CM1bj7jxVskkvKE2kcw6L16rHMXL38aFm.

I am not going to send every contributor a personal address for correct assignment. Instead, send your money to the given address and at the same time PM me (forum mail to zefir or via email) with how much you contributed. That should be enough information to match the payment to sender.


Did I forget something? If not, let the coins roll!


@Isokivi: could you please copy the related info to the first post? Thanks!
708  Bitcoin / Hardware / Re: Bounty: a bitstream for better utilizing the Cairnsmore1 140-240btc on: July 25, 2012, 04:33:07 PM
Voting for Zefir. A really trustworthy guy who is running a solid mining bond on glbse.

Of course only if he is willing to do the escrow.

2nd proposal is Chefnet - he also proved himself as very trustworthy for selling lots of stuff on the forums.

Thank you for your trust and support. If majority is fine with me, I'll do the escrow.

In fact, I think the coins should be collected beforehand, instead of waiting the bitstream to be finalized. Due to the persistent dynamics in the Bitcoin world, too many potential events (like BTC skyrockets to 100$, pirate loosing all our coins in Vegas Wink, etc.) can make it harder to collect the coins later people are willing to contribute today.

If everyone is ok, I'll set up an offline address for the bounty and a Google Docs spreadsheet to account the contributions.

Cheers, Zefir
709  Economy / Securities / Re: [GLBSE] Zeta Bitcoin Mining - Perpetual Mining Bond on: July 22, 2012, 09:45:44 PM
Update: dividends for week 29.2012 paid, external mining contracts terminated

Dear Investors,

the dividends for week 28.2012 were paid in time with no significant news to be told. With today's payment for week 29.2012, ZETA-MINING is independent again: the external mining contracts that backed the hashing power until the Cairnsmore1 boards arrived were canceled effectively by mid of July.

The current hashing power is around 20GHps:
  • the 5 BFLS still provide 4GHps (so far, summer in Switzerland is cold Smiley)
  • 30 CM1 boards work stable in Icarus mode with a constant 0.38GHps, providing another 11.4GHps
  • the remaining 20 CM1 are unstable with various problems (e.g. only one FPGA pair mining, low hashrate, no valid shares, etc.) and deliver a combined hashrate between 3 and 5 GHps; they will be soon returned to Enterpoint for further inspection.

Note that the given hashrate is provided in Icarus mode, which means that
 a) only half of the FPGAs are used for mining
 b) the bitstream is not optimized for the CM1 HW

An Icarus based bitstream working on all four FPGAs will be available soon and double the hashrate per board, while a dedicated CM1 bitstream is supposed to unleash the full power and provide up to 1GHps per board, but will take longer to get finalized. The week I first see ZETA-MINING total hashing power exceeds 50GHps, I will add a one time 100% bonus and double that week's dividend payments. Stay tuned!


Have a nice and successful week,
Zefir

710  Bitcoin / Hardware / Re: Bounty: a bitstream for better utilizing the Cairnsmore1 on: July 21, 2012, 12:11:18 PM
Once things get started, they are getting momentum Wink

Yohan's announcement to me sounds like Glasswalker successfully took a major hurdle and might finalize what he is working on soon.

I am still committed to support the bounty, but do we need to clarify that the winner can't be Enterpoint or someone already being paid for his work by Enterpoint? Or do you think it would be ok to pay the bounty on top of the payment as additional incentive to hurry up?
711  Economy / Trading Discussion / Re: Real Time Charting, Order Book, and Time & Sales on: July 21, 2012, 10:11:30 AM
Anyone has a clue on what is going on right now? Either the charting tool suffers from some hick-up, the market runs crazy, or a bunch of trading bots are fighting the final fight: the bids are eaten up to ~9.30 and then plumped down to ~8.79 with the race being repeated continuously Huh

Maybe Mt.Gox is performing some tests (trades are disabled right now), or someone placed an order to trade 1M Bitcoins and Mt.Gox is not capable to clear it in real-time.

gox engine screwup. websocket loops the same trades all over again. they're working on it.

Hm, something's fishy, though. During the last cycle it went up to 9.7 to get kicked back to 8.725 - it is obviously not cycling always over the same data, but the spikes continuously reach higher limits. Will be interesting to see where it continues when Gox opens their doors again...
712  Economy / Trading Discussion / Re: Real Time Charting, Order Book, and Time & Sales on: July 21, 2012, 09:28:10 AM
Anyone has a clue on what is going on right now? Either the charting tool suffers from some hick-up, the market runs crazy, or a bunch of trading bots are fighting the final fight: the bids are eaten up to ~9.30 and then plumped down to ~8.79 with the race being repeated continuously Huh

Maybe Mt.Gox is performing some tests (trades are disabled right now), or someone placed an order to trade 1M Bitcoins and Mt.Gox is not capable to clear it in real-time.
713  Local / Biete / Re: Verkauft: 2*HD7970: XFX Black Edition + Gigabyte OC on: July 21, 2012, 07:57:37 AM
Danke für das Interesse, habe die Karten verkauft.

Seit ich auf FPGA mine, bin ich bei GPUs nicht mehr auf dem Laufenden. Hätte gedacht, die 7990 wären mittlerweile draussen, aber offenbar sind die 7970er immer noch das höchste der Gefühle bei ATI, oder?
714  Bitcoin / Hardware / Re: Bounty: a bitstream for better utilizing the Cairnsmore1 on: July 21, 2012, 07:10:21 AM
I agree that it is unfair to cut off the bounty solely on an Enterpoint release, and would discourage anyone from working on it.  Part 2 of your proposal makes me dizzy and you're going to get into debates on the actual values for each delta to calculate it.

I also prefer requirements to be kept simple. But I had one specific thing in mind with my second part: competition for higher speed. We have two measures to achieve here, getting a fast bitstream and getting it soon. Paying only the developer that shows up first biases the development effort towards a bitstream that just passes the minimum requirement but no more. Say someone that is already working on a bitstream and delivers 750MHps begin of August, but someone else had an idea for a 900 one, but this will take him at least end of August to finalize. The second part of my proposal would allow him at least to earn the delta for some while and motivate him to finish his work even when we had already a 'winner'.

Quote
I will make one caveat here. I will not pay a single Satoshi for delivery of a bitstream with any form of copy protection, that includes ET's sharecropping scheme or anything else that would prevent loading on any compatible board.
I do not like ET's approach either, but if someone succeeds to run it on CM1, I will use it. Alas, this would not qualify to get the bounty we are discussing here - fully agree that it must be a transparent bitstream that operates with any established pool without third party interaction.

Quote
I will match Zefirs commitment of 50 BTC for any bitstream that meets or exceeds the 750 MH/s rate and 48 hour stability up until August 31st, or the earliest Enterpoint release of a 4 processor hashing bitstream whichever happens last.
Not sure if 'whatever happens last' is ok. What if Enterpoint releases a bitstream late (say: never)? I am not going to pay for that in 2013. Shouldn't it be more 'whatever happens first'?

Quote
Further I offer 100 BTC as a bonus under the following conditions:
1.  At least 300 BTC including my 50 BTC above is committed to the bounty by the community under the terms finally agreed upon (minimal free riders)
2.  All the files required to build the bitstream are published and released under a version of the GPL or more permissive license terms.
3.  The bitstream is released on or before August 5th.
4.  No Enterpoint bitstream using all 4 FPGAs has been released beforehand.
To
1: if there are 400+ boards in the wild and anyone is willing to contribute 1BTC per board, we should reach that.
2: a) there might be NDA information that prevents open sourcing
    b) also preferring open source, but does it really help here? we have Icarus source available, but nobody is able to correct one RX/TX line swap Huh
    c) if it goes open source, those who contributed to the bounty should get it 4 weeks before it goes public (incentive against free-riding)
3: is this realistic? this are only two weeks from now on, do you think Enterpoint had not already provided a bitstream if it was that easy?


All in all, we should reach a consensus soon and have 500-1000BTC waiting for a smart developer, which (besides theymos' offer for rewriting SMF) should be one of the largest bounties around Smiley
715  Bitcoin / Hardware / Re: Bounty: a bitstream for better utilizing the Cairnsmore1 on: July 20, 2012, 09:42:41 PM
I am willing to support this bounty, but also agree with Entropy-uc that it does only makes sense if the folks mining with CM1 can profit from it.

Right now the greatest uncertainty factor is how 'soon' Enterpoint will provide their dedicated CM1 bitstream unleashing the full power of the board. Nobody would start working on a new bitstream when we fully make it dependent on non controllable third party events - it must be a combination of intra- and interdependent compensation.

This is how I would word my contribution to the pledge:

1) I will pay out 50 BTC to the first community member that develops and releases a bitstream for CM1 before 2012-08-31 that provides long term operation with an average hashrate of at least 760 MHps per board. The bitstream does not need to be open sourced itself, but the API must be provided along with a proof-of-concept implementation support for an established open source miner (cgminer, MPBM, etc.) and full step-by-step documentation to reproduce the correct set-up.

2) Starting from the release day of the developed bitstream and until 2012-10-30, for each day I will pay the developer a performance bonus of (B - N) / 200, where B is the bitstream's hashrate and N is the hashrate of the second best publicly available bitstream. Example: if B was 840MHps and twin_test.bit still the fastest one with 380MHps, I'd pay a daily bonus of 2.3 BTC until end of October. The bonus payments are calculated daily, i.e. from that day Enterpoint provides a bitstream operating at 760MHps, the bonus drops to 0.4BTC/day for the remaining period.


I must admit that I don't have a clue on how long it takes to develop a new bitstram from scratch (seeing that ngzhang is already months late for Lancelot raises some doubts). Also I did not put much thinking on whether the both incentives are well balanced. It is a first shot, but this is basically what I would be willing to contribute.
716  Alternate cryptocurrencies / Mining (Altcoins) / Re: Quad XC6SLX150 Board - Initial Price £400/$640/520€ on: July 20, 2012, 08:43:13 PM
[... lots of in deep info about cgminer internals ...]

Thanks kano for the extended explanation. Happy that I was not too way off understanding the code Wink

Quote
Heh - well then someone should read the FPGA-README in cgminer that I wrote quite a while ago:
WTF! I spent so many hours analyzing the Icarus driver code and it was all already written in a Readme? Serves me right for not remembering to RTFM...

Quote
So yes I stated this when I wrote the code that it required a pair of FPGA (hashing half each)

If these boards are only hashing half the range on a single FPGA then the MH/s value will of course report double what it really is.
The code itself simply doubles the count of hashes completed each time since it knows EXACTLY how many hashes were done and how long it took and assuming there are 2 FPGA (as I said above) then double ((nonce & 0x7fffffff) + 1) is of course correct - NOT an estimate AT ALL.

I was maybe not clear: not saying that the Icarus driver reports the wrong hashrate, only that the cgminer core has no own measure to report the rate other than what the driver is claiming to have processed. I could claim my SoundBlaster DSP can do 1THps and write a driver for it to fool people with that rate being displayed. But you can't cheat the U factor.


Thanks again for all the clarification.

717  Alternate cryptocurrencies / Mining (Altcoins) / Re: Quad XC6SLX150 Board - Initial Price £400/$640/520€ on: July 20, 2012, 09:49:19 AM
Thanks, zefir.
Now it is much more clear.

One more question:

Quote
The Cairnsmore1 has been planned as a dual Icarus board, but for the known design mistake the second FPGA of each pair is deactivated for the original bitstream. Therefore running CM1 in Icarus mode gives you two times half the processing power - or just one Icarus equivalent.

The only CM1 operating modes I found are Test mode and Icarus.

Is there any workaround to make CM1 use the full power? Some 3rd party bitstream or not documented DIP switches position or else?
Or maybe the Controller 1.4 would fix that?

Thanks
From the info I collected so far, it seems that right now we are restricted to these two. User Glasswalker was the one trying to 'fix' the original Icarus bitstream to handle the swapped RX/TX lines, but he run into problems getting it stable and had to reduce the clock => that is the shipping_test.bit one. The twin_test.bit seems to be ngzhang's original one that does well with only one FPGA per pair enabled.

Many of us are trying to get EldenTyrell's TriCoreMining working on CM1, to my knowledge nobody was successful so far. You might want to watch the related thread.

Other than that I read somewhere that Glasswalker is still working on some CM1 bitstream, but is right now busy and stressed after he got hacked and robbed 12k+$.

I discussed once with Yohan and he told me that everyone who is able and willing to work on a bitstream can get all required information. Anyone Huh
718  Alternate cryptocurrencies / Mining (Altcoins) / Re: Quad XC6SLX150 Board - Initial Price £400/$640/520€ on: July 20, 2012, 08:24:04 AM

[...]
Can somebody explain me that?

The effect was correctly explained, i.e. what cgminer reports as hashrate needs to be halved to get the correct value for the CM1 operating with the twin_test.bit bitstream, while the U factor is correct.

Alas, the root cause is not related to the timing settings that are floating around, it is more a result of how cgminer and the Icarus driver work and the fact that one FPGA of each pair is not operable. If you don't care the details, skip to the tl;dr line.

Cgminer Work Processing
To understand the numbers, it is important to understand how the work is processed between pools/bitcoind and the worker: work is fetched from pool(s) and provided to the related driver in chunks of a whole nonce ranges (2^32 hashes). The working unit (being it CPU, GPU, or FPGA) calculates the hashes and reports back valid shares and how much hashes have been processed.

Using Icarus driver for CM1
You need to know the Icarus API to understand the numbers. The API to the Icarus provides no status queries: there is no command to ask the board if it is present or how far it is in processing the nonce range. The only function supported is: you sent it work and it reports you the nonce generating a share - thats it.

As a result of this limited functionality, two workarounds are used in cgminer:
  • To detect whether an Icarus is attached to a serial line, you feed it with work containing a 'golden nonce', that is known to be found very soon (say after some milliseconds) in the range. If an attached device reports what you expect, you found an Icarus, otherwise you see a warning that an unexpected nonce (or nothing) was reported.
  • Being unable to query the process in the nonce range requires some timeouts, in case there is work containing zero valid shares. For that you need to know how long the Icarus is busy crunching the work package, which is easily calculated by (2^32 / hashrate). If after that time you did not hear from your board, you just give it something else to work on. If the timeout value is too long, you risk the FPGA idling around, if it is too short you are aborting nonce ranges and feeding more work than required, which impairs efficiency due to serial line communication delays.

Icarus processes the work by equally distributing it to the two FPGAs with each one generating 2^31 hashes (0-0x7fffffff and 0x80000000-0xffffffff). The Cairnsmore1 has been planned as a dual Icarus board, but for the known design mistake the second FPGA of each pair is deactivated for the original bitstream. Therefore running CM1 in Icarus mode gives you two times half the processing power - or just one Icarus equivalent.

Hashrate
The hashrate is calculated as (hashes reported by driver / elapsed time). cgminer fully relies on what the related driver reports and has no means to verify that the work has really been completed - one can easily write a driver that reports 10TH for a device. It is a tribute to the established MHps measure, but a not exactly precise and controllable one.

When a CM1 FPGA-pair is fed with work, it only operates the first half of it, but reports that the whole range was done. As a result, the reported MHps value is exactly doubled. A side effect of this fact is that twice as many getworks are required. It is possible to modify the reported hashes in a dedicated CM1 driver to correct the hashrate displayed, but given that the Icarus bitstream is only an interim solution, it is easier to add some brain-work and just halve it.

Utilization Factor U
This is the real performance factor, since it reports the average accepted shares by the pool per minute. It is what you get as income and calculated by cgminer independent of the underlying driver. For a CM1 this should be somewhere ~2.5/m per FPGA, a board should provide you 5/m.

Icarus Timings
With CM1 operating with the twin_test bitstream, there is no need to adjust the timings as the clocks are the same as with Icarus. This is only required when the clocks change (like it was for the shipping_test bitstream).


Tl;dr
When operating CM1 in Icarus mode (twin_test.bit)
  • the reported hashrate must be halved and should be around 380 MHps per board
  • the reported U is correct and should be somewhere around 5/min per board
  • no timing parameters are required


HTH
719  Bitcoin / Pools / Re: [1400 GH] Ozcoin Pooled Mining | DGM 0Fee| PPS 5%| Port80 | Lots more on: July 15, 2012, 11:18:40 AM
Sounds like mined shares aren't submitted to the database correctly. Afaik there is a feature that caches all those shares, so their value won't be lost and credited as soon as the issue is fixed.

Could you name the server you mine on (us / us2 / eu / eu2)?

I'm on us2.

M

I'm on eu.
720  Bitcoin / Pools / Re: [1400 GH] Ozcoin Pooled Mining | DGM 0Fee| PPS 5%| Port80 | Lots more on: July 15, 2012, 08:41:36 AM
This is the best pool I've tried so far, but it is also the pool that does weird stuff (admittedly little insignificant stuff). Just now I logged into my account and my workers were all reported as being offline even though my hashrate was reported as normal and my home worker was submitting shares no problem. I logged the home worker off and back on and then all my workers reported as being online. As far as I can tell, my workers were never offline, except when I logged off-on with the home worker. To this I say,  Huh, but also, meh- Cool

I observed the same: the hashrate of my workers was reported as 0, while the total of all workers combined seemed correct (25-35 GH). My 24h-income dropped from 15 to 5 BTC. It might be just bad luck, but to me it looks like shares were not accounted correctly.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!