Pages:
Author

Topic: WTF is this? Someone found a trick for fast mining? - page 7. (Read 15832 times)

hero member
Activity: 658
Merit: 501
(1) We assume uniform distribution of nounces. This is correct as first approximation,
 

This is a flawed assumption.

but not totally accurate as pointed out before by several people. We may extract the historical distribution and use it.
 

No, not accurate at all as we should expect higher probabilities of similar nonces found within the
 specified ranges the ASICs begin to look for.

For more clarity these research papers on the "Strong Law of Small Numbers" will address this:
https://www.maa.org/sites/default/files/pdf/upload_library/22/Ford/Guy697-712.pdf
http://www.jstor.org/discover/10.2307/2691503?uid=3737816&uid=2&uid=4&sid=21106243349151

FYI- If ASIC's randomly checked various nonces(to allow a block to hash against the set difficulty) without ranges or order than your assumptions would be correct.
sr. member
Activity: 311
Merit: 250
All 4 nounces very close by.
Not close at all. A difference 300,000 is about one thirteenth of the maximum range, which means consecutive nonces will be this close together over 10 times a day.

4Byte nounce is between 1 and 2^32-1=4.294.967.295 right? Where is your 300.000 being 1/13th coming from?
I meant 300,000,000 (that's the closeness we're talking about right?), but I misplaced a few zeros somewhere around the second glass of absinthe. This is why you shouldn't drink and derive. Tongue

Be careful with absynthe...

Let's look closer at nounces:

We assume that nounces are uniformly distributed (not exactly true since if we start increasingly with nounce 0 they follow a Poisson law, but taking into account that nounce cycles many times before finding the solution it is well approximated by the uniform distribution). We look at distance mod 2^32.

|nounce(354641)-nounce(354640)| = 19.452.599  probability 19.452.599/(2^32-1)*2 = 1.8%

|nounce(354642)-nounce(354641)|  = 5.394.922 probability 5.394.922/(2^32-1)*2 = 0.12%

|nounce(354642)-nounce(354641)|  = 313.864.936 probability 313.864.936/(2^32-1)*2 =7.2%


Combined probability 0.000155% that is 1 in 64.5 million of times.



Are you trolling? 0.000155% is 1 in 645161

And this is nonsense. Just some made up data

|nounce(1)-nounce(0)| = 5%

|nounce(2)-nounce(1)|  = 20%

|nounce(3)-nounce(2)|  = 10%

|nounce(4)-nounce(3)|  = 1%

|nounce(5)-nounce(4)|  = 5%

|nounce(6)-nounce(5)|  = 10%

Combined probability 0.000005% that is 1 in 20 million of times. Bitcoin in broken!!!

I just did a rough approximation, only valid for small probabilities and few events. You are welcome to do the exact computation.

You calculate in a wrong way. You should define the meaning of "close" a priori. That could be 20%, 10%, or 1%.

Let say you choose 10%, the P(1.8%, 0.12%, 7.2%) should be 1/1000, not 1/645161.
 
And let say you choose 2%, the P(1.8%, 0.12%, 7.2%) should be 1/2551 (0.02*0.02*0.98). Therefore, one event of this kind is expected in about 2 weeks.

Please stop here (and edit your misleading topic) unless you find something really statistical significantly deviated from the theoretical distribution.

I don't understand what you mean.

OK, let me do the computation and explain things carefully. You can tell me on which point you disagree.

(0) Put your 2^32-1 integer values on a circle of perimeter 2. This geometrical representation will help you.

(1) We assume uniform distribution of nounces. This is correct as first approximation, but not totally accurate as pointed out before by several people. We may extract the historical distribution and use it.

(2) The probability that two consecutive nounces are closer as nounce(354641) and nounce(354640) is 1.8%. It is the minor arc length between the two nounces on the circle.
Same for nounce(354642) and nounce(354641), and for nounce(354643) and nounce(354644). Otherwise, please correct me if you disagree.

(3) We assume independence of nounces with respect to previous nounces, i.e. we consider nounces as independent random variables.
This implies that distance between nounce(n+2) and nounce(n+1) is independent of the distance between nounce(n+1) and nounce(n).

(4) Thus, the probability of having three consecutive events of the sort described is just the product of the probabilities, it is 1 over 645161.

