fix: whitespace

This commit is contained in:
Reisen 2023-06-12 10:30:26 +01:00
parent 034dc15cfa
commit 54b59e6644
1 changed files with 6 additions and 6 deletions

View File

@ -32,8 +32,8 @@ import (
"strings"
"time"
"net/http"
_ "net/http/pprof"
"net/http"
_ "net/http/pprof"
"github.com/libp2p/go-libp2p"
"github.com/libp2p/go-libp2p/core/crypto"
@ -58,10 +58,10 @@ func RegisterObservationCallback(f C.callback_t, network_id, bootstrap_addrs, li
bootstrapAddrs := strings.Split(C.GoString(bootstrap_addrs), ",")
listenAddrs := strings.Split(C.GoString(listen_addrs), ",")
// Bind pprof to 6060 for debugging Go code.
go func() {
http.ListenAndServe("127.0.0.1:6060", nil)
}()
// Bind pprof to 6060 for debugging Go code.
go func() {
http.ListenAndServe("127.0.0.1:6060", nil)
}()
var startTime int64
var recoverRerun func()