Author

Topic: [ANN] [QRK] Quark | Core 0.10 upgrade - page 418. (Read 1031025 times)

sr. member
Activity: 644
Merit: 250
August 02, 2013, 01:14:46 PM
I wonder if it's possible to find out the network hashespersec.

I don't know how, but the difficulty should correlate to network hash right?

If some bright spark here could enlighten us Smiley

K.
legendary
Activity: 2100
Merit: 1167
MY RED TRUST LEFT BY SCUMBAGS - READ MY SIG
August 02, 2013, 12:45:59 PM
Full day on my i5-3570K @ 4.4Ghz and not a single block, ouch.



yep, same here. the vps have taken over again. never mind probably like xpm its far cheaper to just buy .5 btc worth of it right now and hold and see.

I'm also going to buy some and hold.  It's definitely going to appreciate.  Especially once reward halves at block 60000


It could happen like that, I wouldn't bank on that but i have a bit of this now so will just hold and see.
legendary
Activity: 1232
Merit: 1001
August 02, 2013, 12:25:14 PM
Full day on my i5-3570K @ 4.4Ghz and not a single block, ouch.



yep, same here. the vps have taken over again. never mind probably like xpm its far cheaper to just buy .5 btc worth of it right now and hold and see.

I'm also going to buy some and hold.  It's definitely going to appreciate.  Especially once reward halves at block 60000
legendary
Activity: 2100
Merit: 1167
MY RED TRUST LEFT BY SCUMBAGS - READ MY SIG
August 02, 2013, 09:31:48 AM
Full day on my i5-3570K @ 4.4Ghz and not a single block, ouch.



yep, same here. the vps have taken over again. never mind probably like xpm its far cheaper to just buy .5 btc worth of it right now and hold and see.
legendary
Activity: 1232
Merit: 1001
August 02, 2013, 08:43:01 AM
Dear owner of QuarkCoin.Org

Please update the logos and graphics on the website to the ones from the previous post.
legendary
Activity: 1232
Merit: 1001
August 02, 2013, 08:28:57 AM
Does QRK have a website yet?

QuarkCoin.Org

site only launched yesterday, so much to come
playing with logo ideas and speaking to developer
we ran a logo competition here yesterday so that is temp. may stay

forum be up in day or two
moving fast...


It's a good start, but the logos are not very good.  You should seriously consider using one of these.





What about something like this?
legendary
Activity: 1061
Merit: 1001
August 02, 2013, 02:46:41 AM
Does QRK have a website yet?

QuarkCoin.Org

site only launched yesterday, so much to come
playing with logo ideas and speaking to developer
we ran a logo competition here yesterday so that is temp. may stay

forum be up in day or two
moving fast...
member
Activity: 98
Merit: 10
August 02, 2013, 02:03:29 AM
Full day on my i5-3570K @ 4.4Ghz and not a single block, ouch.

legendary
Activity: 1232
Merit: 1001
August 02, 2013, 02:00:58 AM
Does QRK have a website yet?
legendary
Activity: 2674
Merit: 3000
Terminated.
August 02, 2013, 01:35:26 AM
Another day of qrking  Cool
sr. member
Activity: 473
Merit: 250
August 01, 2013, 11:29:07 PM
Github sources updated with hash meter.

gethashespersec and getmininginfo now return hashing rate.


I saw the source update, were there new windows binaries as well?
hero member
Activity: 874
Merit: 1000
August 01, 2013, 11:18:12 PM
Sweet! Running at 500k - 600k HPS right now. Time to go get more servers.  Roll Eyes

wow I only get 300k - how'd you get 500k?


... and all of a sudden the room goes very quiet
hero member
Activity: 874
Merit: 1000
August 01, 2013, 10:20:35 PM
Sweet! Running at 500k - 600k HPS right now. Time to go get more servers.  Roll Eyes