The probability of seeing this is on average once each 12.27 years at an average production of one block (nounce) every 10 minutes.


If you can't see why you are committing an elementary statistics fallacy, just consider this:

1. P is an uniformly distributed variable from 0 to 1, with mean = 0.5

2. There is 144 blocks per day

3. The probability calculated, in the way you suggest, is about 0.5^144 = 4*10(-44), which should NEVER happen

-------------------------------------

For the consecutive 731kb blocks, it just showed there were too many unconfirmed tx and miners had to use the maximum size.



The probability of having 144 independent random variables all smaller that their mean value is what you computed.

It is the same as computing the probability of throwing 144 times a coin and seeing all times heads. You are right. It is extremely unlikely and should never happen.

Where is the fallacy?Huh
sr. member
Activity: 311
Merit: 250
Nonce are not uniformly distributed because miners always start scanning from 0. Therefore, small nonce is more likely to be found on the blockchain.

https://bitcointalksearch.org/topic/histograms-of-all-valid-nonces-hashes-values-985846
Also, A lot of hardware only searches a subset of nonces.

The size is irrelevant; it's just roughly the soft target most miners use... the size isn't even available to the mining algorithm, which works only on the block header, other than being the amount of data after a dozen layers of sha256 that feed into the tree root hash in the header.

The distribution of nounces is maybe not uniform in a 10% range of nounce 2.148.000.000.

Indeed 2.147.483.648 = 2^31 so the nounces of the blocks are in binary 10000....0000 +/- some small stuff.

Also, are there technical descriptions of the algorithms used by different ASICs?
legendary
Activity: 1792
Merit: 1111
All 4 nounces very close by.
Not close at all. A difference 300,000 is about one thirteenth of the maximum range, which means consecutive nonces will be this close together over 10 times a day.

4Byte nounce is between 1 and 2^32-1=4.294.967.295 right? Where is your 300.000 being 1/13th coming from?
I meant 300,000,000 (that's the closeness we're talking about right?), but I misplaced a few zeros somewhere around the second glass of absinthe. This is why you shouldn't drink and derive. Tongue

Be careful with absynthe...

Let's look closer at nounces:

We assume that nounces are uniformly distributed (not exactly true since if we start increasingly with nounce 0 they follow a Poisson law, but taking into account that nounce cycles many times before finding the solution it is well approximated by the uniform distribution). We look at distance mod 2^32.

|nounce(354641)-nounce(354640)| = 19.452.599  probability 19.452.599/(2^32-1)*2 = 1.8%

|nounce(354642)-nounce(354641)|  = 5.394.922 probability 5.394.922/(2^32-1)*2 = 0.12%

|nounce(354642)-nounce(354641)|  = 313.864.936 probability 313.864.936/(2^32-1)*2 =7.2%


Combined probability 0.000155% that is 1 in 64.5 million of times.



Are you trolling? 0.000155% is 1 in 645161

And this is nonsense. Just some made up data

|nounce(1)-nounce(0)| = 5%

|nounce(2)-nounce(1)|  = 20%

|nounce(3)-nounce(2)|  = 10%

|nounce(4)-nounce(3)|  = 1%

|nounce(5)-nounce(4)|  = 5%

|nounce(6)-nounce(5)|  = 10%

Combined probability 0.000005% that is 1 in 20 million of times. Bitcoin in broken!!!

I just did a rough approximation, only valid for small probabilities and few events. You are welcome to do the exact computation.

You calculate in a wrong way. You should define the meaning of "close" a priori. That could be 20%, 10%, or 1%.

Let say you choose 10%, the P(1.8%, 0.12%, 7.2%) should be 1/1000, not 1/645161.
 
And let say you choose 2%, the P(1.8%, 0.12%, 7.2%) should be 1/2551 (0.02*0.02*0.98). Therefore, one event of this kind is expected in about 2 weeks.

Please stop here (and edit your misleading topic) unless you find something really statistical significantly deviated from the theoretical distribution.

I don't understand what you mean.

OK, let me do the computation and explain things carefully. You can tell me on which point you disagree.

(0) Put your 2^32-1 integer values on a circle of perimeter 2. This geometrical representation will help you.

