Pass in IPC path as command line argument

This commit is contained in:
Eric Meyer 2017-10-23 14:33:08 -05:00
parent de0bdff579
commit cc05feee3f
2 changed files with 8 additions and 4 deletions

View File

@ -13,10 +13,10 @@ type GethBlockchain struct {
observers []BlockchainObserver
}
func NewGethBlockchain() *GethBlockchain {
fmt.Println("Creating Geth Blockchain")
func NewGethBlockchain(ipcPath string) *GethBlockchain {
fmt.Printf("Creating Geth Blockchain to: %s\n", ipcPath)
blockchain := GethBlockchain{}
client, _ := ethclient.Dial("/var/folders/b3/z7fhy7cs06q8d7y3_pwwt4x40000gn/T/ethereum_dev_mode/geth.ipc")
client, _ := ethclient.Dial(ipcPath)
// TODO: handle error gracefully
blockchain.client = client
return &blockchain

View File

@ -1,11 +1,15 @@
package main
import (
"flag"
"github.com/8thlight/vulcanizedb/core"
)
func main() {
var blockchain core.Blockchain = core.NewGethBlockchain()
ipcPath := flag.String("ipcPath", "", "location geth.ipc")
flag.Parse()
var blockchain core.Blockchain = core.NewGethBlockchain(*ipcPath)
blockchain.RegisterObserver(core.BlockchainLoggingObserver{})
blockchain.SubscribeToEvents()
}