blockchain_go/cli_reindexutxo.go

13 lines
257 B
Go
Raw Normal View History

2017-10-21 21:13:25 -05:00
package bc
2017-09-16 22:30:30 -05:00
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
}