Browse Source

log chainID on startup

pull/110/head
Ethan Buchman 9 years ago
parent
commit
9dba060e25
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      node/node.go

+ 1
- 1
node/node.go View File

@ -141,7 +141,7 @@ func NewNode() *Node {
// Call Start() after adding the listeners.
func (n *Node) Start() {
log.Info("Starting Node")
log.Info("Starting Node", "chainID", config.GetString("chain_id"))
n.book.Start()
n.sw.SetNodeInfo(makeNodeInfo(n.sw))
n.sw.Start()


Loading…
Cancel
Save