build: remove vendorcheck

This commit is contained in:
Thomas Modeneis 2018-04-10 13:02:49 +02:00
parent 639a37dc28
commit db5d83a609
3 changed files with 2 additions and 3 deletions

View file

@ -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:

View file

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

View file

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