UnsignedBlock describes a block with its transactions but no signatures (predicate args).
| 14 | // UnsignedBlock describes a block with its transactions but no signatures |
| 15 | // (predicate args). |
| 16 | type UnsignedBlock struct { |
| 17 | *BlockHeader |
| 18 | Transactions []*Tx |
| 19 | } |
| 20 | |
| 21 | type Block struct { |
| 22 | *UnsignedBlock |
nothing calls this directly
no outgoing calls
no test coverage detected