Fix printChain

This commit is contained in:
Ivan Kuznetsov 2017-09-03 09:57:32 +07:00
parent 46a1654c5a
commit 8e6636983a
1 changed files with 0 additions and 1 deletions

1
cli.go
View File

@ -38,7 +38,6 @@ func (cli *CLI) printChain() {
block := bci.Next()
fmt.Printf("Prev. hash: %x\n", block.PrevBlockHash)
fmt.Printf("Data: %s\n", block.Data)
fmt.Printf("Hash: %x\n", block.Hash)
pow := NewProofOfWork(block)
fmt.Printf("PoW: %s\n", strconv.FormatBool(pow.Validate()))