2017-09-16 22:30:30 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
|
|
|
|
func (cli *CLI) reindexUTXO() {
|
2017-09-16 22:43:23 -05:00
|
|
|
bc := NewBlockchain()
|
2017-09-16 22:30:30 -05:00
|
|
|
UTXOSet := UTXOSet{bc}
|
|
|
|
UTXOSet.Reindex()
|
|
|
|
|
|
|
|
count := UTXOSet.GetCount()
|
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
|
|
|
}
|