655d1b1d6f
* Functions in pkg should return errors * If aborting is desired, that behavior should be left to the consumer
23 lines
664 B
Go
23 lines
664 B
Go
package main
|
|
|
|
import (
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"github.com/8thlight/vulcanizedb/cmd"
|
|
"github.com/8thlight/vulcanizedb/pkg/geth"
|
|
"github.com/8thlight/vulcanizedb/pkg/history"
|
|
)
|
|
|
|
func main() {
|
|
environment := flag.String("environment", "", "Environment name")
|
|
startingBlockNumber := flag.Int("starting-number", -1, "First block to fill from")
|
|
flag.Parse()
|
|
config := cmd.LoadConfig(*environment)
|
|
blockchain := geth.NewGethBlockchain(config.Client.IPCPath)
|
|
repository := cmd.LoadPostgres(config.Database)
|
|
numberOfBlocksCreated := history.PopulateBlocks(blockchain, repository, int64(*startingBlockNumber))
|
|
fmt.Printf("Populated %d blocks", numberOfBlocksCreated)
|
|
}
|