Created
August 21, 2018 17:51
-
-
Save EnchanterIO/72d26a9dea7ad634e18213decc24e3fa to your computer and use it in GitHub Desktop.
go-ethereum Node struct
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Node struct { | |
eventmux *event.TypeMux // Event multiplexer used between the services of a stack | |
config *Config | |
accman *accounts.Manager | |
ephemeralKeystore string // if non-empty, the key directory that will be removed by Stop | |
instanceDirLock flock.Releaser // prevents concurrent use of instance directory | |
serverConfig p2p.Config | |
server *p2p.Server // Currently running P2P networking layer | |
serviceFuncs []ServiceConstructor // Service constructors (in dependency order) | |
services map[reflect.Type]Service // Currently running services | |
rpcAPIs []rpc.API // List of APIs currently provided by the node | |
inprocHandler *rpc.Server // In-process RPC request handler to process the API requests | |
ipcEndpoint string // IPC endpoint to listen at (empty = IPC disabled) | |
ipcListener net.Listener // IPC RPC listener socket to serve API requests | |
ipcHandler *rpc.Server // IPC RPC request handler to process the API requests | |
httpEndpoint string // HTTP endpoint (interface + port) to listen at (empty = HTTP disabled) | |
httpWhitelist []string // HTTP RPC modules to allow through this endpoint | |
httpListener net.Listener // HTTP RPC listener socket to server API requests | |
httpHandler *rpc.Server // HTTP RPC request handler to process the API requests | |
wsEndpoint string // Websocket endpoint (interface + port) to listen at (empty = websocket disabled) | |
wsListener net.Listener // Websocket RPC listener socket to server API requests | |
wsHandler *rpc.Server // Websocket RPC request handler to process the API requests | |
stop chan struct{} // Channel to wait for termination notifications | |
lock sync.RWMutex | |
log log.Logger | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment