Documentation ¶ Index ¶ Variables func Start(port string) type Block type Message Constants ¶ This section is empty. Variables ¶ View Source var Blockchain []Block // 체인 선언 Functions ¶ func Start ¶ func Start(port string) Types ¶ type Block ¶ type Block struct { Index int // 데이터 레코드 위치 Timestamp string // 데이터 기록되는 시간 BPM int // business process management Hash string // 해당 블록 sha256 해쉬값 PrevHash string // 이전 블록의 sha256 해쉬값 Difficulty int // 해쉬에서 0를 찾을 때, 몇 개를 찾을 지 정하는 변수 Nonce string // } type Message ¶ type Message struct { BPM int } Source Files ¶ View all Source files pow.go Click to show internal directories. Click to hide internal directories.