Blockchain in C++

I recommend you to read the previous blog regarding the basics of Blockchain to understand this blog completely . The Difference between Data Structures and Blockchain is that the assets are viable , which means that values in data structure can have double spending. For Example : Ash has to give misty $100 and brock […]

Read More Blockchain in C++

Understanding concepts of blockchain

The original Paper Highlights are followed :-> Original term tossed up was , A peer to peer Electronic Cash System by Satoshi Nakamoto ,the original abstract from his paper was : Abstract. A purely peer-to-peer version of electronic cash would allow online payments to be sent directly from one party to another without going through […]

Read More Understanding concepts of blockchain

How a bitcoin transaction works

1. A user needs to open the wallet application and attempt to send the a certain crypto from sender to recipient .2. This transaction now awaiting to be picked up ,it hovers in a ‘pool of unconfirmed transaction’3. Miners on the network select transactions from these pools and form them into a ‘block’.4. By selecting […]

Read More How a bitcoin transaction works

Block Chain

it is immutable ,sequential chain of records called Blocks. They can contain transactions,files or any data you like .They are chained together using hashes. It uses hash functions :it takes in input value and that creates an out put value deterministic of the input value. It takes an input and outputs a hash . A […]

Read More Block Chain