blockchain_go/cli_reindexutxo.go

13 lines
259 B
Go
Raw Permalink Normal View History

2017-09-16 22:30:30 -05:00
package main
import "fmt"
func (cli *CLI) reindexUTXO(nodeID string) {
bc := NewBlockchain(nodeID)
2017-09-16 22:30:30 -05:00
UTXOSet := UTXOSet{bc}
UTXOSet.Reindex()
count := UTXOSet.CountTransactions()
2017-09-17 00:45:53 -05:00
fmt.Printf("Done! There are %d transactions in the UTXO set.\n", count)
2017-09-16 22:30:30 -05:00
}