mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 09:53:48 +00:00
build: remove vendorcheck
This commit is contained in:
parent
639a37dc28
commit
db5d83a609
3 changed files with 2 additions and 3 deletions
2
Makefile
2
Makefile
|
|
@ -37,7 +37,7 @@ ios:
|
||||||
test: all
|
test: all
|
||||||
build/env.sh go run build/ci.go test
|
build/env.sh go run build/ci.go test
|
||||||
|
|
||||||
lint: ## Run linters. Use make install-linters first.
|
lint: ## Run linters.
|
||||||
build/env.sh go run build/ci.go lint
|
build/env.sh go run build/ci.go lint
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,6 @@ import (
|
||||||
const (
|
const (
|
||||||
// chainHeadChanSize is the size of channel listening to ChainHeadEvent.
|
// chainHeadChanSize is the size of channel listening to ChainHeadEvent.
|
||||||
chainHeadChanSize = 10
|
chainHeadChanSize = 10
|
||||||
// rmTxChanSize is the size of channel listening to RemovedTransactionEvent.
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|
|
||||||
|
|
@ -830,7 +830,7 @@ const (
|
||||||
|
|
||||||
// Packet type events.
|
// Packet type events.
|
||||||
// These correspond to packet types in the UDP protocol.
|
// These correspond to packet types in the UDP protocol.
|
||||||
pingPacket = iota
|
pingPacket = iota + 1
|
||||||
pongPacket
|
pongPacket
|
||||||
findnodePacket
|
findnodePacket
|
||||||
neighborsPacket
|
neighborsPacket
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue