mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-24 22:32:15 +00:00
* validate reactor messages Refs #2683 * validate blockchain messages Refs #2683 * validate evidence messages Refs #2683 * todo * check ProposalPOL and signature sizes * add a changelog entry * check addr is valid when we add it to the addrbook * validate incoming netAddr (not just nil check!) * fixes after Bucky's review * check timestamps * beef up block#ValidateBasic * move some checks into bcBlockResponseMessage * update Gopkg.lock Fix ``` grouped write of manifest, lock and vendor: failed to export github.com/tendermint/go-amino: fatal: failed to unpack tree object 6dcc6ddc143e116455c94b25c1004c99e0d0ca12 ``` by running `dep ensure -update` * bump year since now we check it * generate test/p2p/data on the fly using tendermint testnet * allow sync chains older than 1 year * use full path when creating a testnet * move testnet gen to test/docker/Dockerfile * relax LastCommitRound check Refs #2737 * fix conflicts after merge * add small comment * some ValidateBasic updates * fixes * AppHash length is not fixed
57 lines
1.2 KiB
Go
57 lines
1.2 KiB
Go
package pex
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/tendermint/tendermint/p2p"
|
|
)
|
|
|
|
type ErrAddrBookNonRoutable struct {
|
|
Addr *p2p.NetAddress
|
|
}
|
|
|
|
func (err ErrAddrBookNonRoutable) Error() string {
|
|
return fmt.Sprintf("Cannot add non-routable address %v", err.Addr)
|
|
}
|
|
|
|
type ErrAddrBookSelf struct {
|
|
Addr *p2p.NetAddress
|
|
}
|
|
|
|
func (err ErrAddrBookSelf) Error() string {
|
|
return fmt.Sprintf("Cannot add ourselves with address %v", err.Addr)
|
|
}
|
|
|
|
type ErrAddrBookPrivate struct {
|
|
Addr *p2p.NetAddress
|
|
}
|
|
|
|
func (err ErrAddrBookPrivate) Error() string {
|
|
return fmt.Sprintf("Cannot add private peer with address %v", err.Addr)
|
|
}
|
|
|
|
type ErrAddrBookPrivateSrc struct {
|
|
Src *p2p.NetAddress
|
|
}
|
|
|
|
func (err ErrAddrBookPrivateSrc) Error() string {
|
|
return fmt.Sprintf("Cannot add peer coming from private peer with address %v", err.Src)
|
|
}
|
|
|
|
type ErrAddrBookNilAddr struct {
|
|
Addr *p2p.NetAddress
|
|
Src *p2p.NetAddress
|
|
}
|
|
|
|
func (err ErrAddrBookNilAddr) Error() string {
|
|
return fmt.Sprintf("Cannot add a nil address. Got (addr, src) = (%v, %v)", err.Addr, err.Src)
|
|
}
|
|
|
|
type ErrAddrBookInvalidAddr struct {
|
|
Addr *p2p.NetAddress
|
|
}
|
|
|
|
func (err ErrAddrBookInvalidAddr) Error() string {
|
|
return fmt.Sprintf("Cannot add invalid address %v", err.Addr)
|
|
}
|