0
If, in Bitcoin, the nonce is included in the header of the proposed block, is it the answer to the puzzle from the previous block?
0
If, in Bitcoin, the nonce is included in the header of the proposed block, is it the answer to the puzzle from the previous block?
1
Nonce of a header is the answer to that block.
Recall the mining process:
To sum up, nonces are for individual blocks, and a different nonce is chosen until the template becomes a valid block.
0
The header of block consists of:
The Current Hash always points to Previous Hash in set of mined blocks. Miners collect all transactions in pool and add it to block. The task of miner is to find Nonce in equation.And hash the final answer which is obtained.
Mathematically
A = Hash(B || z) where A and B are known. Task is to find "z".
If it's correct then it will be considered as valid block and added to blockchain. And reward for that block is generated and miner will send the message across the nodes regarding the valid block.
2If this is a question about a specific cryptocurrency, you should say which one. It's also a detail that must be covered in the relevant spec - have you checked it? – None – 2018-08-31T01:07:40.503
I have edited the question for bitcoin. – None – 2018-09-01T02:46:21.130
I don't know what you consider an 'answer', but a bitcoin block header has several fields including the hash of the previous block header (which also serves as its permanent id), and (separately) a nonce. See https://en.bitcoin.it/wiki/Block_hashing_algorithm and note that the nonce is 4 bytes while the prevblock-hash is 32 bytes.
– dave_thompson_085 – 2018-09-01T05:42:33.263