mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-11-29 00:23:14 +00:00
84 lines
2.7 KiB
Go
84 lines
2.7 KiB
Go
package mempool
|
|
|
|
import (
|
|
"github.com/kaspanet/kaspad/domain/consensus/model/externalapi"
|
|
"github.com/kaspanet/kaspad/domain/consensus/utils/utxo"
|
|
"github.com/kaspanet/kaspad/domain/miningmanager/mempool/model"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
type mempoolUTXOSet struct {
|
|
mempool *mempool
|
|
poolUnspentOutputs model.OutpointToUTXOEntry
|
|
transactionsByPreviousOutpoint model.OutpointToTransaction
|
|
}
|
|
|
|
func newMempoolUTXOSet(mp *mempool) *mempoolUTXOSet {
|
|
return &mempoolUTXOSet{
|
|
mempool: mp,
|
|
poolUnspentOutputs: model.OutpointToUTXOEntry{},
|
|
transactionsByPreviousOutpoint: model.OutpointToTransaction{},
|
|
}
|
|
}
|
|
|
|
func (mpus *mempoolUTXOSet) getParentsInPool(transaction *model.MempoolTransaction) model.ParentUTXOsInPool {
|
|
parentsInPool := model.ParentUTXOsInPool{}
|
|
|
|
outpoint := &externalapi.DomainOutpoint{
|
|
TransactionID: *transaction.TransactionID(),
|
|
}
|
|
for i := range transaction.Transaction.Inputs {
|
|
outpoint.Index = uint32(i)
|
|
utxo, ok := mpus.getOutpoint(outpoint)
|
|
if ok {
|
|
parentsInPool.Set(i, utxo)
|
|
}
|
|
}
|
|
|
|
return parentsInPool
|
|
}
|
|
|
|
func (mpus *mempoolUTXOSet) addTransaction(transaction *model.MempoolTransaction) error {
|
|
outpoint := &externalapi.DomainOutpoint{TransactionID: *transaction.TransactionID()}
|
|
|
|
for i, input := range transaction.Transaction.Inputs {
|
|
outpoint.Index = uint32(i)
|
|
|
|
// Sanity check for consistency
|
|
if existingTx, exists := mpus.transactionsByPreviousOutpoint[input.PreviousOutpoint]; exists {
|
|
return errors.Errorf("outpoint %s is already used by %s",
|
|
input.PreviousOutpoint, existingTx.TransactionID())
|
|
}
|
|
|
|
delete(mpus.poolUnspentOutputs, *outpoint)
|
|
mpus.transactionsByPreviousOutpoint[input.PreviousOutpoint] = transaction
|
|
}
|
|
|
|
for i, output := range transaction.Transaction.Outputs {
|
|
outpoint := externalapi.DomainOutpoint{TransactionID: *transaction.TransactionID(), Index: uint32(i)}
|
|
|
|
// Sanity check for consistency
|
|
if _, exists := mpus.poolUnspentOutputs[outpoint]; exists {
|
|
return errors.Errorf("outpoint %s already exists", outpoint)
|
|
}
|
|
|
|
mpus.poolUnspentOutputs[outpoint] =
|
|
utxo.NewUTXOEntry(output.Value, output.ScriptPublicKey, false, model.UnacceptedDAAScore)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (mpus *mempoolUTXOSet) removeTransaction(transactionID *externalapi.DomainTransactionID) error {
|
|
panic("mempoolUTXOSet.removeTransaction not implemented") // TODO (Mike)
|
|
}
|
|
|
|
func (mpus *mempoolUTXOSet) checkDoubleSpends(transaction *model.MempoolTransaction) error {
|
|
panic("mempoolUTXOSet.checkDoubleSpends not implemented") // TODO (Mike)
|
|
}
|
|
|
|
func (mpus *mempoolUTXOSet) getOutpoint(outpoint *externalapi.DomainOutpoint) (externalapi.UTXOEntry, bool) {
|
|
utxo, ok := mpus.poolUnspentOutputs[*outpoint]
|
|
return utxo, ok
|
|
}
|