mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-06-04 21:26:42 +00:00

* [NOD-1501] Rename IsBlockInHeaderPruningPointFutureAndVirtualPast to IsBlockInHeaderPruningPointFuture. * [NOD-1501] Create syncinfo.go. * [NOD-1501] Implement resolveSyncState. * [NOD-1501] Fix ChooseSelectedParent. * [NOD-1501] Fix merge errors. * [NOD-1501] Finish implementing getSyncState. * [NOD-1501] Fix bad equality check. * [NOD-1501] Fix merge errors. * [NOD-1501] Pass targetTimePerBlock as int64 milliseconds.
10 lines
197 B
Go
10 lines
197 B
Go
package externalapi
|
|
|
|
// BlockInfo contains various information about a specific block
|
|
type BlockInfo struct {
|
|
Exists bool
|
|
BlockStatus *BlockStatus
|
|
|
|
IsBlockInHeaderPruningPointFuture bool
|
|
}
|