소스 검색

p2p/discover: bump maxBondingPingPongs to 16

This should increase the speed a bit because all findnode
results (up to 16) can be verified at the same time.
Felix Lange 10 년 전
부모
커밋
7fa2607bd1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      p2p/discover/table.go

+ 1 - 1
p2p/discover/table.go

@@ -25,7 +25,7 @@ const (
 	hashBits   = len(common.Hash{}) * 8
 	nBuckets   = hashBits + 1 // Number of buckets
 
-	maxBondingPingPongs = 10
+	maxBondingPingPongs = 16
 )
 
 type Table struct {