package protocol import ( log "github.com/sirupsen/logrus" "github.com/vapor/protocol/bc" "github.com/vapor/protocol/bc/types" "github.com/vapor/protocol/state" "github.com/vapor/protocol/validation" ) // GetTransactionStatus return the transaction status of give block func (c *Chain) GetTransactionStatus(hash *bc.Hash) (*bc.TransactionStatus, error) { return c.store.GetTransactionStatus(hash) } // GetTransactionsUtxo return all the utxos that related to the txs' inputs func (c *Chain) GetTransactionsUtxo(view *state.UtxoViewpoint, txs []*bc.Tx) error { return c.store.GetTransactionsUtxo(view, txs) } // ValidateTx validates the given transaction. A cache holds // per-transaction validation results and is consulted before // performing full validation. func (c *Chain) ValidateTx(tx *types.Tx) (bool, error) { if c.hasSeenTx(tx) { return false, nil } c.markTransactions(tx) bh := c.BestBlockHeader() return c.validateTx(tx, bh) } // validateTx validates the given transaction without checking duplication. func (c *Chain) validateTx(tx *types.Tx, bh *types.BlockHeader) (bool, error) { if ok := c.txPool.HaveTransaction(&tx.ID); ok { return false, c.txPool.GetErrCache(&tx.ID) } if c.txPool.IsDust(tx) { c.txPool.AddErrCache(&tx.ID, ErrDustTx) return false, ErrDustTx } gasStatus, err := validation.ValidateTx(tx.Tx, types.MapBlock(&types.Block{BlockHeader: *bh})) if !gasStatus.GasValid { c.txPool.AddErrCache(&tx.ID, err) return false, err } if err != nil { log.WithFields(log.Fields{"module": logModule, "tx_id": tx.Tx.ID.String(), "error": err}).Info("transaction status fail") } return c.txPool.ProcessTransaction(tx, err != nil, bh.Height, gasStatus.BTMValue) }