Browse Source

Added pprof entry

pull/67/head
Jae Kwon 9 years ago
parent
commit
778992e31e
1 changed files with 10 additions and 1 deletions
  1. +10
    -1
      node/node.go

+ 10
- 1
node/node.go View File

@ -1,6 +1,7 @@
package node
import (
"fmt"
"math/rand"
"net"
"net/http"
@ -21,6 +22,14 @@ import (
"github.com/tendermint/tendermint/types"
)
import _ "net/http/pprof"
func init() {
go func() {
fmt.Println(http.ListenAndServe("0.0.0.0:6060", nil))
}()
}
type Node struct {
sw *p2p.Switch
evsw *events.EventSwitch
@ -209,7 +218,7 @@ func makeNodeInfo(sw *p2p.Switch) *types.NodeInfo {
nodeInfo := &types.NodeInfo{
Moniker: config.App().GetString("Moniker"),
Network: config.App().GetString("Network"),
Version: "0.0.1",
Version: "0.0.2", // Bumped for new SignBytes.
}
if !sw.IsListening() {
return nodeInfo


Loading…
Cancel
Save