Go to file
daleboy 6d6b66e33b
Update blockchain.go
Edit the function NewBlockchain:
1.delete the parameter of the function,the parameter is not used.
2.fix the description of the function,the description is not right.
2020-10-15 22:25:29 +08:00
.gitignore Add .gitignore 2017-08-28 16:28:59 +07:00
README.md Add a link to the README 2017-09-05 21:38:03 +07:00
block.go Rename Transaction.GetHash to SetID; add Transaction.ID field 2017-09-04 11:32:24 +07:00
blockchain.go Update blockchain.go 2020-10-15 22:25:29 +08:00
cli.go Rework UTXO related functions 2017-09-05 14:33:33 +07:00
main.go Implement 'createblockchain' command 2017-09-03 11:17:10 +07:00
proofofwork.go Set PoW target to 24 2017-09-04 11:32:59 +07:00
transaction.go SetID method should use pointer receiver. 2017-10-31 17:21:50 +08:00
utils.go Clean up and refactor proofofwork.go 2017-08-21 21:06:52 +07:00

README.md

Blockchain in Go

A blockchain implementation in Go, as described in these articles:

  1. Basic Prototype
  2. Proof-of-Work
  3. Persistence and CLI
  4. Transactions 1