wow I only get 300k - how'd you get 500k?
member
Activity: 106
Merit: 10
Quark developer
August 01, 2013, 09:09:05 PM
is there a block explorer for QRK?

Not yet. Any big-time miners want to offer a reward for a block explorer?
hero member
Activity: 532
Merit: 500
August 01, 2013, 09:05:47 PM
is there a block explorer for QRK?
legendary
Activity: 2674
Merit: 3000
Terminated.
August 01, 2013, 06:06:44 PM
Github sources updated with hash meter.

gethashespersec and getmininginfo now return hashing rate.

Good, requested and delievered Smiley
member
Activity: 106
Merit: 10
Quark developer
August 01, 2013, 05:44:11 PM
Github sources updated with hash meter.

gethashespersec and getmininginfo now return hashing rate.
member
Activity: 106
Merit: 10
Quark developer
August 01, 2013, 04:46:01 PM
Official twitter feed here: https://twitter.com/QRKcoin


Awesome Cheesy

Any info on the hashespersec?

I'll have a look at implementing hashespersec this weekend. You are welcome to submit a patch if you get it going before then Smiley


I'll try my best. I'm trying to look through cloudcoin's code because it has the hashespersec implemented. I'm thinking it should be as simple as changing a few bools from false to true so that will enable hashespersec command. Tried that in bitcoinrpc.cpp and it didn't seem to work.

Question: what file(s) contain the code that does the mining itself?

The mining is done in src/main.cpp in:

void static BitcoinMiner(CWallet *pwallet)



Okay, thanks. What I was imagining was copying the files from cloudcoin to quarkcoind minus the file that does the mining. Reason being is because to my knowledge the way QRK mines is a tad different.

Would copying the files from CDC to QRK minus the mining file enable the hashespersec do you think?

Essentially code similar to this (taken from Cloudcoin) will have to be added to quark's void static BitcoinMiner(CWallet *pwallet) function:

Quote
            // Meter hashes/sec
            static int64 nHashCounter;
            if (nHPSTimerStart == 0)
            {
                nHPSTimerStart = GetTimeMillis();
                nHashCounter = 0;
            }
            else
                nHashCounter += nHashesDone;
            if (GetTimeMillis() - nHPSTimerStart > 4000)
            {
                static CCriticalSection cs;
                {
                    LOCK(cs);
                    if (GetTimeMillis() - nHPSTimerStart > 4000)
                    {
                        dHashesPerSec = 1000.0 * nHashCounter / (GetTimeMillis() - nHPSTimerStart);
                        nHPSTimerStart = GetTimeMillis();
                        nHashCounter = 0;
                        static int64 nLogTime;
                        if (GetTime() - nLogTime > 30 * 60)
                        {
                            nLogTime = GetTime();
                            printf("hashmeter %6.0f khash/s\n", dHashesPerSec/1000.0);
                        }
                    }
                }
            }
member
Activity: 106
Merit: 10
Quark developer
August 01, 2013, 04:36:04 PM
Official twitter feed here: https://twitter.com/QRKcoin


Awesome Cheesy

Any info on the hashespersec?

I'll have a look at implementing hashespersec this weekend. You are welcome to submit a patch if you get it going before then Smiley


I'll try my best. I'm trying to look through cloudcoin's code because it has the hashespersec implemented. I'm thinking it should be as simple as changing a few bools from false to true so that will enable hashespersec command. Tried that in bitcoinrpc.cpp and it didn't seem to work.

Question: what file(s) contain the code that does the mining itself?

The mining is done in src/main.cpp in:

void static BitcoinMiner(CWallet *pwallet)

member
Activity: 106
Merit: 10
Quark developer
August 01, 2013, 04:28:29 PM
Official twitter feed here: https://twitter.com/QRKcoin


Awesome Cheesy

Any info on the hashespersec?

I'll have a look at implementing hashespersec this weekend. You are welcome to submit a patch if you get it going before then Smiley
Jump to: