2020-05-06 13:23:45 +00:00
|
|
|
# beacon_chain
|
|
|
|
# Copyright (c) 2018-2020 Status Research & Development GmbH
|
|
|
|
# Licensed and distributed under either of
|
|
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
|
|
|
# Common routines for a BeaconNode and a BeaconValidator node
|
|
|
|
|
|
|
|
import
|
2020-05-22 17:04:52 +00:00
|
|
|
# Standard library
|
2020-06-05 09:57:40 +00:00
|
|
|
tables,
|
2020-05-22 17:04:52 +00:00
|
|
|
|
2020-05-06 13:23:45 +00:00
|
|
|
# Nimble packages
|
|
|
|
chronos, json_rpc/rpcserver, metrics,
|
2020-05-22 17:04:52 +00:00
|
|
|
chronicles,
|
2020-05-06 13:23:45 +00:00
|
|
|
|
|
|
|
# Local modules
|
2020-06-05 09:57:40 +00:00
|
|
|
spec/[datatypes, crypto, digest],
|
|
|
|
conf, time, beacon_chain_db,
|
2020-05-06 13:23:45 +00:00
|
|
|
attestation_pool, block_pool, eth2_network,
|
2020-06-03 08:46:29 +00:00
|
|
|
beacon_node_types, mainchain_monitor, request_manager,
|
2020-06-25 09:36:03 +00:00
|
|
|
sync_manager
|
2020-05-06 13:23:45 +00:00
|
|
|
|
2020-05-25 17:33:03 +00:00
|
|
|
# This removes an invalid Nim warning that the digest module is unused here
|
|
|
|
# It's currently used for `shortLog(head.blck.root)`
|
|
|
|
type Eth2Digest = digest.Eth2Digest
|
2020-05-22 17:04:52 +00:00
|
|
|
|
2020-05-06 13:23:45 +00:00
|
|
|
type
|
|
|
|
RpcServer* = RpcHttpServer
|
2020-07-01 11:41:40 +00:00
|
|
|
KeyPair* = eth2_network.KeyPair
|
2020-05-06 13:23:45 +00:00
|
|
|
|
|
|
|
BeaconNode* = ref object
|
|
|
|
nickname*: string
|
|
|
|
network*: Eth2Node
|
|
|
|
netKeys*: KeyPair
|
|
|
|
requestManager*: RequestManager
|
|
|
|
db*: BeaconChainDB
|
|
|
|
config*: BeaconNodeConf
|
|
|
|
attachedValidators*: ValidatorPool
|
|
|
|
blockPool*: BlockPool
|
|
|
|
attestationPool*: AttestationPool
|
|
|
|
mainchainMonitor*: MainchainMonitor
|
|
|
|
beaconClock*: BeaconClock
|
|
|
|
rpcServer*: RpcServer
|
|
|
|
forkDigest*: ForkDigest
|
2020-06-03 08:46:29 +00:00
|
|
|
syncManager*: SyncManager[Peer, PeerID]
|
2020-05-06 13:23:45 +00:00
|
|
|
topicBeaconBlocks*: string
|
|
|
|
topicAggregateAndProofs*: string
|
2020-06-03 08:46:29 +00:00
|
|
|
forwardSyncLoop*: Future[void]
|
|
|
|
onSecondLoop*: Future[void]
|
2020-05-06 13:23:45 +00:00
|
|
|
|
2020-05-22 17:04:52 +00:00
|
|
|
const
|
|
|
|
MaxEmptySlotCount* = uint64(10*60) div SECONDS_PER_SLOT
|
2020-05-06 13:23:45 +00:00
|
|
|
|
|
|
|
# Metrics
|
|
|
|
declareGauge beacon_head_root,
|
|
|
|
"Root of the head block of the beacon chain"
|
|
|
|
|
|
|
|
proc updateHead*(node: BeaconNode): BlockRef =
|
|
|
|
# Check pending attestations - maybe we found some blocks for them
|
|
|
|
node.attestationPool.resolve()
|
|
|
|
|
|
|
|
# Grab the new head according to our latest attestation data
|
|
|
|
let newHead = node.attestationPool.selectHead()
|
|
|
|
|
|
|
|
# Store the new head in the block pool - this may cause epochs to be
|
|
|
|
# justified and finalized
|
|
|
|
node.blockPool.updateHead(newHead)
|
|
|
|
beacon_head_root.set newHead.root.toGaugeValue
|
|
|
|
|
|
|
|
newHead
|
2020-05-27 17:06:28 +00:00
|
|
|
|
|
|
|
template findIt*(s: openarray, predicate: untyped): int64 =
|
|
|
|
var res = -1
|
|
|
|
for i, it {.inject.} in s:
|
|
|
|
if predicate:
|
|
|
|
res = i
|
|
|
|
break
|
|
|
|
res
|