nimbus-eth1/src/block.nim

11 lines
198 B
Nim
Raw Normal View History

import
logging, constants, utils/header
type
CountableList*[T] = ref object
elements: seq[T] # TODO
Block* = ref object of RootObj
header*: Header
uncles*: CountableList[Header]