Remove NewNodeDefault...

This commit is contained in:
Jae Kwon 2016-01-12 16:04:34 -08:00
parent c9dbd81178
commit 790cde028b
2 changed files with 11 additions and 10 deletions

View File

@ -41,14 +41,6 @@ type Node struct {
privKey crypto.PrivKeyEd25519
}
func NewNodeDefaultPrivVal() *Node {
// Get PrivValidator
privValidatorFile := config.GetString("priv_validator_file")
privValidator := types.LoadOrGenPrivValidator(privValidatorFile)
return NewNode(privValidator)
}
func NewNode(privValidator *types.PrivValidator) *Node {
// Get BlockStore
blockStoreDB := dbm.GetDB("blockstore")
@ -280,8 +272,12 @@ func RunNode() {
}
}
// Get PrivValidator
privValidatorFile := config.GetString("priv_validator_file")
privValidator := types.LoadOrGenPrivValidator(privValidatorFile)
// Create & start node
n := NewNodeDefaultPrivVal()
n := NewNode(privValidator)
l := p2p.NewDefaultListener("tcp", config.GetString("node_laddr"), config.GetBool("skip_upnp"))
n.AddListener(l)
err := n.Start()

View File

@ -7,6 +7,7 @@ import (
. "github.com/tendermint/go-common"
"github.com/tendermint/go-p2p"
_ "github.com/tendermint/tendermint/config/tendermint_test"
"github.com/tendermint/tendermint/types"
"github.com/tendermint/tmsp/example/golang"
"github.com/tendermint/tmsp/server"
)
@ -23,8 +24,12 @@ func TestNodeStartStop(t *testing.T) {
// wait for the server
time.Sleep(time.Second * 2)
// Get PrivValidator
privValidatorFile := config.GetString("priv_validator_file")
privValidator := types.LoadOrGenPrivValidator(privValidatorFile)
// Create & start node
n := NewNodeDefaultPrivVal()
n := NewNode(privValidator)
l := p2p.NewDefaultListener("tcp", config.GetString("node_laddr"), config.GetBool("skip_upnp"))
n.AddListener(l)
n.Start()