couldnt find how to move it, I'm starting to panick...
Ok I need someone to make things clear for me, as it happen I made an ass of u and me about the whole bitcoin system (I oversimplified it in my mind then thought it worked that way)
mainly it's about the block components :
it contains a timestamp wich is updated every few seconds (new block in this case, or is the current block updated?)
it contains the hash of the previous block (I understand the purpose of that)
the merkle root of ALL previous transactions (idem)
the "Bits" and the "nonce"...
ok from wikipedia, a nonce in cryptography is a one-time use string, in our case I'd say that its what allows us to identify the block but I'm not quite sure,
the "Bits" wich are updated everytime a new hash is tried, what's that? I'm quite lost? is it the target to reach to make a new block?
00000000000004FAEB0000000000000000000000000000000000000000000000
edit, ok after REreading it here is how I see it :
in the bitcoin network you can be a node (miner), in each block the "bit" part is the curent target for the next block generation, everytime a new hash is tried the block nonce is incremented, effectively branding it, same purpose as the timestamp. whenever it reaches 1111, acording to
https://en.bitcoin.it/wiki/Block_hashing_algorithmthe "extra nonce portion" is incremented... Must be a part of the merkle root, but wich one...?
re edit, so miners only make hashs of the whole block they get every so often in hope to get a hash smaller than the target (wich is BigEndian because of the hashing algorithm but little endian in it's reading by bitcoin software)
then if they succeed they add this new hash to the merkle root, create a new block with the previous block hash in it, the new merkle root and broadcast it on the network... I dont see how they get their free 50 BTC...