浏览代码

fix: whitespace

Reisen 2 年之前
父节点
当前提交
54b59e6644
共有 1 个文件被更改,包括 6 次插入6 次删除
  1. 6 6
      hermes/src/network/p2p.go

+ 6 - 6
hermes/src/network/p2p.go

@@ -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()