tendermint

package
v0.34.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 23, 2021 License: Apache-2.0 Imports: 42 Imported by: 12

Documentation

Index

Constants

View Source
const (
	NeverCreateEmptyBlocks  = "never"
	AlwaysCreateEmptyBlocks = "always"
)

Variables

View Source
var (
	ErrInvalidLengthTendermint        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTendermint          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTendermint = fmt.Errorf("proto: unexpected end of group")
)

Functions

func DBProvider added in v0.19.0

func DBProvider(ID string, backendType dbm.BackendType, dbDir string) (dbm.DB, error)

func DeriveGenesisDoc added in v0.18.0

func DeriveGenesisDoc(burrowGenesisDoc *genesis.GenesisDoc, appHash []byte) *tmTypes.GenesisDoc

func EnsureNodeKey added in v0.27.0

func EnsureNodeKey(nodeKeyFile string) (*p2p.NodeKey, error)

func NewLogger added in v0.18.0

func NewLogger(logger *logging.Logger) log.Logger

func NewNodeKey added in v0.27.0

func NewNodeKey() *p2p.NodeKey

func NewPrivValidatorMemory added in v0.20.0

func NewPrivValidatorMemory(addressable crypto.Addressable, signer crypto.Signer) *privValidatorMemory

Create a PrivValidator with in-memory state that takes an addressable representing the validator identity and a signer providing private signing for that identity.

func WriteNodeKey added in v0.27.0

func WriteNodeKey(nodeKeyFile string, key json.RawMessage) error

Types

type BurrowTendermintConfig added in v0.18.0

type BurrowTendermintConfig struct {
	Enabled bool
	// Initial peers we connect to for peer exchange
	Seeds string
	// Whether this node should crawl the network looking for new peers - disconnecting to peers after it has shared addresses
	SeedMode bool
	// Peers to which we automatically connect
	PersistentPeers string
	ListenHost      string
	ListenPort      string
	// Optional external that nodes may provide with their NodeInfo
	ExternalAddress string
	// Set true for strict address routability rules
	// Set false for private or local networks
	AddrBookStrict bool
	Moniker        string
	// Only accept connections from registered peers
	IdentifyPeers bool
	// Peers ID or address this node is authorize to sync with
	AuthorizedPeers string
	// EmptyBlocks mode and possible interval between empty blocks in seconds, one of:
	// "", "never" (to never create unnecessary blocks)
	// "always" (to create empty blocks each consensus round)
	CreateEmptyBlocks string
}

Burrow's view on Tendermint's config. Since we operate as a Tendermint harness not all configuration values are applicable, we may not allow some values to specified, or we may not allow some to be set independently. So this serves as a layer of indirection over Tendermint's real config that we derive from ours.

func DefaultBurrowTendermintConfig added in v0.18.0

func DefaultBurrowTendermintConfig() *BurrowTendermintConfig

func (*BurrowTendermintConfig) Config added in v0.25.0

func (btc *BurrowTendermintConfig) Config(rootDir string, timeoutFactor float64) (*tmConfig.Config, error)

func (*BurrowTendermintConfig) DefaultAuthorizedPeersProvider added in v0.23.0

func (btc *BurrowTendermintConfig) DefaultAuthorizedPeersProvider() abci.AuthorizedPeers

func (*BurrowTendermintConfig) ListenAddress added in v0.18.0

func (btc *BurrowTendermintConfig) ListenAddress() string

type LastSignedInfo added in v0.20.0

type LastSignedInfo struct {
	sync.Mutex
	Height    int64           `json:"height"`
	Round     int32           `json:"round"`
	Step      int8            `json:"step"`
	Signature []byte          `json:"signature,omitempty"` // so we don't lose signatures
	SignBytes binary.HexBytes `json:"signbytes,omitempty"` // so we don't lose signatures
}

LastSignedInfo contains information about the latest data signed by a validator to help prevent double signing.

func NewLastSignedInfo added in v0.20.0

func NewLastSignedInfo() *LastSignedInfo

func (*LastSignedInfo) SignProposal added in v0.20.0

func (lsi *LastSignedInfo) SignProposal(sign tmCryptoSigner, chainID string, proposal *tmproto.Proposal) error

SignProposal signs a canonical representation of the proposal, along with the chainID. Implements PrivValidator.

func (*LastSignedInfo) SignVote added in v0.20.0

func (lsi *LastSignedInfo) SignVote(sign tmCryptoSigner, chainID string, vote *tmproto.Vote) error

SignVote signs a canonical representation of the vote, along with the chainID. Implements PrivValidator.

func (*LastSignedInfo) String added in v0.20.0

func (lsi *LastSignedInfo) String() string

String returns a string representation of the LastSignedInfo.

type Node added in v0.18.0

type Node struct {
	*node.Node
	// contains filtered or unexported fields
}

Serves as a wrapper around the Tendermint node's closeable resources (database connections)

func NewNode added in v0.18.0

func NewNode(conf *config.Config, privValidator tmTypes.PrivValidator, genesisDoc *tmTypes.GenesisDoc,
	app *abci.App, metricsProvider node.MetricsProvider, logger *logging.Logger, options ...node.Option) (*Node, error)

func (*Node) Close added in v0.18.0

func (n *Node) Close()

func (*Node) DBProvider added in v0.18.0

func (n *Node) DBProvider(ctx *node.DBContext) (dbm.DB, error)

Since Tendermint doesn't close its DB connections

type NodeInfo added in v0.20.0

type NodeInfo struct {
	ID                   github_com_hyperledger_burrow_crypto.Address  `protobuf:"bytes,1,opt,name=ID,proto3,customtype=github.com/hyperledger/burrow/crypto.Address" json:"ID"`
	ListenAddress        string                                        `protobuf:"bytes,2,opt,name=ListenAddress,proto3" json:"ListenAddress,omitempty"`
	Network              string                                        `protobuf:"bytes,3,opt,name=Network,proto3" json:"Network,omitempty"`
	Version              string                                        `protobuf:"bytes,4,opt,name=Version,proto3" json:"Version,omitempty"`
	Channels             github_com_hyperledger_burrow_binary.HexBytes `protobuf:"bytes,5,opt,name=Channels,proto3,customtype=github.com/hyperledger/burrow/binary.HexBytes" json:"Channels"`
	Moniker              string                                        `protobuf:"bytes,6,opt,name=Moniker,proto3" json:"Moniker,omitempty"`
	RPCAddress           string                                        `protobuf:"bytes,7,opt,name=RPCAddress,proto3" json:"RPCAddress,omitempty"`
	TxIndex              string                                        `protobuf:"bytes,8,opt,name=TxIndex,proto3" json:"TxIndex,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                                      `json:"-"`
	XXX_unrecognized     []byte                                        `json:"-"`
	XXX_sizecache        int32                                         `json:"-"`
}

func NewNodeInfo added in v0.20.0

func NewNodeInfo(ni p2p.DefaultNodeInfo) *NodeInfo

func (*NodeInfo) Descriptor added in v0.20.0

func (*NodeInfo) Descriptor() ([]byte, []int)

func (*NodeInfo) GetListenAddress added in v0.20.0

func (m *NodeInfo) GetListenAddress() string

func (*NodeInfo) GetMoniker added in v0.20.0

func (m *NodeInfo) GetMoniker() string

func (*NodeInfo) GetNetwork added in v0.20.0

func (m *NodeInfo) GetNetwork() string

func (*NodeInfo) GetRPCAddress added in v0.24.0

func (m *NodeInfo) GetRPCAddress() string

func (*NodeInfo) GetTxIndex added in v0.24.0

func (m *NodeInfo) GetTxIndex() string

func (*NodeInfo) GetVersion added in v0.20.0

func (m *NodeInfo) GetVersion() string

func (*NodeInfo) Marshal added in v0.20.0

func (m *NodeInfo) Marshal() (dAtA []byte, err error)

func (*NodeInfo) MarshalTo added in v0.20.0

func (m *NodeInfo) MarshalTo(dAtA []byte) (int, error)

func (*NodeInfo) MarshalToSizedBuffer added in v0.31.0

func (m *NodeInfo) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*NodeInfo) ProtoMessage added in v0.20.0

func (*NodeInfo) ProtoMessage()

func (*NodeInfo) Reset added in v0.20.0

func (m *NodeInfo) Reset()

func (*NodeInfo) Size added in v0.20.0

func (m *NodeInfo) Size() (n int)

func (*NodeInfo) String added in v0.20.0

func (m *NodeInfo) String() string

func (*NodeInfo) Unmarshal added in v0.20.0

func (m *NodeInfo) Unmarshal(dAtA []byte) error

func (*NodeInfo) XXX_DiscardUnknown added in v0.23.0

func (m *NodeInfo) XXX_DiscardUnknown()

func (*NodeInfo) XXX_Marshal added in v0.23.0

func (m *NodeInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*NodeInfo) XXX_Merge added in v0.23.0

func (m *NodeInfo) XXX_Merge(src proto.Message)

func (*NodeInfo) XXX_MessageName added in v0.20.0

func (*NodeInfo) XXX_MessageName() string

func (*NodeInfo) XXX_Size added in v0.23.0

func (m *NodeInfo) XXX_Size() int

func (*NodeInfo) XXX_Unmarshal added in v0.23.0

func (m *NodeInfo) XXX_Unmarshal(b []byte) error

type NodeView added in v0.20.0

type NodeView struct {
	// contains filtered or unexported fields
}

func NewNodeView added in v0.20.0

func NewNodeView(tmNode *Node, txDecoder txs.Decoder, runID simpleuuid.UUID) (*NodeView, error)

func (*NodeView) BlockStore added in v0.20.0

func (nv *NodeView) BlockStore() state.BlockStore

func (*NodeView) IsSyncing added in v0.31.0

func (nv *NodeView) IsSyncing() bool

func (*NodeView) MempoolTransactions added in v0.20.0

func (nv *NodeView) MempoolTransactions(maxTxs int) ([]*txs.Envelope, error)

Pass -1 to get all available transactions

func (*NodeView) NodeInfo added in v0.20.0

func (nv *NodeView) NodeInfo() *NodeInfo

func (*NodeView) PeerRoundStates added in v0.20.0

func (nv *NodeView) PeerRoundStates() ([]*ctypes.PeerRoundState, error)

func (*NodeView) Peers added in v0.20.0

func (nv *NodeView) Peers() p2p.IPeerSet

func (*NodeView) RoundState added in v0.20.0

func (nv *NodeView) RoundState() *ctypes.RoundState

func (*NodeView) RoundStateJSON added in v0.20.1

func (nv *NodeView) RoundStateJSON() ([]byte, error)

func (*NodeView) RunID added in v0.20.1

func (nv *NodeView) RunID() simpleuuid.UUID

func (*NodeView) ValidatorAddress added in v0.25.0

func (nv *NodeView) ValidatorAddress() crypto.Address

func (*NodeView) ValidatorPublicKey added in v0.20.0

func (nv *NodeView) ValidatorPublicKey() *crypto.PublicKey

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL