Bitcoin Forum
May 25, 2024, 04:23:27 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 [307] 308 309 310 311 »
6121  Bitcoin / Group buys / Re: [Closed]R17x: Black Arrow Prospero X-3 <DZMC Exclusive> $130 / 40GHS on: February 13, 2014, 01:38:11 AM
Hi,

Requested Refund as well. PM's sent.

Thanks
6122  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [STY] STORIES. NOW ON CRYPTX WITH NEARLY 8TH MINING POWER! on: February 13, 2014, 01:22:55 AM
whats the hashrate now?

not sure, but ~16 more block and a diff change will happen. Lets hope it goes back down.

bleh, it went up again.

 [2014-02-12 21:20:14] Network difficulty changed to 218k ( 1.56Th/s)
6123  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][KARM] Karmacoin - No Pre-mine! 6 Exchanges - Community Site Coming! on: February 13, 2014, 01:00:26 AM
Heya,

Looking to spread your Karma? My pool is!

Come hash on the Hasher pool:

http://karm.hasher.ca

Happy hashing!
6124  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [STY] STORIES. NOW ON CRYPTX WITH NEARLY 8TH MINING POWER! on: February 13, 2014, 12:58:35 AM
whats the hashrate now?

not sure, but ~16 more block and a diff change will happen. Lets hope it goes back down.
6125  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SHA-256][21coin] ULTRA RARE 21 COIN - Mine Now on: February 13, 2014, 12:49:03 AM
Hi 21coin'ers

Please drop by with some hash power to collect your piece of the 21.

http://21c.hasher.ca


Happy Hashing!
6126  Bitcoin / Hardware / Re: [ANN]ASICMiner Publicly Looking for Potential Customers/Partners for New Chips on: February 12, 2014, 07:36:46 PM
Replacement boards for the ASICminer Cube?

How cool would that be!?   Grin

That would be too good to be true  Shocked

+1 That would be awesome!
6127  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BEN] [SHA] All About the BENJAMINS, Baby - NOW ON REDDIT on: February 12, 2014, 04:56:13 PM

Awesome, thanks. Yea, you can change it to anything you want as far as commands go. You can make it getthedamnhash if you want to  Smiley

Might be good to add to the updated src that will go on github.
6128  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BEN] [SHA] All About the BENJAMINS, Baby - NOW ON REDDIT on: February 12, 2014, 04:47:03 PM
Do getnetworkhashps and post what it spits out

Ok... that works...

$ benjaminsd getnetworkhashps
2171755945065
$

Looks good to me  Smiley  Little under 2.2 Terahash currently. Looks like difficulty might drop soon

right, does look ok there... but I think it should show up in the getmininginfo call...

so add it to:

rpcmining.cpp

Value getmininginfo(const Array& params, bool fHelp)
{
    if (fHelp || params.size() != 0)
        throw runtime_error(
            "getmininginfo\n"
            "Returns an object containing mining-related information.");

    Object obj;
    obj.push_back(Pair("blocks",        (int)nBestHeight));
    obj.push_back(Pair("currentblocksize",(uint64_t)nLastBlockSize));
    obj.push_back(Pair("currentblocktx",(uint64_t)nLastBlockTx));
    obj.push_back(Pair("difficulty",    (double)GetDifficulty()));
    obj.push_back(Pair("errors",        GetWarnings("statusbar")));
    obj.push_back(Pair("generate",      GetBoolArg("-gen")));
    obj.push_back(Pair("genproclimit",  (int)GetArg("-genproclimit", -1)));
    obj.push_back(Pair("hashespersec",  gethashespersec(params, false)));
   obj.push_back(Pair("networkhashps", getnetworkhashps(params, false)));
   obj.push_back(Pair("pooledtx",      (uint64_t)mempool.size()));
    obj.push_back(Pair("testnet",       fTestNet));
    return obj;
}


Take much to add it there properly?

Actually, looks like that's all that needed to be added....

$ benjaminsd getmininginfo
{
    "blocks" : 19098,
    "currentblocksize" : 1000,
    "currentblocktx" : 0,
    "difficulty" : 253036.70799887,
    "errors" : "",
    "generate" : false,
    "genproclimit" : -1,
    "hashespersec" : 0,
   "networkhashps" : 2168253578791,
   "pooledtx" : 0,
    "testnet" : false
}


my pool shows it properly now.

cheers!
6129  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BEN] [SHA] All About the BENJAMINS, Baby - NOW ON REDDIT on: February 12, 2014, 04:42:57 PM
Do getnetworkhashps and post what it spits out

Ok... that works...