(1) We assume uniform distribution of nounces. This is correct as first approximation, but not totally accurate as pointed out before by several people. We may extract the historical distribution and use it.

(2) The probability that two consecutive nounces are closer as nounce(354641) and nounce(354640) is 1.8%. It is the minor arc length between the two nounces on the circle.
Same for nounce(354642) and nounce(354641), and for nounce(354643) and nounce(354644). Otherwise, please correct me if you disagree.

(3) We assume independence of nounces with respect to previous nounces, i.e. we consider nounces as independent random variables.
This implies that distance between nounce(n+2) and nounce(n+1) is independent of the distance between nounce(n+1) and nounce(n).

(4) Thus, the probability of having three consecutive events of the sort described is just the product of the probabilities, it is 1 over 645161.

The probability of seeing this is on average once each 12.27 years at an average production of one block (nounce) every 10 minutes.


If you can't see why you are committing an elementary statistics fallacy, just consider this:

1. P is an uniformly distributed variable from 0 to 1, with mean = 0.5

2. There is 144 blocks per day

3. The probability calculated, in the way you suggest, is about 0.5^144 = 4*10(-44), which should NEVER happen

-------------------------------------

For the consecutive 731kb blocks, it just showed there were too many unconfirmed tx and miners had to use the maximum size.
staff
Activity: 4242
Merit: 8672
Nonce are not uniformly distributed because miners always start scanning from 0. Therefore, small nonce is more likely to be found on the blockchain.

https://bitcointalksearch.org/topic/histograms-of-all-valid-nonces-hashes-values-985846
Also, A lot of hardware only searches a subset of nonces.

The size is irrelevant; it's just roughly the soft target most miners use... the size isn't even available to the mining algorithm, which works only on the block header, other than being the amount of data after a dozen layers of sha256 that feed into the tree root hash in the header.
sr. member
Activity: 311
Merit: 250
All 4 nounces very close by.
Not close at all. A difference 300,000 is about one thirteenth of the maximum range, which means consecutive nonces will be this close together over 10 times a day.

4Byte nounce is between 1 and 2^32-1=4.294.967.295 right? Where is your 300.000 being 1/13th coming from?
I meant 300,000,000 (that's the closeness we're talking about right?), but I misplaced a few zeros somewhere around the second glass of absinthe. This is why you shouldn't drink and derive. Tongue

Be careful with absynthe...

Let's look closer at nounces:

We assume that nounces are uniformly distributed (not exactly true since if we start increasingly with nounce 0 they follow a Poisson law, but taking into account that nounce cycles many times before finding the solution it is well approximated by the uniform distribution). We look at distance mod 2^32.

|nounce(354641)-nounce(354640)| = 19.452.599  probability 19.452.599/(2^32-1)*2 = 1.8%

|nounce(354642)-nounce(354641)|  = 5.394.922 probability 5.394.922/(2^32-1)*2 = 0.12%

|nounce(354642)-nounce(354641)|  = 313.864.936 probability 313.864.936/(2^32-1)*2 =7.2%


Combined probability 0.000155% that is 1 in 64.5 million of times.



Are you trolling? 0.000155% is 1 in 645161

And this is nonsense. Just some made up data

|nounce(1)-nounce(0)| = 5%

|nounce(2)-nounce(1)|  = 20%

|nounce(3)-nounce(2)|  = 10%

|nounce(4)-nounce(3)|  = 1%

|nounce(5)-nounce(4)|  = 5%

|nounce(6)-nounce(5)|  = 10%

Combined probability 0.000005% that is 1 in 20 million of times. Bitcoin in broken!!!

I just did a rough approximation, only valid for small probabilities and few events. You are welcome to do the exact computation.

You calculate in a wrong way. You should define the meaning of "close" a priori. That could be 20%, 10%, or 1%.

Let say you choose 10%, the P(1.8%, 0.12%, 7.2%) should be 1/1000, not 1/645161.
 
And let say you choose 2%, the P(1.8%, 0.12%, 7.2%) should be 1/2551 (0.02*0.02*0.98). Therefore, one event of this kind is expected in about 2 weeks.

Please stop here (and edit your misleading topic) unless you find something really statistical significantly deviated from the theoretical distribution.

I don't understand what you mean.

