Pages:
Author

Topic: [ANN] [BEN] Benjamins ◄ SHA-256 ►◄ BOUNTY AVAILABLE to make BEN merge mineable!! - page 68. (Read 94385 times)

legendary
Activity: 3486
Merit: 1126
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?
full member
Activity: 140
Merit: 100
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
legendary
Activity: 3486
Merit: 1126
Do getnetworkhashps and post what it spits out

Ok... that works...

$ benjaminsd getnetworkhashps
2171755945065
$
full member
Activity: 140
Merit: 100
Do getnetworkhashps and post what it spits out
legendary
Activity: 3486
Merit: 1126
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....
full member
Activity: 140
Merit: 100
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);
 }
legendary
Activity: 3486
Merit: 1126
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...
legendary
Activity: 3486
Merit: 1126
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
legendary
Activity: 2548
Merit: 1054
CPU Web Mining 🕸️ on webmining.io
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
legendary
Activity: 3486
Merit: 1126
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...
newbie
Activity: 26
Merit: 0
OK I added these to the console in the wallet and it worked. Do it like this for each one

addnode xx.xx.xx.xxx add     hit enter under debug:console
 
addnode=95.85.39.131
addnode=97.112.91.126
addnode=192.227.160.84
addnode=71.240.166.229






Can someone help my wallet sync. I went to the console and add a few nodes is that correct? I added them like this

addnode xxx.xxx.xxx.xxx  add


Is that the correct command?

addnode=ip

Put those in benjamins.conf in your Roaming folder
full member
Activity: 140
Merit: 100
full member
Activity: 140
Merit: 100
http://www.reddit.com/r/Benjamins

Come make some posts and comments! I'll see if I can find someone to make one of those tip bots. None of us have much experience with Reddit, but we will do our best!
full member
Activity: 140
Merit: 100
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)
full member
Activity: 140
Merit: 100
We are working on it. Again, we aren't going to pay for votes, so that may make Benjamins go unnoticed until they figure out why there are thousands of phantom votes for shitty coins

I respect that sort of integrity.

Thanks. I have spoken with both Thomas Jefferson and George Washington about this issue. They both agree we are above using these cheap tactics to promote our movement

I believe George sent over a small parcel of Benjamins for you to enjoy
I_M
full member
Activity: 135
Merit: 100
We are working on it. Again, we aren't going to pay for votes, so that may make Benjamins go unnoticed until they figure out why there are thousands of phantom votes for shitty coins

I respect that sort of integrity.
hero member
Activity: 714
Merit: 500
Well I think we found where all the fake exchange votes are coming from. Got this PM a few days ago but we won't stoop to these low levels. BENJAMINS will take care of itself!

We have discussed this internally and will NOT resort to cheap marketing tactics like this. Shady coins need this, we don't!

Quote
100/500/1000/1500(max) unique real users posting and voting on your "Add to cryptsy" freshdesk topic.


This service targets 3 main goals:
1)Getting people to believe in your coin's chance of getting traded on a major exchange
2)Getting cryptsy and other smaller exchange owners to notice you have a supporting community
3)steps 1 and 2 will naturally drive major hash power and hype to your coin multiplying your chances to get
listed on both cryptsy and other smaller exchanges along the way



I have successfully delivered to 18 coins and counting, many are now traded on cryptsy.
Customer confidentiality is promised!
I will point no-one to your coin not even to "show my work", you can count on that.



PM me what vote package you want and we will discuss details and price in BTC.
Have doubts? What is there to lose?
*You pay me AFTER I deliver the work*

P.s I also offer services to bump bitcointalk threads
Smiley[/center]
you are being awfully nice... Just post the name so we all know who the shady characters are!  Angry 

Amazon Mturk and microworkers, nothing new just amusing this internet marketer found a neiche to sell "nothing" to coin devs...
All he is selling is about 10min of his work to post a Amazon Mturk job they will vote for about 5cents each....
I bet this shaddy guy makes a killing reselling something so simple...
full member
Activity: 140
Merit: 100
Can someone help my wallet sync. I went to the console and add a few nodes is that correct? I added them like this

addnode xxx.xxx.xxx.xxx  add


Is that the correct command?

addnode=ip

Put those in benjamins.conf in your Roaming folder
newbie
Activity: 26
Merit: 0
Can someone help my wallet sync. I went to the console and add a few nodes is that correct? I added them like this

addnode xxx.xxx.xxx.xxx  add


Is that the correct command?
full member
Activity: 140
Merit: 100
is on cryptsy yet or any plans for soon?

We are working on it. Again, we aren't going to pay for votes, so that may make Benjamins go unnoticed until they figure out why there are thousands of phantom votes for shitty coins
Pages:
Jump to: