The core protocol of WoopChain
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
woop/node
Jacky Wang d8b5d1693a [sync] fix a panic issue found in stream tests 4 years ago
..
worker [engine] added additional cache epochCtxCache for engineImpl, also removed shardID in engineImpl (since it's redundant with chainReader.ShardID()) 4 years ago
README.md Add readme for /node 6 years ago
api.go Graceful shutdown - All registered services are shutdown gracefully. (#3533) 4 years ago
double_signing.go [stream] node.IsRunningBeaconChain is refactored to a new method 4 years ago
metrics.go [prometheus] fix golint 4 years ago
node.go [cmd] more fixes 4 years ago
node.md [service][node] Project Tech debt clean up, remove wallet (#2664) 5 years ago
node_cross_link.go [engine] removed print logs for debug 4 years ago
node_cross_shard.go stabalize consensus process with pipelining 4 years ago
node_explorer.go avoid unnecessary header sig checking 4 years ago
node_genesis.go return error for invalid address parsing 4 years ago
node_handler.go fix 1 off condition 4 years ago
node_handler_test.go [P2P] Added functionality to Host for stream, replaced networkInfo service. (#3534) 4 years ago
node_newblock.go limit crosslink in each block 4 years ago
node_newblock_test.go [P2P] Added functionality to Host for stream, replaced networkInfo service. (#3534) 4 years ago
node_syncing.go [sync] fix a panic issue found in stream tests 4 years ago
node_test.go [P2P] Added functionality to Host for stream, replaced networkInfo service. (#3534) 4 years ago
service_setup.go [explorer] Instruct explorer.InSync RPC uses NodeAPI as backend. 4 years ago

README.md

Node struct is the core entity that represents a network node participating in the Harmony protocol.

A node is the main message handler to all kinds of protocol messages such as consensus message, block sync, transactions etc. A node contains all the necessary references to other objects (e.g. blockchain object and consensus object) to handle the incoming messages.