mirror of
https://github.com/logos-storage/logos-storage-nim-validator.git
synced 2026-01-16 12:23:10 +00:00
13 lines
254 B
Nim
13 lines
254 B
Nim
|
|
import pkg/mysticeti
|
||
|
|
import ../transaction
|
||
|
|
import ./blockid
|
||
|
|
|
||
|
|
export mysticeti.CommitteeMember
|
||
|
|
|
||
|
|
type Block* = ref object
|
||
|
|
author*: CommitteeMember
|
||
|
|
round*: uint64
|
||
|
|
parents*: seq[blockid.BlockId]
|
||
|
|
transactions*: seq[Transaction]
|
||
|
|
id*: blockid.BlockId
|