SIGBlockchain / project_aurum

SIG Blockchain blockchain project in Go
https://acm.cs.uic.edu/sigblockchain
MIT License
7 stars 0 forks source link

Change blockchain package I/O function file parameter #249

Closed kastolars closed 5 years ago

kastolars commented 5 years ago

Change I/O related functions to use file pointers/database connections instead of opening and closing excessively in the blockchain package.

https://www.vividcortex.com/blog/2015/09/22/common-pitfalls-go/

Example: This should be replaced with a database connection and a file pointer.

HarryL5004 commented 5 years ago

Completed