Developed by Muthu Praveen C - 220071601187
This project is a basic blockchain implementation in Python that simulates a voting system.
Each vote is stored as a block in the blockchain, ensuring immutability and transparency.
- Simple blockchain structure (
Block+Blockchainclasses). - Votes are stored securely using SHA-256 hashing.
- Each block contains:
- Index
- Previous Hash
- Timestamp
- Vote Data (
VoterID → Candidate)
- Validation method to check blockchain integrity.
- Demonstrates tamper-proof vote recording.