OK, let me do the computation and explain things carefully. You can tell me on which point you disagree.

(0) Put your 2^32-1 integer values on a circle of perimeter 2. This geometrical representation will help you.

(1) We assume uniform distribution of nounces. This is correct as first approximation, but not totally accurate as pointed out before by several people. We may extract the historical distribution and use it.

(2) The probability that two consecutive nounces are closer as nounce(354641) and nounce(354640) is 1.8%. It is the minor arc length between the two nounces on the circle.
Same for nounce(354642) and nounce(354641), and for nounce(354643) and nounce(354644). Otherwise, please correct me if you disagree.

(3) We assume independence of nounces with respect to previous nounces, i.e. we consider nounces as independent random variables.
This implies that distance between nounce(n+2) and nounce(n+1) is independent of the distance between nounce(n+1) and nounce(n).

(4) Thus, the probability of having three consecutive events of the sort described is just the product of the probabilities, it is 1 over 645161.

The probability of seeing this is on average once each 12.27 years at an average production of one block (nounce) every 10 minutes.


My conclusion is that the nounces produced by this miner are likely not independent and the mining procedure is not the usual one and it uses previous block computations or doesn't uses much the nounce variable.

But this is just one piece of evidence.

The second one, about the block size, also points to the fact that it is the same miner who mined the blocks. 731 kB blocks are quite common as noted earlier by someone else, but it is not
very likely either to find them consecutively. Moreover I bet that they cluster more often than expected and this can be checked running statistics on the blockchain.

The third piece of evidence is how close in time are these blocks. THe probability is not alarmingly small and can be computed by the Poisson distribution that follow times between blocks.

The fourth piece of evidence is the non-chronological timestamps that suggest that the timestap maleability is also used as nounce (this fact was already noted for blocks with only one transaction).

The fifth piece of evidence is that the first block is mined by AntPool and the next 3 by anonymous. It is not so common to have consecutive anonymous blocks,
This indicates that the miner is trying to hide that he is the same one mining.

 

All this "coincidences" are extremely unlikely and point that something is going on there.
 





 
legendary
Activity: 1792
Merit: 1111
All 4 nounces very close by.
Not close at all. A difference 300,000 is about one thirteenth of the maximum range, which means consecutive nonces will be this close together over 10 times a day.

4Byte nounce is between 1 and 2^32-1=4.294.967.295 right? Where is your 300.000 being 1/13th coming from?
I meant 300,000,000 (that's the closeness we're talking about right?), but I misplaced a few zeros somewhere around the second glass of absinthe. This is why you shouldn't drink and derive. Tongue

Be careful with absynthe...

Let's look closer at nounces:

We assume that nounces are uniformly distributed (not exactly true since if we start increasingly with nounce 0 they follow a Poisson law, but taking into account that nounce cycles many times before finding the solution it is well approximated by the uniform distribution). We look at distance mod 2^32.

|nounce(354641)-nounce(354640)| = 19.452.599  probability 19.452.599/(2^32-1)*2 = 1.8%

|nounce(354642)-nounce(354641)|  = 5.394.922 probability 5.394.922/(2^32-1)*2 = 0.12%

|nounce(354642)-nounce(354641)|  = 313.864.936 probability 313.864.936/(2^32-1)*2 =7.2%


Combined probability 0.000155% that is 1 in 64.5 million of times.



Are you trolling? 0.000155% is 1 in 645161

And this is nonsense. Just some made up data

|nounce(1)-nounce(0)| = 5%

|nounce(2)-nounce(1)|  = 20%

|nounce(3)-nounce(2)|  = 10%

|nounce(4)-nounce(3)|  = 1%

|nounce(5)-nounce(4)|  = 5%

|nounce(6)-nounce(5)|  = 10%

Combined probability 0.000005% that is 1 in 20 million of times. Bitcoin in broken!!!

I just did a rough approximation, only valid for small probabilities and few events. You are welcome to do the exact computation.

You calculate in a wrong way. You should define the meaning of "close" a priori. That could be 20%, 10%, or 1%.

Let say you choose 10%, the P(1.8%, 0.12%, 7.2%) should be 1/1000, not 1/645161.
 