$ benjaminsd getnetworkhashps
2171755945065
$

Looks good to me  Smiley  Little under 2.2 Terahash currently. Looks like difficulty might drop soon

right, does look ok there... but I think it should show up in the getmininginfo call...

so add it to:

rpcmining.cpp

Value getmininginfo(const Array& params, bool fHelp)
{
    if (fHelp || params.size() != 0)
        throw runtime_error(
            "getmininginfo\n"
            "Returns an object containing mining-related information.");

    Object obj;
    obj.push_back(Pair("blocks",        (int)nBestHeight));
    obj.push_back(Pair("currentblocksize",(uint64_t)nLastBlockSize));
    obj.push_back(Pair("currentblocktx",(uint64_t)nLastBlockTx));
    obj.push_back(Pair("difficulty",    (double)GetDifficulty()));
    obj.push_back(Pair("errors",        GetWarnings("statusbar")));
    obj.push_back(Pair("generate",      GetBoolArg("-gen")));
    obj.push_back(Pair("genproclimit",  (int)GetArg("-genproclimit", -1)));
    obj.push_back(Pair("hashespersec",  gethashespersec(params, false)));
    obj.push_back(Pair("networkhashps", getnetworkhashps(params, false)));
   obj.push_back(Pair("pooledtx",      (uint64_t)mempool.size()));
    obj.push_back(Pair("testnet",       fTestNet));
    return obj;
}


Take much to add it there properly?
6130  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BEN] [SHA] All About the BENJAMINS, Baby - NOW ON REDDIT on: February 12, 2014, 04:36:23 PM
Do getnetworkhashps and post what it spits out

Ok... that works...

$ benjaminsd getnetworkhashps
2171755945065
$
6131  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BEN] [SHA] All About the BENJAMINS, Baby - NOW EXCHANGED - Still EARLY!! on: February 12, 2014, 04:34:09 PM
For those of you asking for it

http://benjaminsbaby.com/BEN/Benjamins-getnetworkhash.rar

It's getnetworkhashps to return the network hashrate. This will only work if you compile your own clients (just an updated source link for pools and explorers, etc)

not sure it's made a difference...

I see it in there. Its givin hash rate just fine

strange... my pool just shows the same rate net vs pool

There were a few other changes to get it in, but this is the main part:

Code:
Value GetNetworkHashPS(int lookup, int height) {
     CBlockIndex *pb = pindexBest;
 
     if (height >= 0 && height < nBestHeight)
         pb = FindBlockByHeight(height);
 
     if (pb == NULL || !pb->nHeight)
         return 0;
 
     // If lookup is -1, then use blocks since last difficulty change.
     if (lookup <= 0)
         lookup = pb->nHeight % 2016 + 1;
 
     // If lookup is larger than chain, then set it to chain length.
     if (lookup > pb->nHeight)
         lookup = pb->nHeight;
 
     CBlockIndex *pb0 = pb;
     int64 minTime = pb0->GetBlockTime();
     int64 maxTime = minTime;
     for (int i = 0; i < lookup; i++) {
         pb0 = pb0->pprev;
         int64 time = pb0->GetBlockTime();
         minTime = std::min(time, minTime);
         maxTime = std::max(time, maxTime);
     }
 
     // In case there's a situation where minTime == maxTime, we don't want a divide by zero exception.
     if (minTime == maxTime)
         return 0;
 
     uint256 workDiff = pb->nChainWork - pb0->nChainWork;
     int64 timeDiff = maxTime - minTime;
 
     return (boost::int64_t)(workDiff.getdouble() / timeDiff);
 }
 
 Value getnetworkhashps(const Array& params, bool fHelp)
 {
     if (fHelp || params.size() > 2)
         throw runtime_error(
             "getnetworkhashps [blocks] [height]\n"
             "Returns the estimated network hashes per second based on the last 120 blocks.\n"
             "Pass in [blocks] to override # of blocks, -1 specifies since last difficulty change.\n"
             "Pass in [height] to estimate the network speed at the time when a certain block was found.");
 
     return GetNetworkHashPS(params.size() > 0 ? params[0].get_int() : 120, params.size() > 1 ? params[1].get_int() : -1);
 }

wonder why I'm not seeing it....
6132  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [STY] STORIES. NOW ON CRYPTX WITH NEARLY 8TH MINING POWER! on: February 12, 2014, 04:28:25 PM
Hey miners,

Thanks for you hashing with me! I've now set payout to be much faster, you can expect to get your STY 15-20 mins after the block is done.

http://sty.hasher.ca

