Will skipping nonce enchance mining performance given there's more resourceful miner

1

As most miner program start with 0 nonce and increment from there, given there are many resourceful miners who will also compete for the same desirable nonce:

Everyone is mining at [0 ~ LARGE_RANGE] (lower range)

I mine at [LARGE_RANGE + 1 ~ MAX_RANGE] (upper range)

Scenario 1: Other people found the desirable nonce at the lower range, they do it way quicker than I do even if I were to mine on the same range.

Scenario 2: The desirable nonce is at my range and I found it first(before others found it since I skipped the lower range)

Is this a possible way to improve my mining performance?

user52979

Posted 2017-05-30T01:57:32.450

Reputation: 13

Do you think that large mining operations have every individual miner start at nonce 0? Of course not. They all start in different places.Greg Hewgill 2017-05-30T02:12:05.430

But how are they distributed? Is it random or assigned like a pool, chopping ranges from 0 to N1 and N1 to N2... And if I pick LARGE_RANGE = N_MAX?user52979 2017-05-30T02:14:03.663

It's up to the mining control software. There is no predetermined plan.Greg Hewgill 2017-05-30T02:23:03.197

Answers

1

The blocks you try to mine will have your block reward address in them. The blocks other people try to mine will have their reward address in them. Because the blocks are different, any correct nonces will also be different.

When you mine, you are not competing with other miners in the same search space. Whoever finds their own nonce first wins, but everybody is looking for a different nonce.

Greg Hewgill

Posted 2017-05-30T01:57:32.450

Reputation: 3 321

1@Geremia Different miners always have different transactions, because one of the transactions is the reward transaction to themselves.Greg Hewgill 2017-06-09T18:04:59.090