And let say you choose 2%, the P(1.8%, 0.12%, 7.2%) should be 1/2551 (0.02*0.02*0.98). Therefore, one event of this kind is expected in about 2 weeks.

Please stop here (and edit your misleading topic) unless you find something really statistical significantly deviated from the theoretical distribution.
hero member
Activity: 524
Merit: 500
Nonce are not uniformly distributed because miners always start scanning from 0.
Also Bitfury ASIC (and may be others too) don't scan full nonce range due to h/w optimizations.
sr. member
Activity: 311
Merit: 250
Are you trolling? 0.000155% is 1 in 645161

 You are right on this one of course. I correct it thanks.
legendary
Activity: 4494
Merit: 3178
Vile Vixen and Miss Bitcointalk 2021-2023
Are you trolling? 0.000155% is 1 in 645161
I was just about to say that. Guess I'm not the only one who needs to be careful.

And this is nonsense. Just some made up data

|nounce(1)-nounce(0)| = 5%

|nounce(2)-nounce(1)|  = 20%

|nounce(3)-nounce(2)|  = 10%

|nounce(4)-nounce(3)|  = 1%

|nounce(5)-nounce(4)|  = 5%

|nounce(6)-nounce(5)|  = 10%

Combined probability 0.000005% that is 1 in 20 million of times. Bitcoin in broken!!!
It is premining at some extend. Won't disclose more for the moment.
sr. member
Activity: 311
Merit: 250
All 4 nounces very close by.
Not close at all. A difference 300,000 is about one thirteenth of the maximum range, which means consecutive nonces will be this close together over 10 times a day.

4Byte nounce is between 1 and 2^32-1=4.294.967.295 right? Where is your 300.000 being 1/13th coming from?
I meant 300,000,000 (that's the closeness we're talking about right?), but I misplaced a few zeros somewhere around the second glass of absinthe. This is why you shouldn't drink and derive. Tongue

Be careful with absynthe...

Let's look closer at nounces:

We assume that nounces are uniformly distributed (not exactly true since if we start increasingly with nounce 0 they follow a Poisson law, but taking into account that nounce cycles many times before finding the solution it is well approximated by the uniform distribution). We look at distance mod 2^32.

|nounce(354641)-nounce(354640)| = 19.452.599  probability 19.452.599/(2^32-1)*2 = 1.8%

|nounce(354642)-nounce(354641)|  = 5.394.922 probability 5.394.922/(2^32-1)*2 = 0.12%

|nounce(354642)-nounce(354641)|  = 313.864.936 probability 313.864.936/(2^32-1)*2 =7.2%


Combined probability 0.000155% that is 1 in 64.5 million of times.



Are you trolling? 0.000155% is 1 in 645161

And this is nonsense. Just some made up data

|nounce(1)-nounce(0)| = 5%

|nounce(2)-nounce(1)|  = 20%

|nounce(3)-nounce(2)|  = 10%

|nounce(4)-nounce(3)|  = 1%

|nounce(5)-nounce(4)|  = 5%

|nounce(6)-nounce(5)|  = 10%

Combined probability 0.000005% that is 1 in 20 million of times. Bitcoin in broken!!!

I just did a rough approximation, only valid for small probabilities and few events. You are welcome to do the exact computation.
legendary
Activity: 1792
Merit: 1111
All 4 nounces very close by.
Not close at all. A difference 300,000 is about one thirteenth of the maximum range, which means consecutive nonces will be this close together over 10 times a day.

4Byte nounce is between 1 and 2^32-1=4.294.967.295 right? Where is your 300.000 being 1/13th coming from?
I meant 300,000,000 (that's the closeness we're talking about right?), but I misplaced a few zeros somewhere around the second glass of absinthe. This is why you shouldn't drink and derive. Tongue

Be careful with absynthe...

Let's look closer at nounces:

We assume that nounces are uniformly distributed (not exactly true since if we start increasingly with nounce 0 they follow a Poisson law, but taking into account that nounce cycles many times before finding the solution it is well approximated by the uniform distribution). We look at distance mod 2^32.

|nounce(354641)-nounce(354640)| = 19.452.599  probability 19.452.599/(2^32-1)*2 = 1.8%

|nounce(354642)-nounce(354641)|  = 5.394.922 probability 5.394.922/(2^32-1)*2 = 0.12%