Happy hashing!
6133  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BEN] [SHA] All About the BENJAMINS, Baby - NOW EXCHANGED - Still EARLY!! on: February 12, 2014, 04:25:51 PM
For those of you asking for it

http://benjaminsbaby.com/BEN/Benjamins-getnetworkhash.rar

It's getnetworkhashps to return the network hashrate. This will only work if you compile your own clients (just an updated source link for pools and explorers, etc)

not sure it's made a difference...

I see it in there. Its givin hash rate just fine

Where are you seeing this?

I get 0

benjaminsd getmininginfo
{
    "blocks" : 19093,
    "currentblocksize" : 3081,
    "currentblocktx" : 2,
    "difficulty" : 253036.70799887,
    "errors" : "",
    "generate" : false,
    "genproclimit" : -1,
    "hashespersec" : 0,
    "pooledtx" : 2,
    "testnet" : false
}

nethashps isn't listed...
6134  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BEN] [SHA] All About the BENJAMINS, Baby - NOW EXCHANGED - Still EARLY!! on: February 12, 2014, 04:10:34 PM
For those of you asking for it

http://benjaminsbaby.com/BEN/Benjamins-getnetworkhash.rar

It's getnetworkhashps to return the network hashrate. This will only work if you compile your own clients (just an updated source link for pools and explorers, etc)

not sure it's made a difference...

I see it in there. Its givin hash rate just fine

strange... my pool just shows the same rate net vs pool
6135  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BEN] [SHA] All About the BENJAMINS, Baby - NOW EXCHANGED - Still EARLY!! on: February 12, 2014, 01:20:29 PM
For those of you asking for it

http://benjaminsbaby.com/BEN/Benjamins-getnetworkhash.rar

It's getnetworkhashps to return the network hashrate. This will only work if you compile your own clients (just an updated source link for pools and explorers, etc)

not sure it's made a difference...
6136  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][KARM] Karmacoin - Mandatory Update Now! No Pre-mine! 6 Exchanges on: February 12, 2014, 04:26:50 AM
Hi everyone!

In case you are still looking for a quiet pool to pull out big rewards, my pool needs some miners.

http://karm.hasher.ca/

Thanks!

I'd mine with you but I'm not getting the email confirmation from the pool sign up.  I"m down to only 30K left after selling on the exchanges to spread around so I definitely need more.  Anyone with a big wallet feeling generous?  Grin Grin Grin

KEwaMg2PqpQ8u4JHSRNjAdvZcDp7Az9RpA


I may have this fixed now. Some of the mail headers from the pool engine don't get formatted properly and some mail servers were refusing to deliver.

Let me know if it's still a problem, I can update the info manually.
6137  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MEOW] KittehCoin Relaunch IS HERE!!!! on: February 12, 2014, 12:50:36 AM
Hi everyone,

My kitteh pool is lonely, someone come pet it with some hash power.

http://meow.hasher.ca


MeaoOOw
6138  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][KARM] Karmacoin - Mandatory Update Now! No Pre-mine! 6 Exchanges on: February 12, 2014, 12:45:41 AM
Hi everyone!

In case you are still looking for a quiet pool to pull out big rewards, my pool needs some miners.

http://karm.hasher.ca/

Thanks!
6139  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [STY] STORIES. NEW RELEASE. NOW ON CRYPTX, P2POOL and HASHER on: February 11, 2014, 10:51:08 PM
http://sty.hasher.ca/

 
Not receive the email confirmation, can not edit the account Huh


and me also,why?

PM your details (username/email/payment addy + min amount) and I will fix this up. Seems there are the odd few that don't ever get the emails.

Thanks

myusername:wayii
email:a99k@163.com
amaount payment about 22k
cannt  receive the email confirmation, can not edit the account

Please send me a PM with your payment address.

Thanks
6140  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BEN] [SHA] All About the BENJAMINS, Baby - NOW EXCHANGED - Still EARLY!! on: February 11, 2014, 08:10:24 PM
Don't mean to spam, but I sorta feel like part of the "Ben family" now Smiley

I have another project in the works - RigHound - and I could really use some more alpha testers.  It's a website designed for remote management of all your Scrypt/ASIC mining rigs, so you can view stats, change pools and monitor all from one place.

Read more about it here:  https://bitcointalk.org/index.php?topic=459219

I still have about 10 slots open for alpha testers, thanks in advance for your help!

pretty cool. Is it just for cgminer right now?

For now, yes.  However, it's my understanding that BFGMiner has a very similar API, so I may add support for that in the future.

Thanks, I'll keep an eye on it. I only use bfg right now.
Pages: « 1 ... 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 [307] 308 309 310 311 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!