Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 687 Bytes

File metadata and controls

14 lines (10 loc) · 687 Bytes

Basic-Blockchain-implementation

VERY BASIC implementation of Blockchain tech using C++

Key points:
  1) A transaction data with that blocks amt, sender info, receiver info and time stamp of transaction
  2) A block with current block index, transaction data and Hash of the previous block
  3) Creating genesis block and getLatestBlock pointer function

OUTPUT

image

How normal blockchain tech works:

Blockchain-data-structure-with-block-format