|nounce(354642)-nounce(354641)|  = 313.864.936 probability 313.864.936/(2^32-1)*2 =7.2%


Combined probability 0.000155% that is 1 in 64.5 million of times.



Are you trolling? 0.000155% is 1 in 645161

And this is nonsense. Just some made up data

|nounce(1)-nounce(0)| = 5%

|nounce(2)-nounce(1)|  = 20%

|nounce(3)-nounce(2)|  = 10%

|nounce(4)-nounce(3)|  = 1%

|nounce(5)-nounce(4)|  = 5%

|nounce(6)-nounce(5)|  = 10%

Combined probability 0.000005% that is 1 in 20 million of times. Bitcoin in broken!!!
sr. member
Activity: 311
Merit: 250
It is clear that someone found a trick for fast mining. I kind of happen to know what might be...

Is it IntelliHash?   Shocked

It is premining at some extend. Won't disclose more for the moment.

you should expose  it now bro.  if true it needs to be addressed sooner rather then later.

valiron,

On pins and needles here, seriously you start the thread asking like you have no idea, realistically only to puff yourself up in the end.. Waiting for the PM me and for 100 BTC I will tell you message next..

I don't understand your message.
sr. member
Activity: 311
Merit: 250
Look at the last 4 blocks:

Block 354644; https://blockchain.info/es/block/00000000000000000d35454365c161addc0146286bcd6839017baffe75a2c3e9
Block 354643: https://blockchain.info/es/block/000000000000000015c33a22604bd9c01806c3add1b33d6b8dd1e663da95cbd1
Block 354642: https://blockchain.info/es/block/00000000000000000f181b8cfb70624cd74bcac01c930657bd1bde85ff59e7fd
Block 354641: https://blockchain.info/es/block/00000000000000000a1ebf23947c2dc38f980c66c1fd1303235326e36ea5afae


All 4 blocks with a length of 731 kB

All 4 nounces very close by.

Last 3 blocks mined within 1 minute.

It is clear that someone found a trick for fast mining. I kind of happen to know what might be...




Sorry, I meant to start with block 354640:

Block 354643: https://blockchain.info/es/block/000000000000000015c33a22604bd9c01806c3add1b33d6b8dd1e663da95cbd1
Block 354642: https://blockchain.info/es/block/00000000000000000f181b8cfb70624cd74bcac01c930657bd1bde85ff59e7fd
Block 354641: https://blockchain.info/es/block/00000000000000000a1ebf23947c2dc38f980c66c1fd1303235326e36ea5afae
Block 354640: https://blockchain.info/es/block/00000000000000000f8d7a12d307ddc717cab90d2ced5c7320624a13714b0aa3

It makes sense that the size of 731 is close to maximum. But 4 consecutive blocks is more than suspicious. Will run some stats on that as soon as I get time.

It doesn't make sense how close are the 4 nounces.



Nonce are not uniformly distributed because miners always start scanning from 0. Therefore, small nonce is more likely to be found on the blockchain.

https://bitcointalksearch.org/topic/histograms-of-all-valid-nonces-hashes-values-985846

Sure, but at current difficulty rates the round many times through the whole range. I did take this into account. IF you want to be more accurate you have to average the translated Poisson distribution. In first approximation it is uniform, in particular in the range considered with nounces around 2.1 billion
sr. member
Activity: 311
Merit: 250
All 4 nounces very close by.
Not close at all. A difference 300,000 is about one thirteenth of the maximum range, which means consecutive nonces will be this close together over 10 times a day.

4Byte nounce is between 1 and 2^32-1=4.294.967.295 right? Where is your 300.000 being 1/13th coming from?
I meant 300,000,000 (that's the closeness we're talking about right?), but I misplaced a few zeros somewhere around the second glass of absinthe. This is why you shouldn't drink and derive. Tongue

Be careful with absynthe...

Let's look closer at nounces:

We assume that nounces are uniformly distributed (not exactly true since if we start increasingly with nounce 0 they follow a Poisson law, but taking into account that nounce cycles many times before finding the solution it is well approximated by the uniform distribution). We look at distance mod 2^32.

|nounce(354641)-nounce(354640)| = 19.452.599  probability 19.452.599/(2^32-1)*2 = 1.8%

