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

* Use selectedParent instead of selectedTip for non-selectedTip blocks in restoreSingleBlockStatus * Cache the selectedParent for re-use in a resolveSingleBlockStatus chain * Implement and use reverseUTXOSet * Reverse blocks in correct order * Support resolveBlockStatus without separate stagingAreas for usage of testConsensus * Handle the case where the tip of the resolved block is not the next selectedTip * Unify isResolveTip * Some minor fixes and cleanup * Add full finality window re-org test to stability-slow * rename: useSeparateStagingAreasPerBlock -> useSeparateStagingAreaPerBlock * Better logs in resolveSingleBlockStatus * A few retouches to reverseUTXODiffs * TEMPORARY COMMIT: EXTRAT ALL DIFFFROMS TO SEPARATE METHODS * TEMPORARY COMMIT: REMOVE DIFFICULTY CHECKS IN DEVNET * Don't pre-allocate in utxo-algebra, since the numbers are not known ahead-of-time * Add some logs to reverseUTXODiffs * Revert "TEMPORARY COMMIT: REMOVE DIFFICULTY CHECKS IN DEVNET" This reverts commit c0af9dc6ade78a914c970e11bc63c34605565f57. * Revert "TEMPORARY COMMIT: EXTRAT ALL DIFFFROMS TO SEPARATE METHODS" This reverts commit 4fcca1b48c3a1183598833a355b9bfaf169edba1. * Remove redundant paranthesis * Revise some logs messages * Rename:oneBlockBeforeCurrentUTXOSet -> lastResolvedBlockUTXOSet * Don't break if the block was resolved as invalid * rename unverifiedBlocks to recentlyVerifiedBlcks in reverseUTXODiffs * Add errors.New to the panic, for a stack trace * Reverse the UTXODiffs after the main block has been commited * Use the correct value for previousUTXODiff * Add test for ReverseUTXODiff * Fix some names and comments * Update TestReverseUTXODiffs to use consensus.Config * Fix comments mentioning 'oneBlockBeforeTip'
33 lines
930 B
Go
33 lines
930 B
Go
package externalapi
|
|
|
|
// UTXOCollection represents a collection of UTXO entries, indexed by their outpoint
|
|
type UTXOCollection interface {
|
|
Iterator() ReadOnlyUTXOSetIterator
|
|
Get(outpoint *DomainOutpoint) (UTXOEntry, bool)
|
|
Contains(outpoint *DomainOutpoint) bool
|
|
Len() int
|
|
}
|
|
|
|
// UTXODiff represents the diff between two UTXO sets
|
|
type UTXODiff interface {
|
|
ToAdd() UTXOCollection
|
|
ToRemove() UTXOCollection
|
|
WithDiff(other UTXODiff) (UTXODiff, error)
|
|
DiffFrom(other UTXODiff) (UTXODiff, error)
|
|
Reversed() UTXODiff
|
|
CloneMutable() MutableUTXODiff
|
|
}
|
|
|
|
// MutableUTXODiff represents a UTXO-Diff that can be mutated
|
|
type MutableUTXODiff interface {
|
|
ToImmutable() UTXODiff
|
|
|
|
WithDiff(other UTXODiff) (UTXODiff, error)
|
|
DiffFrom(other UTXODiff) (UTXODiff, error)
|
|
ToAdd() UTXOCollection
|
|
ToRemove() UTXOCollection
|
|
|
|
WithDiffInPlace(other UTXODiff) error
|
|
AddTransaction(transaction *DomainTransaction, blockDAAScore uint64) error
|
|
}
|