mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-06-03 12:46:43 +00:00

* Allow to configure consensus with a JSON file * Define everywhere maxBlockParents as KType * Move consensus default to consensus_defaults.go
11 lines
216 B
Go
11 lines
216 B
Go
package externalapi
|
|
|
|
// BlockInfo contains various information about a specific block
|
|
type BlockInfo struct {
|
|
Exists bool
|
|
BlockStatus BlockStatus
|
|
BlueScore uint64
|
|
|
|
IsBlockInHeaderPruningPointFuture bool
|
|
}
|