|nounce(354642)-nounce(354641)|  = 5.394.922 probability 5.394.922/(2^32-1)*2 = 0.12%

|nounce(354642)-nounce(354641)|  = 313.864.936 probability 313.864.936/(2^32-1)*2 =7.2%


Combined probability 0.000155% that is 1 in 645 161 times.

For me, this is just evidence that these blocks are not mined the usual way with repetitive trials.


EDIT: Corrected the 645.161. Thanks to jl2012.

legendary
Activity: 1792
Merit: 1111
Look at the last 4 blocks:

Block 354644; https://blockchain.info/es/block/00000000000000000d35454365c161addc0146286bcd6839017baffe75a2c3e9
Block 354643: https://blockchain.info/es/block/000000000000000015c33a22604bd9c01806c3add1b33d6b8dd1e663da95cbd1
Block 354642: https://blockchain.info/es/block/00000000000000000f181b8cfb70624cd74bcac01c930657bd1bde85ff59e7fd
Block 354641: https://blockchain.info/es/block/00000000000000000a1ebf23947c2dc38f980c66c1fd1303235326e36ea5afae


All 4 blocks with a length of 731 kB

All 4 nounces very close by.

Last 3 blocks mined within 1 minute.

It is clear that someone found a trick for fast mining. I kind of happen to know what might be...




Sorry, I meant to start with block 354640:

Block 354643: https://blockchain.info/es/block/000000000000000015c33a22604bd9c01806c3add1b33d6b8dd1e663da95cbd1
Block 354642: https://blockchain.info/es/block/00000000000000000f181b8cfb70624cd74bcac01c930657bd1bde85ff59e7fd
Block 354641: https://blockchain.info/es/block/00000000000000000a1ebf23947c2dc38f980c66c1fd1303235326e36ea5afae
Block 354640: https://blockchain.info/es/block/00000000000000000f8d7a12d307ddc717cab90d2ced5c7320624a13714b0aa3

It makes sense that the size of 731 is close to maximum. But 4 consecutive blocks is more than suspicious. Will run some stats on that as soon as I get time.

It doesn't make sense how close are the 4 nounces.



Nonce are not uniformly distributed because miners always start scanning from 0. Therefore, small nonce is more likely to be found on the blockchain.

https://bitcointalksearch.org/topic/histograms-of-all-valid-nonces-hashes-values-985846
legendary
Activity: 1428
Merit: 1000
https://www.bitworks.io
It is clear that someone found a trick for fast mining. I kind of happen to know what might be...

Is it IntelliHash?   Shocked

It is premining at some extend. Won't disclose more for the moment.

you should expose  it now bro.  if true it needs to be addressed sooner rather then later.

valiron,

On pins and needles here, seriously you start the thread asking like you have no idea, realistically only to puff yourself up in the end.. Waiting for the PM me and for 100 BTC I will tell you message next..
sr. member
Activity: 311
Merit: 250
It is clear that someone found a trick for fast mining. I kind of happen to know what might be...

Is it IntelliHash?   Shocked

It is premining at some extend. Won't disclose more for the moment.

you should expose  it now bro.  if true it needs to be addressed sooner rather then later.

...............................
legendary
Activity: 4256
Merit: 8551
'The right to privacy matters'
It is clear that someone found a trick for fast mining. I kind of happen to know what might be...

Is it IntelliHash?   Shocked

It is premining at some extend. Won't disclose more for the moment.

you should expose  it now bro.  if true it needs to be addressed sooner rather then later.
legendary
Activity: 4494
Merit: 3178
Vile Vixen and Miss Bitcointalk 2021-2023
All 4 nounces very close by.
Not close at all. A difference 300,000 is about one thirteenth of the maximum range, which means consecutive nonces will be this close together over 10 times a day.

4Byte nounce is between 1 and 2^32-1=4.294.967.295 right? Where is your 300.000 being 1/13th coming from?
I meant 300,000,000 (that's the closeness we're talking about right?), but I misplaced a few zeros somewhere around the second glass of absinthe. This is why you shouldn't drink and derive. Tongue

(that may just copy the block timestamp).
They are. The timestamps are exactly the same, down to very second.
Pages:
Jump to: