Documentation ¶
Overview ¶
Package network implements the LoveBlock protocol.
Package network implements the LoveBlock protocol.
Index ¶
- Constants
- Variables
- func CreateConsensusEngine(ctx *node.ServiceContext, chainConfig *params.ChainConfig, db lovedb.Database, ...) consensus.Engine
- func CreateDB(ctx *node.ServiceContext, config *Config, name string) (lovedb.Database, error)
- func NewBloomIndexer(db lovedb.Database, size uint64) *core.ChainIndexer
- type BloomIndexer
- type Config
- type LesServer
- type LoveApiBackend
- func (b *LoveApiBackend) AccountManager() *accounts.Manager
- func (b *LoveApiBackend) BlockByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*types.Block, error)
- func (b *LoveApiBackend) BloomStatus() (uint64, uint64)
- func (b *LoveApiBackend) ChainConfig() *params.ChainConfig
- func (b *LoveApiBackend) ChainDb() lovedb.Database
- func (b *LoveApiBackend) CurrentBlock() *types.Block
- func (b *LoveApiBackend) Downloader() *downloader.Downloader
- func (b *LoveApiBackend) EventMux() *event.TypeMux
- func (b *LoveApiBackend) GetBlock(ctx context.Context, blockHash common.Hash) (*types.Block, error)
- func (b *LoveApiBackend) GetEVM(ctx context.Context, msg core.Message, state *state.StateDB, ...) (*vm.EVM, func() error, error)
- func (b *LoveApiBackend) GetLogs(ctx context.Context, blockHash common.Hash) ([][]*types.Log, error)
- func (b *LoveApiBackend) GetPoolNonce(ctx context.Context, addr common.Address) (uint64, error)
- func (b *LoveApiBackend) GetPoolTransaction(hash common.Hash) *types.Transaction
- func (b *LoveApiBackend) GetPoolTransactions() (types.Transactions, error)
- func (b *LoveApiBackend) GetReceipts(ctx context.Context, blockHash common.Hash) (types.Receipts, error)
- func (b *LoveApiBackend) GetTd(blockHash common.Hash) *big.Int
- func (b *LoveApiBackend) HeaderByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*types.Header, error)
- func (b *LoveApiBackend) ProtocolVersion() int
- func (b *LoveApiBackend) SendTx(ctx context.Context, signedTx *types.Transaction) error
- func (b *LoveApiBackend) ServiceFilter(ctx context.Context, session *bloombits.MatcherSession)
- func (b *LoveApiBackend) SetHead(number uint64)
- func (b *LoveApiBackend) StateAndHeaderByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*state.StateDB, *types.Header, error)
- func (b *LoveApiBackend) Stats() (pending int, queued int)
- func (b *LoveApiBackend) SubscribeChainEvent(ch chan<- core.ChainEvent) event.Subscription
- func (b *LoveApiBackend) SubscribeChainHeadEvent(ch chan<- core.ChainHeadEvent) event.Subscription
- func (b *LoveApiBackend) SubscribeChainSideEvent(ch chan<- core.ChainSideEvent) event.Subscription
- func (b *LoveApiBackend) SubscribeLogsEvent(ch chan<- []*types.Log) event.Subscription
- func (b *LoveApiBackend) SubscribeRemovedLogsEvent(ch chan<- core.RemovedLogsEvent) event.Subscription
- func (b *LoveApiBackend) SubscribeTxPreEvent(ch chan<- core.TxPreEvent) event.Subscription
- func (b *LoveApiBackend) SuggestPrice(ctx context.Context) (*big.Int, error)
- func (b *LoveApiBackend) TxPoolContent() (map[common.Address]types.Transactions, map[common.Address]types.Transactions)
- type Loveblock
- func (s *Loveblock) APIs() []rpc.API
- func (s *Loveblock) AccountManager() *accounts.Manager
- func (s *Loveblock) AddLesServer(ls LesServer)
- func (s *Loveblock) BlockChain() *core.BlockChain
- func (s *Loveblock) ChainDb() lovedb.Database
- func (s *Loveblock) Downloader() *downloader.Downloader
- func (s *Loveblock) Engine() consensus.Engine
- func (s *Loveblock) EventMux() *event.TypeMux
- func (s *Loveblock) IsListening() bool
- func (s *Loveblock) IsMining() bool
- func (s *Loveblock) LoveVersion() int
- func (s *Loveblock) Lovebase() (eb common.Address, err error)
- func (s *Loveblock) Miner() *miner.Miner
- func (s *Loveblock) NetVersion() uint64
- func (s *Loveblock) Protocols() []p2p.Protocol
- func (s *Loveblock) ResetWithGenesisBlock(gb *types.Block)
- func (self *Loveblock) SetLovebase(networkbase common.Address)
- func (s *Loveblock) Start(srvr *p2p.Server) error
- func (s *Loveblock) StartMining(local bool) error
- func (s *Loveblock) Stop() error
- func (s *Loveblock) StopMining()
- func (s *Loveblock) TxPool() *core.TxPool
- type NodeInfo
- type NodeMode
- type PeerInfo
- type PrivateAdminAPI
- type PrivateDebugAPI
- func (api *PrivateDebugAPI) GetBadBlocks(ctx context.Context) ([]core.BadBlockArgs, error)
- func (api *PrivateDebugAPI) GetModifiedAccountsByHash(startHash common.Hash, endHash *common.Hash) ([]common.Address, error)
- func (api *PrivateDebugAPI) GetModifiedAccountsByNumber(startNum uint64, endNum *uint64) ([]common.Address, error)
- func (api *PrivateDebugAPI) Preimage(ctx context.Context, hash common.Hash) (hexutil.Bytes, error)
- func (api *PrivateDebugAPI) StorageRangeAt(ctx context.Context, blockHash common.Hash, txIndex int, ...) (StorageRangeResult, error)
- func (api *PrivateDebugAPI) TraceBlock(ctx context.Context, blob []byte, config *TraceConfig) ([]*txTraceResult, error)
- func (api *PrivateDebugAPI) TraceBlockByHash(ctx context.Context, hash common.Hash, config *TraceConfig) ([]*txTraceResult, error)
- func (api *PrivateDebugAPI) TraceBlockByNumber(ctx context.Context, number rpc.BlockNumber, config *TraceConfig) ([]*txTraceResult, error)
- func (api *PrivateDebugAPI) TraceBlockFromFile(ctx context.Context, file string, config *TraceConfig) ([]*txTraceResult, error)
- func (api *PrivateDebugAPI) TraceChain(ctx context.Context, start, end rpc.BlockNumber, config *TraceConfig) (*rpc.Subscription, error)
- func (api *PrivateDebugAPI) TraceTransaction(ctx context.Context, hash common.Hash, config *TraceConfig) (interface{}, error)
- type PrivateMinerAPI
- type ProtocolManager
- func (pm *ProtocolManager) BroadcastBlock(block *types.Block, propagate bool)
- func (pm *ProtocolManager) BroadcastConsensusInfo(hash common.Hash, number uint64, hasFlag bool)
- func (pm *ProtocolManager) BroadcastTx(hash common.Hash, tx *types.Transaction)
- func (self *ProtocolManager) NodeInfo() *NodeInfo
- func (pm *ProtocolManager) Start(maxPeers int)
- func (pm *ProtocolManager) Stop()
- type PublicDebugAPI
- type PublicLoveblockAPI
- type PublicMinerAPI
- type StorageRangeResult
- type TraceConfig
Constants ¶
const ( // Protocol messages belonging to network/62 StatusMsg = 0x00 // 用于握手时发送/接收当前节点状态包括版本号,genesis的hash,current的hash等 NewBlockHashesMsg = 0x01 // 新block的hash集消息 TxMsg = 0x02 GetBlockHeadersMsg = 0x03 BlockHeadersMsg = 0x04 // 区块头集消息 GetBlockBodiesMsg = 0x05 BlockBodiesMsg = 0x06 //区块体集消息 NewBlockMsg = 0x07 // 新的完整的block消息 NewConsensusMsg = 0x08 // sman 区块确认消息 // Protocol messages belonging to network/63 GetNodeDataMsg = 0x0d NodeDataMsg = 0x0e GetReceiptsMsg = 0x0f ReceiptsMsg = 0x10 )
network protocol message codes
const ( ErrMsgTooLarge = iota ErrDecode ErrInvalidMsgCode ErrProtocolVersionMismatch ErrNetworkIdMismatch ErrGenesisBlockMismatch ErrNoStatusMsg ErrExtraStatusMsg ErrSuspendedPeer )
const ProtocolMaxMsgSize = 10 * 1024 * 1024 // Maximum cap on the size of a protocol message
Variables ¶
var DefaultConfig = Config{ SyncMode: downloader.FastSync, NetworkId: 1, LightPeers: 100, DatabaseCache: 768, TrieCache: 256, TrieTimeout: 5 * time.Minute, GasPrice: big.NewInt(18 * params.Shannon), TxPool: core.DefaultTxPoolConfig, GPO: gasprice.Config{ Blocks: 20, Percentile: 60, }, }
DefaultConfig contains default settings for use on the LoveBlock main net.
var ProtocolLengths = []uint64{17, 8}
Number of implemented message corresponding to different protocol versions.
var ProtocolName = "network"
Official short name of the protocol used during capability negotiation.
var ProtocolVersions = []uint{network63, network62}
Supported versions of the network protocol (first is primary).
Functions ¶
func CreateConsensusEngine ¶
func CreateConsensusEngine(ctx *node.ServiceContext, chainConfig *params.ChainConfig, db lovedb.Database, coinbase common.Address) consensus.Engine
CreateConsensusEngine creates the required type of consensus engine instance for an LoveBlock service
func NewBloomIndexer ¶
func NewBloomIndexer(db lovedb.Database, size uint64) *core.ChainIndexer
NewBloomIndexer returns a chain indexer that generates bloom bits data for the canonical chain for fast logs filtering.
Types ¶
type BloomIndexer ¶
type BloomIndexer struct {
// contains filtered or unexported fields
}
BloomIndexer implements a core.ChainIndexer, building up a rotated bloom bits index for the LoveBlock header bloom filters, permitting blazing fast filtering.
func (*BloomIndexer) Commit ¶
func (b *BloomIndexer) Commit() error
Commit implements core.ChainIndexerBackend, finalizing the bloom section and writing it out into the database.
func (*BloomIndexer) Process ¶
func (b *BloomIndexer) Process(header *types.Header)
Process implements core.ChainIndexerBackend, adding a new header's bloom into the index.
type Config ¶
type Config struct { // The genesis block, which is inserted if the database is empty. // If nil, the LoveBlock main net block is used. Genesis *core.Genesis `toml:",omitempty"` // Protocol options NetworkId uint64 // Network ID to use for selecting peers to connect to SyncMode downloader.SyncMode NoPruning bool // Light client options LightServ int `toml:",omitempty"` // Maximum percentage of time allowed for serving LES requests LightPeers int `toml:",omitempty"` // Maximum number of LES client peers // Database options SkipBcVersionCheck bool `toml:"-"` DatabaseHandles int `toml:"-"` DatabaseCache int TrieCache int TrieTimeout time.Duration // Mining-related options Lovebase common.Address `toml:",omitempty"` MinerThreads int `toml:",omitempty"` ExtraData []byte `toml:",omitempty"` GasPrice *big.Int // Transaction pool options TxPool core.TxPoolConfig // Gas Price Oracle options GPO gasprice.Config // Enables tracking of SHA3 preimages in the VM EnablePreimageRecording bool // Miscellaneous options DocRoot string `toml:"-"` // sman NodeMode NodeMode }
func (Config) MarshalTOML ¶
MarshalTOML marshals as TOML.
func (*Config) UnmarshalTOML ¶
UnmarshalTOML unmarshals from TOML.
type LoveApiBackend ¶
type LoveApiBackend struct {
// contains filtered or unexported fields
}
LoveApiBackend implements loveapi.Backend for full nodes
func (*LoveApiBackend) AccountManager ¶
func (b *LoveApiBackend) AccountManager() *accounts.Manager
func (*LoveApiBackend) BlockByNumber ¶
func (b *LoveApiBackend) BlockByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*types.Block, error)
func (*LoveApiBackend) BloomStatus ¶
func (b *LoveApiBackend) BloomStatus() (uint64, uint64)
func (*LoveApiBackend) ChainConfig ¶
func (b *LoveApiBackend) ChainConfig() *params.ChainConfig
func (*LoveApiBackend) ChainDb ¶
func (b *LoveApiBackend) ChainDb() lovedb.Database
func (*LoveApiBackend) CurrentBlock ¶
func (b *LoveApiBackend) CurrentBlock() *types.Block
func (*LoveApiBackend) Downloader ¶
func (b *LoveApiBackend) Downloader() *downloader.Downloader
func (*LoveApiBackend) EventMux ¶
func (b *LoveApiBackend) EventMux() *event.TypeMux
func (*LoveApiBackend) GetPoolNonce ¶
func (*LoveApiBackend) GetPoolTransaction ¶
func (b *LoveApiBackend) GetPoolTransaction(hash common.Hash) *types.Transaction
func (*LoveApiBackend) GetPoolTransactions ¶
func (b *LoveApiBackend) GetPoolTransactions() (types.Transactions, error)
func (*LoveApiBackend) GetReceipts ¶
func (*LoveApiBackend) HeaderByNumber ¶
func (b *LoveApiBackend) HeaderByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*types.Header, error)
func (*LoveApiBackend) ProtocolVersion ¶
func (b *LoveApiBackend) ProtocolVersion() int
func (*LoveApiBackend) SendTx ¶
func (b *LoveApiBackend) SendTx(ctx context.Context, signedTx *types.Transaction) error
func (*LoveApiBackend) ServiceFilter ¶
func (b *LoveApiBackend) ServiceFilter(ctx context.Context, session *bloombits.MatcherSession)
func (*LoveApiBackend) SetHead ¶
func (b *LoveApiBackend) SetHead(number uint64)
func (*LoveApiBackend) StateAndHeaderByNumber ¶
func (b *LoveApiBackend) StateAndHeaderByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*state.StateDB, *types.Header, error)
func (*LoveApiBackend) Stats ¶
func (b *LoveApiBackend) Stats() (pending int, queued int)
func (*LoveApiBackend) SubscribeChainEvent ¶
func (b *LoveApiBackend) SubscribeChainEvent(ch chan<- core.ChainEvent) event.Subscription
func (*LoveApiBackend) SubscribeChainHeadEvent ¶
func (b *LoveApiBackend) SubscribeChainHeadEvent(ch chan<- core.ChainHeadEvent) event.Subscription
func (*LoveApiBackend) SubscribeChainSideEvent ¶
func (b *LoveApiBackend) SubscribeChainSideEvent(ch chan<- core.ChainSideEvent) event.Subscription
func (*LoveApiBackend) SubscribeLogsEvent ¶
func (b *LoveApiBackend) SubscribeLogsEvent(ch chan<- []*types.Log) event.Subscription
func (*LoveApiBackend) SubscribeRemovedLogsEvent ¶
func (b *LoveApiBackend) SubscribeRemovedLogsEvent(ch chan<- core.RemovedLogsEvent) event.Subscription
func (*LoveApiBackend) SubscribeTxPreEvent ¶
func (b *LoveApiBackend) SubscribeTxPreEvent(ch chan<- core.TxPreEvent) event.Subscription
func (*LoveApiBackend) SuggestPrice ¶
func (*LoveApiBackend) TxPoolContent ¶
func (b *LoveApiBackend) TxPoolContent() (map[common.Address]types.Transactions, map[common.Address]types.Transactions)
type Loveblock ¶
type Loveblock struct { ApiBackend *LoveApiBackend // contains filtered or unexported fields }
LoveBlock implements the LoveBlock full node service.
func New ¶
func New(ctx *node.ServiceContext, config *Config) (*Loveblock, error)
New creates a new LoveBlock object (including the initialisation of the common LoveBlock object)
func (*Loveblock) APIs ¶
APIs returns the collection of RPC services the LoveBlock package offers. NOTE, some of these services probably need to be moved to somewhere else.
func (*Loveblock) AccountManager ¶
func (*Loveblock) AddLesServer ¶
func (*Loveblock) BlockChain ¶
func (s *Loveblock) BlockChain() *core.BlockChain
func (*Loveblock) Downloader ¶
func (s *Loveblock) Downloader() *downloader.Downloader
func (*Loveblock) IsListening ¶
func (*Loveblock) LoveVersion ¶
func (*Loveblock) NetVersion ¶
func (*Loveblock) Protocols ¶
Protocols implements node.Service, returning all the currently configured network protocols to start.
func (*Loveblock) ResetWithGenesisBlock ¶
func (*Loveblock) SetLovebase ¶
set in js console via admin interface or wrapper from cli flags
func (*Loveblock) Start ¶
Start implements node.Service, starting all internal goroutines needed by the LoveBlock protocol implementation.
func (*Loveblock) StartMining ¶
func (*Loveblock) Stop ¶
Stop implements node.Service, terminating all internal goroutines used by the LoveBlock protocol.
func (*Loveblock) StopMining ¶
func (s *Loveblock) StopMining()
type NodeInfo ¶
type NodeInfo struct { Network uint64 `json:"network"` // LoveBlock network ID (1=Mainnet, 3=Testnet) Difficulty *big.Int `json:"difficulty"` // Total difficulty of the host's blockchain Genesis common.Hash `json:"genesis"` // SHA3 hash of the host's genesis block Config *params.ChainConfig `json:"config"` // Chain configuration for the fork rules Head common.Hash `json:"head"` // SHA3 hash of the host's best owned block }
NodeInfo represents a short summary of the LoveBlock sub-protocol metadata known about the host peer.
type PeerInfo ¶
type PeerInfo struct { Version int `json:"version"` // LoveBlock protocol version negotiated Difficulty *big.Int `json:"difficulty"` // Total difficulty of the peer's blockchain Head string `json:"head"` // SHA3 hash of the peer's best owned block }
PeerInfo represents a short summary of the LoveBlock sub-protocol metadata known about a connected peer.
type PrivateAdminAPI ¶
type PrivateAdminAPI struct {
// contains filtered or unexported fields
}
PrivateAdminAPI is the collection of LoveBlock full node-related APIs exposed over the private admin endpoint.
func NewPrivateAdminAPI ¶
func NewPrivateAdminAPI(network *Loveblock) *PrivateAdminAPI
NewPrivateAdminAPI creates a new API definition for the full node private admin methods of the LoveBlock service.
func (*PrivateAdminAPI) ExportChain ¶
func (api *PrivateAdminAPI) ExportChain(file string) (bool, error)
ExportChain exports the current blockchain into a local file.
func (*PrivateAdminAPI) ImportChain ¶
func (api *PrivateAdminAPI) ImportChain(file string) (bool, error)
ImportChain imports a blockchain from a local file.
type PrivateDebugAPI ¶
type PrivateDebugAPI struct {
// contains filtered or unexported fields
}
PrivateDebugAPI is the collection of LoveBlock full node APIs exposed over the private debugging endpoint.
func NewPrivateDebugAPI ¶
func NewPrivateDebugAPI(config *params.ChainConfig, network *Loveblock) *PrivateDebugAPI
NewPrivateDebugAPI creates a new API definition for the full node-related private debug methods of the LoveBlock service.
func (*PrivateDebugAPI) GetBadBlocks ¶
func (api *PrivateDebugAPI) GetBadBlocks(ctx context.Context) ([]core.BadBlockArgs, error)
GetBadBLocks returns a list of the last 'bad blocks' that the client has seen on the network and returns them as a JSON list of block-hashes
func (*PrivateDebugAPI) GetModifiedAccountsByHash ¶
func (api *PrivateDebugAPI) GetModifiedAccountsByHash(startHash common.Hash, endHash *common.Hash) ([]common.Address, error)
GetModifiedAccountsByHash returns all accounts that have changed between the two blocks specified. A change is defined as a difference in nonce, balance, code hash, or storage hash.
With one parameter, returns the list of accounts modified in the specified block.
func (*PrivateDebugAPI) GetModifiedAccountsByNumber ¶
func (api *PrivateDebugAPI) GetModifiedAccountsByNumber(startNum uint64, endNum *uint64) ([]common.Address, error)
GetModifiedAccountsByumber returns all accounts that have changed between the two blocks specified. A change is defined as a difference in nonce, balance, code hash, or storage hash.
With one parameter, returns the list of accounts modified in the specified block.
func (*PrivateDebugAPI) Preimage ¶
Preimage is a debug API function that returns the preimage for a sha3 hash, if known.
func (*PrivateDebugAPI) StorageRangeAt ¶
func (api *PrivateDebugAPI) StorageRangeAt(ctx context.Context, blockHash common.Hash, txIndex int, contractAddress common.Address, keyStart hexutil.Bytes, maxResult int) (StorageRangeResult, error)
StorageRangeAt returns the storage at the given block height and transaction index.
func (*PrivateDebugAPI) TraceBlock ¶
func (api *PrivateDebugAPI) TraceBlock(ctx context.Context, blob []byte, config *TraceConfig) ([]*txTraceResult, error)
TraceBlock returns the structured logs created during the execution of EVM and returns them as a JSON object.
func (*PrivateDebugAPI) TraceBlockByHash ¶
func (api *PrivateDebugAPI) TraceBlockByHash(ctx context.Context, hash common.Hash, config *TraceConfig) ([]*txTraceResult, error)
TraceBlockByHash returns the structured logs created during the execution of EVM and returns them as a JSON object.
func (*PrivateDebugAPI) TraceBlockByNumber ¶
func (api *PrivateDebugAPI) TraceBlockByNumber(ctx context.Context, number rpc.BlockNumber, config *TraceConfig) ([]*txTraceResult, error)
TraceBlockByNumber returns the structured logs created during the execution of EVM and returns them as a JSON object.
func (*PrivateDebugAPI) TraceBlockFromFile ¶
func (api *PrivateDebugAPI) TraceBlockFromFile(ctx context.Context, file string, config *TraceConfig) ([]*txTraceResult, error)
TraceBlockFromFile returns the structured logs created during the execution of EVM and returns them as a JSON object.
func (*PrivateDebugAPI) TraceChain ¶
func (api *PrivateDebugAPI) TraceChain(ctx context.Context, start, end rpc.BlockNumber, config *TraceConfig) (*rpc.Subscription, error)
TraceChain returns the structured logs created during the execution of EVM between two blocks (excluding start) and returns them as a JSON object.
func (*PrivateDebugAPI) TraceTransaction ¶
func (api *PrivateDebugAPI) TraceTransaction(ctx context.Context, hash common.Hash, config *TraceConfig) (interface{}, error)
TraceTransaction returns the structured logs created during the execution of EVM and returns them as a JSON object.
type PrivateMinerAPI ¶
type PrivateMinerAPI struct {
// contains filtered or unexported fields
}
PrivateMinerAPI provides private RPC methods to control the miner. These methods can be abused by external users and must be considered insecure for use by untrusted users.
func NewPrivateMinerAPI ¶
func NewPrivateMinerAPI(e *Loveblock) *PrivateMinerAPI
NewPrivateMinerAPI create a new RPC service which controls the miner of this node.
func (*PrivateMinerAPI) SetExtra ¶
func (api *PrivateMinerAPI) SetExtra(extra string) (bool, error)
SetExtra sets the extra data string that is included when this miner mines a block.
func (*PrivateMinerAPI) SetGasPrice ¶
func (api *PrivateMinerAPI) SetGasPrice(gasPrice hexutil.Big) bool
SetGasPrice sets the minimum accepted gas price for the miner.
func (*PrivateMinerAPI) SetLovebase ¶
func (api *PrivateMinerAPI) SetLovebase(networkbase common.Address) bool
SetLovebase sets the networkbase of the miner
func (*PrivateMinerAPI) Start ¶
func (api *PrivateMinerAPI) Start(threads *int) error
Start the miner with the given number of threads. If threads is nil the number of workers started is equal to the number of logical CPUs that are usable by this process. If mining is already running, this method adjust the number of threads allowed to use.
type ProtocolManager ¶
type ProtocolManager struct { SubProtocols []p2p.Protocol // contains filtered or unexported fields }
func NewProtocolManager ¶
func NewProtocolManager(config *params.ChainConfig, mode downloader.SyncMode, networkId uint64, mux *event.TypeMux, txpool txPool, engine consensus.Engine, blockchain *core.BlockChain, chaindb lovedb.Database) (*ProtocolManager, error)
NewProtocolManager returns a new LoveBlock sub protocol manager. The LoveBlock sub protocol manages peers capable with the LoveBlock network.
func (*ProtocolManager) BroadcastBlock ¶
func (pm *ProtocolManager) BroadcastBlock(block *types.Block, propagate bool)
BroadcastBlock will either propagate a block to a subset of it's peers, or will only announce it's availability (depending what's requested).
func (*ProtocolManager) BroadcastConsensusInfo ¶
func (pm *ProtocolManager) BroadcastConsensusInfo(hash common.Hash, number uint64, hasFlag bool)
sman 广播local的确认信息
func (*ProtocolManager) BroadcastTx ¶
func (pm *ProtocolManager) BroadcastTx(hash common.Hash, tx *types.Transaction)
BroadcastTx will propagate a transaction to all peers which are not known to already have the given transaction.
func (*ProtocolManager) NodeInfo ¶
func (self *ProtocolManager) NodeInfo() *NodeInfo
NodeInfo retrieves some protocol metadata about the running host node.
func (*ProtocolManager) Start ¶
func (pm *ProtocolManager) Start(maxPeers int)
func (*ProtocolManager) Stop ¶
func (pm *ProtocolManager) Stop()
type PublicDebugAPI ¶
type PublicDebugAPI struct {
// contains filtered or unexported fields
}
PublicDebugAPI is the collection of LoveBlock full node APIs exposed over the public debugging endpoint.
func NewPublicDebugAPI ¶
func NewPublicDebugAPI(network *Loveblock) *PublicDebugAPI
NewPublicDebugAPI creates a new API definition for the full node- related public debug methods of the LoveBlock service.
func (*PublicDebugAPI) DumpBlock ¶
func (api *PublicDebugAPI) DumpBlock(blockNr rpc.BlockNumber) (state.Dump, error)
DumpBlock retrieves the entire state of the database at a given block.
type PublicLoveblockAPI ¶
type PublicLoveblockAPI struct {
// contains filtered or unexported fields
}
PublicLoveBlockAPI provides an API to access LoveBlock full node-related information.
func NewPublicLoveblockAPI ¶
func NewPublicLoveblockAPI(e *Loveblock) *PublicLoveblockAPI
NewPublicLoveBlockAPI creates a new LoveBlock protocol API for full nodes.
func (*PublicLoveblockAPI) Coinbase ¶
func (api *PublicLoveblockAPI) Coinbase() (common.Address, error)
Coinbase is the address that mining rewards will be send to (alias for Lovebase)
func (*PublicLoveblockAPI) Hashrate ¶
func (api *PublicLoveblockAPI) Hashrate() hexutil.Uint64
Hashrate returns the POW hashrate
type PublicMinerAPI ¶
type PublicMinerAPI struct {
// contains filtered or unexported fields
}
PublicMinerAPI provides an API to control the miner. It offers only methods that operate on data that pose no security risk when it is publicly accessible.
func NewPublicMinerAPI ¶
func NewPublicMinerAPI(e *Loveblock) *PublicMinerAPI
NewPublicMinerAPI create a new PublicMinerAPI instance.
func (*PublicMinerAPI) Mining ¶
func (api *PublicMinerAPI) Mining() bool
Mining returns an indication if this node is currently mining.
func (*PublicMinerAPI) SubmitHashrate ¶
SubmitHashrate can be used for remote miners to submit their hash rate. This enables the node to report the combined hash rate of all miners which submit work through this node. It accepts the miner hash rate and an identifier which must be unique between nodes.
type StorageRangeResult ¶
type StorageRangeResult struct { Storage storageMap `json:"storage"` NextKey *common.Hash `json:"nextKey"` // nil if Storage includes the last key in the trie. }
StorageRangeResult is the result of a debug_storageRangeAt API call.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
Package downloader contains the manual full chain synchronisation.
|
Package downloader contains the manual full chain synchronisation. |
Package fetcher contains the block announcement based synchronisation.
|
Package fetcher contains the block announcement based synchronisation. |
Package filters implements an LoveBlock filtering system for block, transactions and log events.
|
Package filters implements an LoveBlock filtering system for block, transactions and log events. |
Package tracers is a collection of JavaScript transaction tracers.
|
Package tracers is a collection of JavaScript transaction tracers. |
internal/tracers
Package tracers contains the actual JavaScript tracer assets.
|
Package tracers contains the actual JavaScript tracer assets. |