This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Python program to create Blockchain | |
| # For timestamp | |
| import datetime | |
| # Calculating the hash | |
| # in order to add digital | |
| # fingerprints to the blocks | |
| import hashlib |