Golang与区块链
imissrc
你好!
展开
-
Go语言学习(一)网上的实现一个简单的区块链
package mainimport ( "crypto/sha256" "encoding/hex" "fmt" "github.com/labstack/echo" "time")type BlockModel struct{ Id int64 //ID索引,这个块在整个链中的位置 Timestamp string //区块创建的时间标识 BPM int //每...转载 2018-10-02 19:41:35 · 578 阅读 · 0 评论 -
go语言学习(四)区块链文件存储与命令行接口
//block.gopackage mainimport ( "bytes" "encoding/gob" "time" "log")//定义区块type Block struct{ Timestamp int64 //时间线,1970年1月1日00.00.00 Data []byte //交易数据 PrevBlockHash []byte //上一...转载 2018-10-07 13:23:53 · 889 阅读 · 0 评论