nimbus-eth1/src/block.nim

12 lines
233 B
Nim
Raw Normal View History

import
logging, constants, utils / header, ttmath
type
CountableList*[T] = ref object
elements: seq[T] # TODO
Block* = ref object of RootObj
header*: Header
uncles*: CountableList[Header]
2018-01-17 14:16:00 +00:00
blockNumber*: Int256