Enable txindex=1 as default #37
1 changed files with 3 additions and 0 deletions
3
btcd.go
3
btcd.go
|
@ -18,6 +18,8 @@ import (
|
||||||
"github.com/btcsuite/btcd/blockchain/indexers"
|
"github.com/btcsuite/btcd/blockchain/indexers"
|
||||||
"github.com/btcsuite/btcd/database"
|
"github.com/btcsuite/btcd/database"
|
||||||
"github.com/btcsuite/btcd/limits"
|
"github.com/btcsuite/btcd/limits"
|
||||||
|
|
||||||
|
"github.com/felixge/fgprof"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
@ -65,6 +67,7 @@ func btcdMain(serverChan chan<- *server) error {
|
||||||
|
|
||||||
// Enable http profiling server if requested.
|
// Enable http profiling server if requested.
|
||||||
if cfg.Profile != "" {
|
if cfg.Profile != "" {
|
||||||
|
http.DefaultServeMux.Handle("/debug/fgprof", fgprof.Handler())
|
||||||
go func() {
|
go func() {
|
||||||
listenAddr := net.JoinHostPort("", cfg.Profile)
|
listenAddr := net.JoinHostPort("", cfg.Profile)
|
||||||
btcdLog.Infof("Profile server listening on %s", listenAddr)
|
btcdLog.Infof("Profile server listening on %s", listenAddr)
|
||||||
|
|
Loading…
Reference in a new issue