mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-09-14 05:20:11 +00:00
13 lines
350 B
Go
13 lines
350 B
Go
package externalapi
|
|
|
|
// BlockInsertionResult is auxiliary data returned from ValidateAndInsertBlock
|
|
type BlockInsertionResult struct {
|
|
VirtualSelectedParentChainChanges *SelectedChainPath
|
|
}
|
|
|
|
// SelectedChainPath is a path the of the selected chains between two blocks.
|
|
type SelectedChainPath struct {
|
|
Added []*DomainHash
|
|
Removed []*DomainHash
|
|
}
|