2016-02-12 19:44:56 +01:00
|
|
|
// Copyright (c) 2013-2016 The btcsuite developers
|
2013-09-20 19:55:27 +02:00
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2016-08-19 18:08:37 +02:00
|
|
|
package mempool
|
2013-09-20 19:55:27 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"container/list"
|
|
|
|
"fmt"
|
2014-07-02 15:50:08 +02:00
|
|
|
"math"
|
|
|
|
"sync"
|
2016-02-12 19:44:56 +01:00
|
|
|
"sync/atomic"
|
2014-07-02 15:50:08 +02:00
|
|
|
"time"
|
|
|
|
|
2015-01-30 23:25:42 +01:00
|
|
|
"github.com/btcsuite/btcd/blockchain"
|
2016-02-19 05:51:18 +01:00
|
|
|
"github.com/btcsuite/btcd/blockchain/indexers"
|
2016-08-19 18:08:37 +02:00
|
|
|
"github.com/btcsuite/btcd/btcjson"
|
|
|
|
"github.com/btcsuite/btcd/chaincfg"
|
2016-08-08 21:04:33 +02:00
|
|
|
"github.com/btcsuite/btcd/chaincfg/chainhash"
|
2015-11-25 23:27:14 +01:00
|
|
|
"github.com/btcsuite/btcd/mining"
|
2015-01-30 19:14:33 +01:00
|
|
|
"github.com/btcsuite/btcd/txscript"
|
2015-02-05 22:16:39 +01:00
|
|
|
"github.com/btcsuite/btcd/wire"
|
2015-01-15 17:30:38 +01:00
|
|
|
"github.com/btcsuite/btcutil"
|
2013-09-20 19:55:27 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2016-08-19 18:08:37 +02:00
|
|
|
// DefaultBlockPrioritySize is the default size in bytes for high-
|
|
|
|
// priority / low-fee transactions. It is used to help determine which
|
|
|
|
// are allowed into the mempool and consequently affects their relay and
|
|
|
|
// inclusion when generating block templates.
|
|
|
|
DefaultBlockPrioritySize = 50000
|
|
|
|
|
|
|
|
// MinHighPriority is the minimum priority value that allows a
|
|
|
|
// transaction to be considered high priority.
|
|
|
|
MinHighPriority = btcutil.SatoshiPerBitcoin * 144.0 / 250
|
|
|
|
|
2013-09-20 19:55:27 +02:00
|
|
|
// mempoolHeight is the height used for the "block" height field of the
|
2015-08-26 06:03:18 +02:00
|
|
|
// contextual transaction information provided in a transaction view.
|
2013-09-20 19:55:27 +02:00
|
|
|
mempoolHeight = 0x7fffffff
|
|
|
|
)
|
|
|
|
|
2016-08-19 18:08:37 +02:00
|
|
|
// Config is a descriptor containing the memory pool configuration.
|
|
|
|
type Config struct {
|
2016-04-11 23:37:52 +02:00
|
|
|
// Policy defines the various mempool configuration options related
|
|
|
|
// to policy.
|
2016-08-19 18:08:37 +02:00
|
|
|
Policy Policy
|
|
|
|
|
|
|
|
// ChainParams identifies which chain parameters the txpool is
|
|
|
|
// associated with.
|
|
|
|
ChainParams *chaincfg.Params
|
2016-04-11 23:37:52 +02:00
|
|
|
|
2015-08-26 06:03:18 +02:00
|
|
|
// FetchUtxoView defines the function to use to fetch unspent
|
|
|
|
// transaction output information.
|
|
|
|
FetchUtxoView func(*btcutil.Tx) (*blockchain.UtxoViewpoint, error)
|
|
|
|
|
2016-08-21 07:04:43 +02:00
|
|
|
// BestHeight defines the function to use to access the block height of
|
2015-08-26 06:03:18 +02:00
|
|
|
// the current best chain.
|
2016-08-21 07:04:43 +02:00
|
|
|
BestHeight func() int32
|
2015-08-26 06:03:18 +02:00
|
|
|
|
2016-08-23 20:48:03 +02:00
|
|
|
// MedianTimePast defines the function to use in order to access the
|
|
|
|
// median time past calculated from the point-of-view of the current
|
|
|
|
// chain tip within the best chain.
|
|
|
|
MedianTimePast func() time.Time
|
|
|
|
|
2015-11-21 04:12:17 +01:00
|
|
|
// SigCache defines a signature cache to use.
|
|
|
|
SigCache *txscript.SigCache
|
|
|
|
|
2016-02-19 05:51:18 +01:00
|
|
|
// AddrIndex defines the optional address index instance to use for
|
|
|
|
// indexing the unconfirmed transactions in the memory pool.
|
|
|
|
// This can be nil if the address index is not enabled.
|
|
|
|
AddrIndex *indexers.AddrIndex
|
2015-11-21 04:12:17 +01:00
|
|
|
}
|
|
|
|
|
2016-08-19 18:08:37 +02:00
|
|
|
// Policy houses the policy (configuration parameters) which is used to
|
2016-04-11 23:37:52 +02:00
|
|
|
// control the mempool.
|
2016-08-19 18:08:37 +02:00
|
|
|
type Policy struct {
|
2016-04-11 23:37:52 +02:00
|
|
|
// DisableRelayPriority defines whether to relay free or low-fee
|
|
|
|
// transactions that do not have enough priority to be relayed.
|
|
|
|
DisableRelayPriority bool
|
|
|
|
|
2016-10-23 23:31:31 +02:00
|
|
|
// AcceptNonStd defines whether to accept non-standard transactions. If
|
|
|
|
// true, non-standard transactions will be accepted into the mempool.
|
|
|
|
// Otherwise, all non-standard transactions will be rejected.
|
|
|
|
AcceptNonStd bool
|
2016-08-23 02:59:28 +02:00
|
|
|
|
2016-04-11 23:37:52 +02:00
|
|
|
// FreeTxRelayLimit defines the given amount in thousands of bytes
|
|
|
|
// per minute that transactions with no fee are rate limited to.
|
|
|
|
FreeTxRelayLimit float64
|
|
|
|
|
|
|
|
// MaxOrphanTxs is the maximum number of orphan transactions
|
|
|
|
// that can be queued.
|
|
|
|
MaxOrphanTxs int
|
|
|
|
|
|
|
|
// MaxOrphanTxSize is the maximum size allowed for orphan transactions.
|
|
|
|
// This helps prevent memory exhaustion attacks from sending a lot of
|
|
|
|
// of big orphans.
|
|
|
|
MaxOrphanTxSize int
|
|
|
|
|
|
|
|
// MaxSigOpsPerTx is the maximum number of signature operations
|
|
|
|
// in a single transaction we will relay or mine. It is a fraction
|
|
|
|
// of the max signature operations for a block.
|
|
|
|
MaxSigOpsPerTx int
|
|
|
|
|
|
|
|
// MinRelayTxFee defines the minimum transaction fee in BTC/kB to be
|
|
|
|
// considered a non-zero fee.
|
|
|
|
MinRelayTxFee btcutil.Amount
|
|
|
|
}
|
|
|
|
|
2016-08-19 18:08:37 +02:00
|
|
|
// TxDesc is a descriptor containing a transaction in the mempool along with
|
|
|
|
// additional metadata.
|
|
|
|
type TxDesc struct {
|
|
|
|
mining.TxDesc
|
|
|
|
|
|
|
|
// StartingPriority is the priority of the transaction when it was added
|
|
|
|
// to the pool.
|
|
|
|
StartingPriority float64
|
|
|
|
}
|
|
|
|
|
|
|
|
// TxPool is used as a source of transactions that need to be mined into blocks
|
|
|
|
// and relayed to other peers. It is safe for concurrent access from multiple
|
|
|
|
// peers.
|
|
|
|
type TxPool struct {
|
2016-02-12 19:44:56 +01:00
|
|
|
// The following variables must only be used atomically.
|
|
|
|
lastUpdated int64 // last time pool was updated
|
|
|
|
|
2016-08-23 20:59:48 +02:00
|
|
|
mtx sync.RWMutex
|
2016-08-19 18:08:37 +02:00
|
|
|
cfg Config
|
|
|
|
pool map[chainhash.Hash]*TxDesc
|
2016-08-08 21:04:33 +02:00
|
|
|
orphans map[chainhash.Hash]*btcutil.Tx
|
|
|
|
orphansByPrev map[chainhash.Hash]map[chainhash.Hash]*btcutil.Tx
|
2015-02-05 22:16:39 +01:00
|
|
|
outpoints map[wire.OutPoint]*btcutil.Tx
|
2016-02-12 19:44:56 +01:00
|
|
|
pennyTotal float64 // exponentially decaying total for penny spends.
|
|
|
|
lastPennyUnix int64 // unix time of last ``penny spend''
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
2016-08-19 18:08:37 +02:00
|
|
|
// Ensure the TxPool type implements the mining.TxSource interface.
|
|
|
|
var _ mining.TxSource = (*TxPool)(nil)
|
2015-11-25 20:30:44 +01:00
|
|
|
|
2014-09-18 16:23:36 +02:00
|
|
|
// removeOrphan is the internal function which implements the public
|
|
|
|
// RemoveOrphan. See the comment for RemoveOrphan for more details.
|
2015-03-10 17:40:44 +01:00
|
|
|
//
|
2013-10-22 01:20:31 +02:00
|
|
|
// This function MUST be called with the mempool lock held (for writes).
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) removeOrphan(txHash *chainhash.Hash) {
|
2013-09-20 19:55:27 +02:00
|
|
|
// Nothing to do if passed tx is not an orphan.
|
|
|
|
tx, exists := mp.orphans[*txHash]
|
|
|
|
if !exists {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove the reference from the previous orphan index.
|
2013-10-28 21:44:38 +01:00
|
|
|
for _, txIn := range tx.MsgTx().TxIn {
|
2014-10-01 17:34:30 +02:00
|
|
|
originTxHash := txIn.PreviousOutPoint.Hash
|
2013-09-20 19:55:27 +02:00
|
|
|
if orphans, exists := mp.orphansByPrev[originTxHash]; exists {
|
2016-08-08 21:04:33 +02:00
|
|
|
delete(orphans, *tx.Hash())
|
2013-09-20 19:55:27 +02:00
|
|
|
|
|
|
|
// Remove the map entry altogether if there are no
|
|
|
|
// longer any orphans which depend on it.
|
2015-11-12 23:25:03 +01:00
|
|
|
if len(orphans) == 0 {
|
2013-09-20 19:55:27 +02:00
|
|
|
delete(mp.orphansByPrev, originTxHash)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove the transaction from the orphan pool.
|
|
|
|
delete(mp.orphans, *txHash)
|
|
|
|
}
|
|
|
|
|
2014-09-18 16:23:36 +02:00
|
|
|
// RemoveOrphan removes the passed orphan transaction from the orphan pool and
|
|
|
|
// previous orphan index.
|
2015-03-10 17:40:44 +01:00
|
|
|
//
|
2014-09-18 16:23:36 +02:00
|
|
|
// This function is safe for concurrent access.
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) RemoveOrphan(txHash *chainhash.Hash) {
|
2016-08-23 20:59:48 +02:00
|
|
|
mp.mtx.Lock()
|
2014-09-18 16:23:36 +02:00
|
|
|
mp.removeOrphan(txHash)
|
2016-08-23 20:59:48 +02:00
|
|
|
mp.mtx.Unlock()
|
2014-09-18 16:23:36 +02:00
|
|
|
}
|
|
|
|
|
2013-09-20 19:55:27 +02:00
|
|
|
// limitNumOrphans limits the number of orphan transactions by evicting a random
|
|
|
|
// orphan if adding a new one would cause it to overflow the max allowed.
|
2013-10-22 01:20:31 +02:00
|
|
|
//
|
|
|
|
// This function MUST be called with the mempool lock held (for writes).
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) limitNumOrphans() error {
|
2016-10-24 04:14:09 +02:00
|
|
|
if len(mp.orphans)+1 <= mp.cfg.Policy.MaxOrphanTxs {
|
|
|
|
return nil
|
|
|
|
}
|
2013-09-20 19:55:27 +02:00
|
|
|
|
2016-10-24 04:14:09 +02:00
|
|
|
// Remove a random entry from the map. For most compilers, Go's
|
|
|
|
// range statement iterates starting at a random item although
|
|
|
|
// that is not 100% guaranteed by the spec. The iteration order
|
|
|
|
// is not important here because an adversary would have to be
|
|
|
|
// able to pull off preimage attacks on the hashing function in
|
|
|
|
// order to target eviction of specific entries anyways.
|
|
|
|
for txHash := range mp.orphans {
|
|
|
|
mp.removeOrphan(&txHash)
|
|
|
|
break
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// addOrphan adds an orphan transaction to the orphan pool.
|
2013-10-22 01:20:31 +02:00
|
|
|
//
|
|
|
|
// This function MUST be called with the mempool lock held (for writes).
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) addOrphan(tx *btcutil.Tx) {
|
2016-10-24 04:14:09 +02:00
|
|
|
// Nothing to do if no orphans are allowed.
|
|
|
|
if mp.cfg.Policy.MaxOrphanTxs <= 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2013-09-20 19:55:27 +02:00
|
|
|
// Limit the number orphan transactions to prevent memory exhaustion. A
|
|
|
|
// random orphan is evicted to make room if needed.
|
|
|
|
mp.limitNumOrphans()
|
|
|
|
|
2016-08-08 21:04:33 +02:00
|
|
|
mp.orphans[*tx.Hash()] = tx
|
2013-10-28 21:44:38 +01:00
|
|
|
for _, txIn := range tx.MsgTx().TxIn {
|
2014-10-01 17:34:30 +02:00
|
|
|
originTxHash := txIn.PreviousOutPoint.Hash
|
2015-11-12 23:25:03 +01:00
|
|
|
if _, exists := mp.orphansByPrev[originTxHash]; !exists {
|
|
|
|
mp.orphansByPrev[originTxHash] =
|
2016-08-08 21:04:33 +02:00
|
|
|
make(map[chainhash.Hash]*btcutil.Tx)
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
2016-08-08 21:04:33 +02:00
|
|
|
mp.orphansByPrev[originTxHash][*tx.Hash()] = tx
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
2016-08-19 18:08:37 +02:00
|
|
|
log.Debugf("Stored orphan transaction %v (total: %d)", tx.Hash(),
|
2013-09-20 19:55:27 +02:00
|
|
|
len(mp.orphans))
|
|
|
|
}
|
|
|
|
|
|
|
|
// maybeAddOrphan potentially adds an orphan to the orphan pool.
|
2013-10-22 01:20:31 +02:00
|
|
|
//
|
|
|
|
// This function MUST be called with the mempool lock held (for writes).
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) maybeAddOrphan(tx *btcutil.Tx) error {
|
2013-09-20 19:55:27 +02:00
|
|
|
// Ignore orphan transactions that are too large. This helps avoid
|
|
|
|
// a memory exhaustion attack based on sending a lot of really large
|
|
|
|
// orphans. In the case there is a valid transaction larger than this,
|
|
|
|
// it will ultimtely be rebroadcast after the parent transactions
|
|
|
|
// have been mined or otherwise received.
|
|
|
|
//
|
|
|
|
// Note that the number of orphan transactions in the orphan pool is
|
|
|
|
// also limited, so this equates to a maximum memory used of
|
2016-04-11 23:37:52 +02:00
|
|
|
// mp.cfg.Policy.MaxOrphanTxSize * mp.cfg.Policy.MaxOrphanTxs (which is ~5MB
|
|
|
|
// using the default values at the time this comment was written).
|
2013-10-31 06:28:37 +01:00
|
|
|
serializedLen := tx.MsgTx().SerializeSize()
|
2016-04-11 23:37:52 +02:00
|
|
|
if serializedLen > mp.cfg.Policy.MaxOrphanTxSize {
|
2013-10-04 20:30:50 +02:00
|
|
|
str := fmt.Sprintf("orphan transaction size of %d bytes is "+
|
2013-09-20 19:55:27 +02:00
|
|
|
"larger than max allowed size of %d bytes",
|
2016-04-11 23:37:52 +02:00
|
|
|
serializedLen, mp.cfg.Policy.MaxOrphanTxSize)
|
2015-02-05 22:16:39 +01:00
|
|
|
return txRuleError(wire.RejectNonstandard, str)
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add the orphan if the none of the above disqualified it.
|
2013-10-28 21:44:38 +01:00
|
|
|
mp.addOrphan(tx)
|
2013-09-20 19:55:27 +02:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-10-22 01:20:31 +02:00
|
|
|
// isTransactionInPool returns whether or not the passed transaction already
|
|
|
|
// exists in the main pool.
|
|
|
|
//
|
|
|
|
// This function MUST be called with the mempool lock held (for reads).
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) isTransactionInPool(hash *chainhash.Hash) bool {
|
2013-10-22 01:20:31 +02:00
|
|
|
if _, exists := mp.pool[*hash]; exists {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2013-10-08 17:47:00 +02:00
|
|
|
// IsTransactionInPool returns whether or not the passed transaction already
|
2013-10-11 21:12:40 +02:00
|
|
|
// exists in the main pool.
|
2013-10-22 01:20:31 +02:00
|
|
|
//
|
|
|
|
// This function is safe for concurrent access.
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) IsTransactionInPool(hash *chainhash.Hash) bool {
|
2013-10-22 01:20:31 +02:00
|
|
|
// Protect concurrent access.
|
2016-08-23 20:59:48 +02:00
|
|
|
mp.mtx.RLock()
|
2016-04-13 03:19:13 +02:00
|
|
|
inPool := mp.isTransactionInPool(hash)
|
|
|
|
mp.mtx.RUnlock()
|
2013-09-20 19:55:27 +02:00
|
|
|
|
2016-04-13 03:19:13 +02:00
|
|
|
return inPool
|
2013-10-22 01:20:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// isOrphanInPool returns whether or not the passed transaction already exists
|
|
|
|
// in the orphan pool.
|
|
|
|
//
|
|
|
|
// This function MUST be called with the mempool lock held (for reads).
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) isOrphanInPool(hash *chainhash.Hash) bool {
|
2013-10-22 01:20:31 +02:00
|
|
|
if _, exists := mp.orphans[*hash]; exists {
|
2013-09-20 19:55:27 +02:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2013-10-11 21:12:40 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsOrphanInPool returns whether or not the passed transaction already exists
|
|
|
|
// in the orphan pool.
|
2013-10-22 01:20:31 +02:00
|
|
|
//
|
|
|
|
// This function is safe for concurrent access.
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) IsOrphanInPool(hash *chainhash.Hash) bool {
|
2013-10-22 01:20:31 +02:00
|
|
|
// Protect concurrent access.
|
2016-08-23 20:59:48 +02:00
|
|
|
mp.mtx.RLock()
|
2016-04-13 03:19:13 +02:00
|
|
|
inPool := mp.isOrphanInPool(hash)
|
|
|
|
mp.mtx.RUnlock()
|
2013-10-11 21:12:40 +02:00
|
|
|
|
2016-04-13 03:19:13 +02:00
|
|
|
return inPool
|
2013-10-22 01:20:31 +02:00
|
|
|
}
|
2013-09-20 19:55:27 +02:00
|
|
|
|
2013-10-22 01:20:31 +02:00
|
|
|
// haveTransaction returns whether or not the passed transaction already exists
|
|
|
|
// in the main pool or in the orphan pool.
|
|
|
|
//
|
|
|
|
// This function MUST be called with the mempool lock held (for reads).
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) haveTransaction(hash *chainhash.Hash) bool {
|
2013-10-22 01:20:31 +02:00
|
|
|
return mp.isTransactionInPool(hash) || mp.isOrphanInPool(hash)
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
2013-10-11 21:12:40 +02:00
|
|
|
// HaveTransaction returns whether or not the passed transaction already exists
|
|
|
|
// in the main pool or in the orphan pool.
|
2013-10-22 01:20:31 +02:00
|
|
|
//
|
|
|
|
// This function is safe for concurrent access.
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) HaveTransaction(hash *chainhash.Hash) bool {
|
2013-10-22 01:20:31 +02:00
|
|
|
// Protect concurrent access.
|
2016-08-23 20:59:48 +02:00
|
|
|
mp.mtx.RLock()
|
2016-04-13 03:19:13 +02:00
|
|
|
haveTx := mp.haveTransaction(hash)
|
|
|
|
mp.mtx.RUnlock()
|
2013-10-22 01:20:31 +02:00
|
|
|
|
2016-04-13 03:19:13 +02:00
|
|
|
return haveTx
|
2013-10-11 21:12:40 +02:00
|
|
|
}
|
|
|
|
|
2013-11-15 23:12:23 +01:00
|
|
|
// removeTransaction is the internal function which implements the public
|
|
|
|
// RemoveTransaction. See the comment for RemoveTransaction for more details.
|
2013-10-22 01:20:31 +02:00
|
|
|
//
|
|
|
|
// This function MUST be called with the mempool lock held (for writes).
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) removeTransaction(tx *btcutil.Tx, removeRedeemers bool) {
|
2016-08-08 21:04:33 +02:00
|
|
|
txHash := tx.Hash()
|
2015-11-05 17:27:42 +01:00
|
|
|
if removeRedeemers {
|
|
|
|
// Remove any transactions which rely on this one.
|
|
|
|
for i := uint32(0); i < uint32(len(tx.MsgTx().TxOut)); i++ {
|
|
|
|
outpoint := wire.NewOutPoint(txHash, i)
|
|
|
|
if txRedeemer, exists := mp.outpoints[*outpoint]; exists {
|
|
|
|
mp.removeTransaction(txRedeemer, true)
|
|
|
|
}
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-19 05:51:18 +01:00
|
|
|
// Remove the transaction if needed.
|
2013-12-11 18:32:16 +01:00
|
|
|
if txDesc, exists := mp.pool[*txHash]; exists {
|
2016-02-19 05:51:18 +01:00
|
|
|
// Remove unconfirmed address index entries associated with the
|
|
|
|
// transaction if enabled.
|
|
|
|
if mp.cfg.AddrIndex != nil {
|
|
|
|
mp.cfg.AddrIndex.RemoveUnconfirmedTx(txHash)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mark the referenced outpoints as unspent by the pool.
|
2013-12-11 18:32:16 +01:00
|
|
|
for _, txIn := range txDesc.Tx.MsgTx().TxIn {
|
2014-10-01 17:34:30 +02:00
|
|
|
delete(mp.outpoints, txIn.PreviousOutPoint)
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
2013-10-28 21:44:38 +01:00
|
|
|
delete(mp.pool, *txHash)
|
2016-02-12 19:44:56 +01:00
|
|
|
atomic.StoreInt64(&mp.lastUpdated, time.Now().Unix())
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
2015-01-04 02:42:01 +01:00
|
|
|
}
|
|
|
|
|
2015-08-26 06:03:18 +02:00
|
|
|
// RemoveTransaction removes the passed transaction from the mempool. When the
|
2015-11-05 17:27:42 +01:00
|
|
|
// removeRedeemers flag is set, any transactions that redeem outputs from the
|
|
|
|
// removed transaction will also be removed recursively from the mempool, as
|
2015-08-26 06:03:18 +02:00
|
|
|
// they would otherwise become orphans.
|
2013-11-15 23:12:23 +01:00
|
|
|
//
|
|
|
|
// This function is safe for concurrent access.
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) RemoveTransaction(tx *btcutil.Tx, removeRedeemers bool) {
|
2013-11-15 23:12:23 +01:00
|
|
|
// Protect concurrent access.
|
2016-08-23 20:59:48 +02:00
|
|
|
mp.mtx.Lock()
|
2015-11-05 17:27:42 +01:00
|
|
|
mp.removeTransaction(tx, removeRedeemers)
|
2016-04-13 03:19:13 +02:00
|
|
|
mp.mtx.Unlock()
|
2013-11-15 23:12:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveDoubleSpends removes all transactions which spend outputs spent by the
|
|
|
|
// passed transaction from the memory pool. Removing those transactions then
|
|
|
|
// leads to removing all transactions which rely on them, recursively. This is
|
|
|
|
// necessary when a block is connected to the main chain because the block may
|
2016-02-19 05:51:18 +01:00
|
|
|
// contain transactions which were previously unknown to the memory pool.
|
2013-11-15 23:12:23 +01:00
|
|
|
//
|
|
|
|
// This function is safe for concurrent access.
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) RemoveDoubleSpends(tx *btcutil.Tx) {
|
2013-11-15 23:12:23 +01:00
|
|
|
// Protect concurrent access.
|
2016-08-23 20:59:48 +02:00
|
|
|
mp.mtx.Lock()
|
2013-11-15 23:12:23 +01:00
|
|
|
for _, txIn := range tx.MsgTx().TxIn {
|
2014-10-01 17:34:30 +02:00
|
|
|
if txRedeemer, ok := mp.outpoints[txIn.PreviousOutPoint]; ok {
|
2016-08-08 21:04:33 +02:00
|
|
|
if !txRedeemer.Hash().IsEqual(tx.Hash()) {
|
2015-11-05 17:27:42 +01:00
|
|
|
mp.removeTransaction(txRedeemer, true)
|
2013-11-15 23:12:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-13 03:19:13 +02:00
|
|
|
mp.mtx.Unlock()
|
2013-11-15 23:12:23 +01:00
|
|
|
}
|
|
|
|
|
2013-09-20 19:55:27 +02:00
|
|
|
// addTransaction adds the passed transaction to the memory pool. It should
|
|
|
|
// not be called directly as it doesn't perform any validation. This is a
|
|
|
|
// helper for maybeAcceptTransaction.
|
2013-10-22 01:20:31 +02:00
|
|
|
//
|
|
|
|
// This function MUST be called with the mempool lock held (for writes).
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) addTransaction(utxoView *blockchain.UtxoViewpoint, tx *btcutil.Tx, height int32, fee int64) {
|
2013-09-20 19:55:27 +02:00
|
|
|
// Add the transaction to the pool and mark the referenced outpoints
|
|
|
|
// as spent by the pool.
|
2016-08-19 18:08:37 +02:00
|
|
|
mp.pool[*tx.Hash()] = &TxDesc{
|
2015-11-25 23:27:14 +01:00
|
|
|
TxDesc: mining.TxDesc{
|
2015-11-25 20:30:44 +01:00
|
|
|
Tx: tx,
|
|
|
|
Added: time.Now(),
|
|
|
|
Height: height,
|
|
|
|
Fee: fee,
|
|
|
|
},
|
2016-08-19 18:08:37 +02:00
|
|
|
StartingPriority: CalcPriority(tx.MsgTx(), utxoView, height),
|
2013-12-11 18:32:16 +01:00
|
|
|
}
|
2013-10-28 21:44:38 +01:00
|
|
|
for _, txIn := range tx.MsgTx().TxIn {
|
2014-10-01 17:34:30 +02:00
|
|
|
mp.outpoints[txIn.PreviousOutPoint] = tx
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
2016-02-12 19:44:56 +01:00
|
|
|
atomic.StoreInt64(&mp.lastUpdated, time.Now().Unix())
|
2016-02-19 05:51:18 +01:00
|
|
|
|
|
|
|
// Add unconfirmed address index entries associated with the transaction
|
|
|
|
// if enabled.
|
|
|
|
if mp.cfg.AddrIndex != nil {
|
|
|
|
mp.cfg.AddrIndex.AddUnconfirmedTx(tx, utxoView)
|
|
|
|
}
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// checkPoolDoubleSpend checks whether or not the passed transaction is
|
|
|
|
// attempting to spend coins already spent by other transactions in the pool.
|
|
|
|
// Note it does not check for double spends against transactions already in the
|
|
|
|
// main chain.
|
2013-10-22 01:20:31 +02:00
|
|
|
//
|
|
|
|
// This function MUST be called with the mempool lock held (for reads).
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) checkPoolDoubleSpend(tx *btcutil.Tx) error {
|
2013-10-28 21:44:38 +01:00
|
|
|
for _, txIn := range tx.MsgTx().TxIn {
|
2014-10-01 17:34:30 +02:00
|
|
|
if txR, exists := mp.outpoints[txIn.PreviousOutPoint]; exists {
|
2015-01-07 01:26:26 +01:00
|
|
|
str := fmt.Sprintf("output %v already spent by "+
|
|
|
|
"transaction %v in the memory pool",
|
2016-08-08 21:04:33 +02:00
|
|
|
txIn.PreviousOutPoint, txR.Hash())
|
2015-02-05 22:16:39 +01:00
|
|
|
return txRuleError(wire.RejectDuplicate, str)
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-08-26 06:03:18 +02:00
|
|
|
// fetchInputUtxos loads utxo details about the input transactions referenced by
|
|
|
|
// the passed transaction. First, it loads the details form the viewpoint of
|
|
|
|
// the main chain, then it adjusts them based upon the contents of the
|
|
|
|
// transaction pool.
|
2013-10-22 01:20:31 +02:00
|
|
|
//
|
|
|
|
// This function MUST be called with the mempool lock held (for reads).
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) fetchInputUtxos(tx *btcutil.Tx) (*blockchain.UtxoViewpoint, error) {
|
2015-08-26 06:03:18 +02:00
|
|
|
utxoView, err := mp.cfg.FetchUtxoView(tx)
|
2013-09-20 19:55:27 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt to populate any missing inputs from the transaction pool.
|
2015-08-26 06:03:18 +02:00
|
|
|
for originHash, entry := range utxoView.Entries() {
|
|
|
|
if entry != nil && !entry.IsFullySpent() {
|
|
|
|
continue
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
2015-08-26 06:03:18 +02:00
|
|
|
if poolTxDesc, exists := mp.pool[originHash]; exists {
|
|
|
|
utxoView.AddTxOuts(poolTxDesc.Tx, mempoolHeight)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return utxoView, nil
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
2013-10-11 21:12:40 +02:00
|
|
|
// FetchTransaction returns the requested transaction from the transaction pool.
|
|
|
|
// This only fetches from the main transaction pool and does not include
|
|
|
|
// orphans.
|
2013-10-22 01:20:31 +02:00
|
|
|
//
|
|
|
|
// This function is safe for concurrent access.
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) FetchTransaction(txHash *chainhash.Hash) (*btcutil.Tx, error) {
|
2013-10-22 01:20:31 +02:00
|
|
|
// Protect concurrent access.
|
2016-08-23 20:59:48 +02:00
|
|
|
mp.mtx.RLock()
|
2016-04-13 03:19:13 +02:00
|
|
|
txDesc, exists := mp.pool[*txHash]
|
|
|
|
mp.mtx.RUnlock()
|
2013-10-11 21:12:40 +02:00
|
|
|
|
2016-04-13 03:19:13 +02:00
|
|
|
if exists {
|
2013-12-11 18:32:16 +01:00
|
|
|
return txDesc.Tx, nil
|
2013-10-11 21:12:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil, fmt.Errorf("transaction is not in the pool")
|
|
|
|
}
|
|
|
|
|
2013-11-15 08:50:02 +01:00
|
|
|
// maybeAcceptTransaction is the internal function which implements the public
|
|
|
|
// MaybeAcceptTransaction. See the comment for MaybeAcceptTransaction for
|
|
|
|
// more details.
|
2013-10-22 01:20:31 +02:00
|
|
|
//
|
|
|
|
// This function MUST be called with the mempool lock held (for writes).
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) maybeAcceptTransaction(tx *btcutil.Tx, isNew, rateLimit bool) ([]*chainhash.Hash, error) {
|
2016-08-08 21:04:33 +02:00
|
|
|
txHash := tx.Hash()
|
2013-09-20 19:55:27 +02:00
|
|
|
|
|
|
|
// Don't accept the transaction if it already exists in the pool. This
|
|
|
|
// applies to orphan transactions as well. This check is intended to
|
2013-10-11 21:12:40 +02:00
|
|
|
// be a quick check to weed out duplicates.
|
2013-10-28 21:44:38 +01:00
|
|
|
if mp.haveTransaction(txHash) {
|
2013-10-04 20:30:50 +02:00
|
|
|
str := fmt.Sprintf("already have transaction %v", txHash)
|
2015-02-05 22:16:39 +01:00
|
|
|
return nil, txRuleError(wire.RejectDuplicate, str)
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Perform preliminary sanity checks on the transaction. This makes
|
|
|
|
// use of btcchain which contains the invariant rules for what
|
|
|
|
// transactions are allowed into blocks.
|
2015-01-30 23:25:42 +01:00
|
|
|
err := blockchain.CheckTransactionSanity(tx)
|
2013-09-20 19:55:27 +02:00
|
|
|
if err != nil {
|
2015-01-30 23:25:42 +01:00
|
|
|
if cerr, ok := err.(blockchain.RuleError); ok {
|
2015-01-07 01:26:26 +01:00
|
|
|
return nil, chainRuleError(cerr)
|
2013-10-04 20:30:50 +02:00
|
|
|
}
|
2015-01-07 01:26:26 +01:00
|
|
|
return nil, err
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// A standalone transaction must not be a coinbase transaction.
|
2015-01-30 23:25:42 +01:00
|
|
|
if blockchain.IsCoinBase(tx) {
|
2013-10-04 20:30:50 +02:00
|
|
|
str := fmt.Sprintf("transaction %v is an individual coinbase",
|
2013-09-20 19:55:27 +02:00
|
|
|
txHash)
|
2015-02-05 22:16:39 +01:00
|
|
|
return nil, txRuleError(wire.RejectInvalid, str)
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Don't accept transactions with a lock time after the maximum int32
|
|
|
|
// value for now. This is an artifact of older bitcoind clients which
|
|
|
|
// treated this field as an int32 and would treat anything larger
|
|
|
|
// incorrectly (as negative).
|
2013-10-28 21:44:38 +01:00
|
|
|
if tx.MsgTx().LockTime > math.MaxInt32 {
|
2014-06-12 20:04:05 +02:00
|
|
|
str := fmt.Sprintf("transaction %v has a lock time after "+
|
2013-09-20 19:55:27 +02:00
|
|
|
"2038 which is not accepted yet", txHash)
|
2015-02-05 22:16:39 +01:00
|
|
|
return nil, txRuleError(wire.RejectNonstandard, str)
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get the current height of the main chain. A standalone transaction
|
2015-08-26 06:03:18 +02:00
|
|
|
// will be mined into the next block at best, so its height is at least
|
2013-10-30 20:13:29 +01:00
|
|
|
// one more than the current height.
|
2016-08-21 07:04:43 +02:00
|
|
|
bestHeight := mp.cfg.BestHeight()
|
|
|
|
nextBlockHeight := bestHeight + 1
|
2013-09-20 19:55:27 +02:00
|
|
|
|
2014-05-23 06:14:36 +02:00
|
|
|
// Don't allow non-standard transactions if the network parameters
|
2016-10-23 23:31:31 +02:00
|
|
|
// forbid their acceptance.
|
|
|
|
if !mp.cfg.Policy.AcceptNonStd {
|
2016-05-15 12:22:21 +02:00
|
|
|
medianTimePast := mp.cfg.MedianTimePast()
|
|
|
|
err = checkTransactionStandard(tx, nextBlockHeight,
|
|
|
|
medianTimePast, mp.cfg.Policy.MinRelayTxFee)
|
2013-09-20 19:55:27 +02:00
|
|
|
if err != nil {
|
2014-07-09 05:01:13 +02:00
|
|
|
// Attempt to extract a reject code from the error so
|
|
|
|
// it can be retained. When not possible, fall back to
|
|
|
|
// a non standard error.
|
|
|
|
rejectCode, found := extractRejectCode(err)
|
|
|
|
if !found {
|
2015-02-05 22:16:39 +01:00
|
|
|
rejectCode = wire.RejectNonstandard
|
2014-07-09 05:01:13 +02:00
|
|
|
}
|
|
|
|
str := fmt.Sprintf("transaction %v is not standard: %v",
|
|
|
|
txHash, err)
|
2015-01-07 01:26:26 +01:00
|
|
|
return nil, txRuleError(rejectCode, str)
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The transaction may not use any of the same outputs as other
|
|
|
|
// transactions already in the pool as that would ultimately result in a
|
|
|
|
// double spend. This check is intended to be quick and therefore only
|
|
|
|
// detects double spends within the transaction pool itself. The
|
|
|
|
// transaction could still be double spending coins from the main chain
|
|
|
|
// at this point. There is a more in-depth check that happens later
|
|
|
|
// after fetching the referenced transaction inputs from the main chain
|
|
|
|
// which examines the actual spend data and prevents double spends.
|
|
|
|
err = mp.checkPoolDoubleSpend(tx)
|
|
|
|
if err != nil {
|
2015-01-07 01:26:26 +01:00
|
|
|
return nil, err
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
2015-08-26 06:03:18 +02:00
|
|
|
// Fetch all of the unspent transaction outputs referenced by the inputs
|
|
|
|
// to this transaction. This function also attempts to fetch the
|
|
|
|
// transaction itself to be used for detecting a duplicate transaction
|
|
|
|
// without needing to do a separate lookup.
|
|
|
|
utxoView, err := mp.fetchInputUtxos(tx)
|
2013-09-20 19:55:27 +02:00
|
|
|
if err != nil {
|
2015-01-30 23:25:42 +01:00
|
|
|
if cerr, ok := err.(blockchain.RuleError); ok {
|
2015-01-07 01:26:26 +01:00
|
|
|
return nil, chainRuleError(cerr)
|
2014-07-09 05:01:13 +02:00
|
|
|
}
|
2015-01-07 01:26:26 +01:00
|
|
|
return nil, err
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Don't allow the transaction if it exists in the main chain and is not
|
|
|
|
// not already fully spent.
|
2015-08-26 06:03:18 +02:00
|
|
|
txEntry := utxoView.LookupEntry(txHash)
|
|
|
|
if txEntry != nil && !txEntry.IsFullySpent() {
|
|
|
|
return nil, txRuleError(wire.RejectDuplicate,
|
|
|
|
"transaction already exists")
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
2015-08-26 06:03:18 +02:00
|
|
|
delete(utxoView.Entries(), *txHash)
|
2013-09-20 19:55:27 +02:00
|
|
|
|
2015-01-07 01:26:26 +01:00
|
|
|
// Transaction is an orphan if any of the referenced input transactions
|
|
|
|
// don't exist. Adding orphans to the orphan pool is not handled by
|
|
|
|
// this function, and the caller should use maybeAddOrphan if this
|
|
|
|
// behavior is desired.
|
2016-08-08 21:04:33 +02:00
|
|
|
var missingParents []*chainhash.Hash
|
2015-08-26 06:03:18 +02:00
|
|
|
for originHash, entry := range utxoView.Entries() {
|
|
|
|
if entry == nil || entry.IsFullySpent() {
|
|
|
|
// Must make a copy of the hash here since the iterator
|
|
|
|
// is replaced and taking its address directly would
|
|
|
|
// result in all of the entries pointing to the same
|
|
|
|
// memory location and thus all be the final hash.
|
|
|
|
hashCopy := originHash
|
|
|
|
missingParents = append(missingParents, &hashCopy)
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
}
|
2015-11-10 23:04:16 +01:00
|
|
|
if len(missingParents) > 0 {
|
2015-01-07 01:26:26 +01:00
|
|
|
return missingParents, nil
|
|
|
|
}
|
2013-09-20 19:55:27 +02:00
|
|
|
|
|
|
|
// Perform several checks on the transaction inputs using the invariant
|
|
|
|
// rules in btcchain for what transactions are allowed into blocks.
|
|
|
|
// Also returns the fees associated with the transaction which will be
|
|
|
|
// used later.
|
2015-08-26 06:03:18 +02:00
|
|
|
txFee, err := blockchain.CheckTransactionInputs(tx, nextBlockHeight,
|
2016-08-19 18:08:37 +02:00
|
|
|
utxoView, mp.cfg.ChainParams)
|
2013-09-20 19:55:27 +02:00
|
|
|
if err != nil {
|
2015-01-30 23:25:42 +01:00
|
|
|
if cerr, ok := err.(blockchain.RuleError); ok {
|
2015-01-07 01:26:26 +01:00
|
|
|
return nil, chainRuleError(cerr)
|
2013-11-15 18:59:32 +01:00
|
|
|
}
|
2015-01-07 01:26:26 +01:00
|
|
|
return nil, err
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
2014-05-23 06:14:36 +02:00
|
|
|
// Don't allow transactions with non-standard inputs if the network
|
2016-10-23 23:31:31 +02:00
|
|
|
// parameters forbid their acceptance.
|
|
|
|
if !mp.cfg.Policy.AcceptNonStd {
|
2015-08-26 06:03:18 +02:00
|
|
|
err := checkInputsStandard(tx, utxoView)
|
2013-09-20 19:55:27 +02:00
|
|
|
if err != nil {
|
2014-07-09 05:01:13 +02:00
|
|
|
// Attempt to extract a reject code from the error so
|
|
|
|
// it can be retained. When not possible, fall back to
|
|
|
|
// a non standard error.
|
|
|
|
rejectCode, found := extractRejectCode(err)
|
|
|
|
if !found {
|
2015-02-05 22:16:39 +01:00
|
|
|
rejectCode = wire.RejectNonstandard
|
2014-07-09 05:01:13 +02:00
|
|
|
}
|
2013-10-04 20:30:50 +02:00
|
|
|
str := fmt.Sprintf("transaction %v has a non-standard "+
|
2013-09-20 19:55:27 +02:00
|
|
|
"input: %v", txHash, err)
|
2015-01-07 01:26:26 +01:00
|
|
|
return nil, txRuleError(rejectCode, str)
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-31 18:19:38 +01:00
|
|
|
// NOTE: if you modify this code to accept non-standard transactions,
|
2013-09-20 19:55:27 +02:00
|
|
|
// you should add code here to check that the transaction does a
|
|
|
|
// reasonable number of ECDSA signature verifications.
|
|
|
|
|
2014-08-14 16:44:26 +02:00
|
|
|
// Don't allow transactions with an excessive number of signature
|
|
|
|
// operations which would result in making it impossible to mine. Since
|
|
|
|
// the coinbase address itself can contain signature operations, the
|
|
|
|
// maximum allowed signature operations per transaction is less than
|
|
|
|
// the maximum allowed signature operations per block.
|
2015-08-26 06:03:18 +02:00
|
|
|
numSigOps, err := blockchain.CountP2SHSigOps(tx, false, utxoView)
|
2014-08-14 16:44:26 +02:00
|
|
|
if err != nil {
|
2015-01-30 23:25:42 +01:00
|
|
|
if cerr, ok := err.(blockchain.RuleError); ok {
|
2015-01-07 01:26:26 +01:00
|
|
|
return nil, chainRuleError(cerr)
|
2014-08-14 16:44:26 +02:00
|
|
|
}
|
2015-01-07 01:26:26 +01:00
|
|
|
return nil, err
|
2014-08-14 16:44:26 +02:00
|
|
|
}
|
2015-01-30 23:25:42 +01:00
|
|
|
numSigOps += blockchain.CountSigOps(tx)
|
2016-04-11 23:37:52 +02:00
|
|
|
if numSigOps > mp.cfg.Policy.MaxSigOpsPerTx {
|
2014-08-14 16:44:26 +02:00
|
|
|
str := fmt.Sprintf("transaction %v has too many sigops: %d > %d",
|
2016-04-11 23:37:52 +02:00
|
|
|
txHash, numSigOps, mp.cfg.Policy.MaxSigOpsPerTx)
|
2015-02-05 22:16:39 +01:00
|
|
|
return nil, txRuleError(wire.RejectNonstandard, str)
|
2014-08-14 16:44:26 +02:00
|
|
|
}
|
|
|
|
|
2013-10-31 18:19:38 +01:00
|
|
|
// Don't allow transactions with fees too low to get into a mined block.
|
2014-08-19 17:17:33 +02:00
|
|
|
//
|
|
|
|
// Most miners allow a free transaction area in blocks they mine to go
|
|
|
|
// alongside the area used for high-priority transactions as well as
|
|
|
|
// transactions with fees. A transaction size of up to 1000 bytes is
|
|
|
|
// considered safe to go into this section. Further, the minimum fee
|
|
|
|
// calculated below on its own would encourage several small
|
|
|
|
// transactions to avoid fees rather than one single larger transaction
|
|
|
|
// which is more desirable. Therefore, as long as the size of the
|
|
|
|
// transaction does not exceeed 1000 less than the reserved space for
|
|
|
|
// high-priority transactions, don't require a fee for it.
|
|
|
|
serializedSize := int64(tx.MsgTx().SerializeSize())
|
2016-04-11 23:37:52 +02:00
|
|
|
minFee := calcMinRequiredTxRelayFee(serializedSize,
|
|
|
|
mp.cfg.Policy.MinRelayTxFee)
|
2016-08-19 18:08:37 +02:00
|
|
|
if serializedSize >= (DefaultBlockPrioritySize-1000) && txFee < minFee {
|
2013-10-31 18:19:38 +01:00
|
|
|
str := fmt.Sprintf("transaction %v has %d fees which is under "+
|
|
|
|
"the required amount of %d", txHash, txFee,
|
2014-08-19 17:17:33 +02:00
|
|
|
minFee)
|
2015-02-05 22:16:39 +01:00
|
|
|
return nil, txRuleError(wire.RejectInsufficientFee, str)
|
2013-10-31 18:19:38 +01:00
|
|
|
}
|
|
|
|
|
2015-02-23 16:28:31 +01:00
|
|
|
// Require that free transactions have sufficient priority to be mined
|
2015-02-26 05:01:20 +01:00
|
|
|
// in the next block. Transactions which are being added back to the
|
|
|
|
// memory pool from blocks that have been disconnected during a reorg
|
|
|
|
// are exempted.
|
2016-04-11 23:37:52 +02:00
|
|
|
if isNew && !mp.cfg.Policy.DisableRelayPriority && txFee < minFee {
|
2016-08-19 18:08:37 +02:00
|
|
|
currentPriority := CalcPriority(tx.MsgTx(), utxoView,
|
2015-11-25 19:34:24 +01:00
|
|
|
nextBlockHeight)
|
2016-08-19 18:08:37 +02:00
|
|
|
if currentPriority <= MinHighPriority {
|
2015-02-23 16:28:31 +01:00
|
|
|
str := fmt.Sprintf("transaction %v has insufficient "+
|
|
|
|
"priority (%g <= %g)", txHash,
|
2016-08-19 18:08:37 +02:00
|
|
|
currentPriority, MinHighPriority)
|
2015-02-23 16:28:31 +01:00
|
|
|
return nil, txRuleError(wire.RejectInsufficientFee, str)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-19 19:15:47 +01:00
|
|
|
// Free-to-relay transactions are rate limited here to prevent
|
|
|
|
// penny-flooding with tiny transactions as a form of attack.
|
2014-08-19 17:17:33 +02:00
|
|
|
if rateLimit && txFee < minFee {
|
2014-02-19 19:15:47 +01:00
|
|
|
nowUnix := time.Now().Unix()
|
2016-08-19 18:08:37 +02:00
|
|
|
// Decay passed data with an exponentially decaying ~10 minute
|
|
|
|
// window - matches bitcoind handling.
|
2014-02-19 19:15:47 +01:00
|
|
|
mp.pennyTotal *= math.Pow(1.0-1.0/600.0,
|
|
|
|
float64(nowUnix-mp.lastPennyUnix))
|
|
|
|
mp.lastPennyUnix = nowUnix
|
|
|
|
|
|
|
|
// Are we still over the limit?
|
2016-04-11 23:37:52 +02:00
|
|
|
if mp.pennyTotal >= mp.cfg.Policy.FreeTxRelayLimit*10*1000 {
|
2014-08-18 17:57:02 +02:00
|
|
|
str := fmt.Sprintf("transaction %v has been rejected "+
|
|
|
|
"by the rate limiter due to low fees", txHash)
|
2015-02-05 22:16:39 +01:00
|
|
|
return nil, txRuleError(wire.RejectInsufficientFee, str)
|
2014-02-19 19:15:47 +01:00
|
|
|
}
|
|
|
|
oldTotal := mp.pennyTotal
|
|
|
|
|
2014-08-18 17:57:02 +02:00
|
|
|
mp.pennyTotal += float64(serializedSize)
|
2016-08-19 18:08:37 +02:00
|
|
|
log.Tracef("rate limit: curTotal %v, nextTotal: %v, "+
|
2014-02-19 19:15:47 +01:00
|
|
|
"limit %v", oldTotal, mp.pennyTotal,
|
2016-04-11 23:37:52 +02:00
|
|
|
mp.cfg.Policy.FreeTxRelayLimit*10*1000)
|
2014-02-19 19:15:47 +01:00
|
|
|
}
|
2013-09-20 19:55:27 +02:00
|
|
|
|
|
|
|
// Verify crypto signatures for each input and reject the transaction if
|
|
|
|
// any don't verify.
|
2015-08-26 06:03:18 +02:00
|
|
|
err = blockchain.ValidateTransactionScripts(tx, utxoView,
|
2015-11-21 04:12:17 +01:00
|
|
|
txscript.StandardVerifyFlags, mp.cfg.SigCache)
|
2013-09-20 19:55:27 +02:00
|
|
|
if err != nil {
|
2015-01-30 23:25:42 +01:00
|
|
|
if cerr, ok := err.(blockchain.RuleError); ok {
|
2015-01-07 01:26:26 +01:00
|
|
|
return nil, chainRuleError(cerr)
|
2014-07-09 05:01:13 +02:00
|
|
|
}
|
2015-01-07 01:26:26 +01:00
|
|
|
return nil, err
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add to transaction pool.
|
2016-08-21 07:04:43 +02:00
|
|
|
mp.addTransaction(utxoView, tx, bestHeight, txFee)
|
2013-09-20 19:55:27 +02:00
|
|
|
|
2016-08-19 18:08:37 +02:00
|
|
|
log.Debugf("Accepted transaction %v (pool size: %v)", txHash,
|
2013-09-20 19:55:27 +02:00
|
|
|
len(mp.pool))
|
|
|
|
|
2015-01-07 01:26:26 +01:00
|
|
|
return nil, nil
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
2013-11-15 08:50:02 +01:00
|
|
|
// MaybeAcceptTransaction is the main workhorse for handling insertion of new
|
|
|
|
// free-standing transactions into a memory pool. It includes functionality
|
|
|
|
// such as rejecting duplicate transactions, ensuring transactions follow all
|
2015-01-07 01:26:26 +01:00
|
|
|
// rules, detecting orphan transactions, and insertion into the memory pool.
|
|
|
|
//
|
|
|
|
// If the transaction is an orphan (missing parent transactions), the
|
|
|
|
// transaction is NOT added to the orphan pool, but each unknown referenced
|
|
|
|
// parent is returned. Use ProcessTransaction instead if new orphans should
|
|
|
|
// be added to the orphan pool.
|
2013-11-15 08:50:02 +01:00
|
|
|
//
|
|
|
|
// This function is safe for concurrent access.
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) MaybeAcceptTransaction(tx *btcutil.Tx, isNew, rateLimit bool) ([]*chainhash.Hash, error) {
|
2013-11-15 08:50:02 +01:00
|
|
|
// Protect concurrent access.
|
2016-08-23 20:59:48 +02:00
|
|
|
mp.mtx.Lock()
|
2016-04-13 03:19:13 +02:00
|
|
|
hashes, err := mp.maybeAcceptTransaction(tx, isNew, rateLimit)
|
|
|
|
mp.mtx.Unlock()
|
2013-11-15 08:50:02 +01:00
|
|
|
|
2016-04-13 03:19:13 +02:00
|
|
|
return hashes, err
|
2013-11-15 08:50:02 +01:00
|
|
|
}
|
|
|
|
|
2015-03-10 17:40:44 +01:00
|
|
|
// processOrphans is the internal function which implements the public
|
|
|
|
// ProcessOrphans. See the comment for ProcessOrphans for more details.
|
2013-10-22 01:20:31 +02:00
|
|
|
//
|
|
|
|
// This function MUST be called with the mempool lock held (for writes).
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) processOrphans(hash *chainhash.Hash) []*btcutil.Tx {
|
2016-04-14 19:58:09 +02:00
|
|
|
var acceptedTxns []*btcutil.Tx
|
|
|
|
|
2013-09-20 19:55:27 +02:00
|
|
|
// Start with processing at least the passed hash.
|
|
|
|
processHashes := list.New()
|
|
|
|
processHashes.PushBack(hash)
|
|
|
|
for processHashes.Len() > 0 {
|
|
|
|
// Pop the first hash to process.
|
|
|
|
firstElement := processHashes.Remove(processHashes.Front())
|
2016-08-08 21:04:33 +02:00
|
|
|
processHash := firstElement.(*chainhash.Hash)
|
2013-09-20 19:55:27 +02:00
|
|
|
|
|
|
|
// Look up all orphans that are referenced by the transaction we
|
|
|
|
// just accepted. This will typically only be one, but it could
|
|
|
|
// be multiple if the referenced transaction contains multiple
|
|
|
|
// outputs. Skip to the next item on the list of hashes to
|
|
|
|
// process if there are none.
|
|
|
|
orphans, exists := mp.orphansByPrev[*processHash]
|
|
|
|
if !exists || orphans == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2015-11-12 23:25:03 +01:00
|
|
|
for _, tx := range orphans {
|
2015-01-07 01:26:26 +01:00
|
|
|
// Remove the orphan from the orphan pool. Current
|
|
|
|
// behavior requires that all saved orphans with
|
|
|
|
// a newly accepted parent are removed from the orphan
|
|
|
|
// pool and potentially added to the memory pool, but
|
|
|
|
// transactions which cannot be added to memory pool
|
|
|
|
// (including due to still being orphans) are expunged
|
|
|
|
// from the orphan pool.
|
|
|
|
//
|
|
|
|
// TODO(jrick): The above described behavior sounds
|
|
|
|
// like a bug, and I think we should investigate
|
|
|
|
// potentially moving orphans to the memory pool, but
|
|
|
|
// leaving them in the orphan pool if not all parent
|
|
|
|
// transactions are known yet.
|
2016-08-08 21:04:33 +02:00
|
|
|
orphanHash := tx.Hash()
|
2013-10-28 21:44:38 +01:00
|
|
|
mp.removeOrphan(orphanHash)
|
2013-09-20 19:55:27 +02:00
|
|
|
|
|
|
|
// Potentially accept the transaction into the
|
|
|
|
// transaction pool.
|
2015-01-07 01:26:26 +01:00
|
|
|
missingParents, err := mp.maybeAcceptTransaction(tx,
|
|
|
|
true, true)
|
2013-09-20 19:55:27 +02:00
|
|
|
if err != nil {
|
2015-11-10 23:04:16 +01:00
|
|
|
// TODO: Remove orphans that depend on this
|
|
|
|
// failed transaction.
|
2016-08-19 18:08:37 +02:00
|
|
|
log.Debugf("Unable to move orphan transaction "+
|
|
|
|
"%v to mempool: %v", tx.Hash(), err)
|
2015-11-10 23:04:16 +01:00
|
|
|
continue
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
2015-11-10 23:04:16 +01:00
|
|
|
if len(missingParents) > 0 {
|
|
|
|
// Transaction is still an orphan, so add it
|
|
|
|
// back.
|
|
|
|
mp.addOrphan(tx)
|
|
|
|
continue
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
2016-04-14 19:58:09 +02:00
|
|
|
// Add this transaction to the list of transactions
|
|
|
|
// that are no longer orphans.
|
|
|
|
acceptedTxns = append(acceptedTxns, tx)
|
2015-11-10 23:04:16 +01:00
|
|
|
|
2013-09-20 19:55:27 +02:00
|
|
|
// Add this transaction to the list of transactions to
|
|
|
|
// process so any orphans that depend on this one are
|
|
|
|
// handled too.
|
2015-01-07 01:26:26 +01:00
|
|
|
//
|
|
|
|
// TODO(jrick): In the case that this is still an orphan,
|
|
|
|
// we know that any other transactions in the orphan
|
|
|
|
// pool with this orphan as their parent are still
|
|
|
|
// orphans as well, and should be removed. While
|
|
|
|
// recursively calling removeOrphan and
|
|
|
|
// maybeAcceptTransaction on these transactions is not
|
|
|
|
// wrong per se, it is overkill if all we care about is
|
|
|
|
// recursively removing child transactions of this
|
|
|
|
// orphan.
|
2013-10-28 21:44:38 +01:00
|
|
|
processHashes.PushBack(orphanHash)
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
}
|
2016-04-14 19:58:09 +02:00
|
|
|
|
|
|
|
return acceptedTxns
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
2015-03-10 17:40:44 +01:00
|
|
|
// ProcessOrphans determines if there are any orphans which depend on the passed
|
|
|
|
// transaction hash (it is possible that they are no longer orphans) and
|
|
|
|
// potentially accepts them to the memory pool. It repeats the process for the
|
|
|
|
// newly accepted transactions (to detect further orphans which may no longer be
|
|
|
|
// orphans) until there are no more.
|
|
|
|
//
|
2016-04-14 19:58:09 +02:00
|
|
|
// It returns a slice of transactions added to the mempool. A nil slice means
|
|
|
|
// no transactions were moved from the orphan pool to the mempool.
|
|
|
|
//
|
2015-03-10 17:40:44 +01:00
|
|
|
// This function is safe for concurrent access.
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) ProcessOrphans(hash *chainhash.Hash) []*btcutil.Tx {
|
2016-08-23 20:59:48 +02:00
|
|
|
mp.mtx.Lock()
|
2016-04-14 19:58:09 +02:00
|
|
|
acceptedTxns := mp.processOrphans(hash)
|
2016-08-23 20:59:48 +02:00
|
|
|
mp.mtx.Unlock()
|
2016-04-14 19:58:09 +02:00
|
|
|
|
|
|
|
return acceptedTxns
|
2015-03-10 17:40:44 +01:00
|
|
|
}
|
|
|
|
|
2013-09-20 19:55:27 +02:00
|
|
|
// ProcessTransaction is the main workhorse for handling insertion of new
|
2013-12-25 19:28:54 +01:00
|
|
|
// free-standing transactions into the memory pool. It includes functionality
|
2013-09-20 19:55:27 +02:00
|
|
|
// such as rejecting duplicate transactions, ensuring transactions follow all
|
|
|
|
// rules, orphan transaction handling, and insertion into the memory pool.
|
2013-10-22 01:20:31 +02:00
|
|
|
//
|
2016-04-14 19:58:09 +02:00
|
|
|
// It returns a slice of transactions added to the mempool. When the
|
|
|
|
// error is nil, the list will include the passed transaction itself along
|
|
|
|
// with any additional orphan transaactions that were added as a result of
|
|
|
|
// the passed one being accepted.
|
|
|
|
//
|
2013-10-22 01:20:31 +02:00
|
|
|
// This function is safe for concurrent access.
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) ProcessTransaction(tx *btcutil.Tx, allowOrphan, rateLimit bool) ([]*btcutil.Tx, error) {
|
2016-04-13 03:19:13 +02:00
|
|
|
log.Tracef("Processing transaction %v", tx.Hash())
|
|
|
|
|
2013-10-22 01:20:31 +02:00
|
|
|
// Protect concurrent access.
|
2016-08-23 20:59:48 +02:00
|
|
|
mp.mtx.Lock()
|
|
|
|
defer mp.mtx.Unlock()
|
2013-10-22 01:20:31 +02:00
|
|
|
|
2013-09-20 19:55:27 +02:00
|
|
|
// Potentially accept the transaction to the memory pool.
|
2015-01-07 01:26:26 +01:00
|
|
|
missingParents, err := mp.maybeAcceptTransaction(tx, true, rateLimit)
|
2013-09-20 19:55:27 +02:00
|
|
|
if err != nil {
|
2016-04-14 19:58:09 +02:00
|
|
|
return nil, err
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
2015-01-07 01:26:26 +01:00
|
|
|
if len(missingParents) == 0 {
|
2013-09-20 19:55:27 +02:00
|
|
|
// Accept any orphan transactions that depend on this
|
2015-01-07 01:26:26 +01:00
|
|
|
// transaction (they may no longer be orphans if all inputs
|
|
|
|
// are now available) and repeat for those accepted
|
|
|
|
// transactions until there are no more.
|
2016-08-08 21:04:33 +02:00
|
|
|
newTxs := mp.processOrphans(tx.Hash())
|
2016-04-14 19:58:09 +02:00
|
|
|
acceptedTxs := make([]*btcutil.Tx, len(newTxs)+1)
|
|
|
|
|
|
|
|
// Add the parent transaction first so remote nodes
|
|
|
|
// do not add orphans.
|
|
|
|
acceptedTxs[0] = tx
|
|
|
|
copy(acceptedTxs[1:], newTxs)
|
|
|
|
|
|
|
|
return acceptedTxs, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// The transaction is an orphan (has inputs missing). Reject
|
|
|
|
// it if the flag to allow orphans is not set.
|
|
|
|
if !allowOrphan {
|
|
|
|
// Only use the first missing parent transaction in
|
|
|
|
// the error message.
|
|
|
|
//
|
|
|
|
// NOTE: RejectDuplicate is really not an accurate
|
|
|
|
// reject code here, but it matches the reference
|
|
|
|
// implementation and there isn't a better choice due
|
|
|
|
// to the limited number of reject codes. Missing
|
|
|
|
// inputs is assumed to mean they are already spent
|
|
|
|
// which is not really always the case.
|
|
|
|
str := fmt.Sprintf("orphan transaction %v references "+
|
|
|
|
"outputs of unknown or fully-spent "+
|
2016-08-08 21:04:33 +02:00
|
|
|
"transaction %v", tx.Hash(), missingParents[0])
|
2016-04-14 19:58:09 +02:00
|
|
|
return nil, txRuleError(wire.RejectDuplicate, str)
|
|
|
|
}
|
2014-03-17 23:32:30 +01:00
|
|
|
|
2016-04-14 19:58:09 +02:00
|
|
|
// Potentially add the orphan transaction to the orphan pool.
|
|
|
|
err = mp.maybeAddOrphan(tx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
2016-04-14 19:58:09 +02:00
|
|
|
return nil, nil
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
2014-05-04 06:51:54 +02:00
|
|
|
// Count returns the number of transactions in the main pool. It does not
|
|
|
|
// include the orphan pool.
|
|
|
|
//
|
|
|
|
// This function is safe for concurrent access.
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) Count() int {
|
2016-08-23 20:59:48 +02:00
|
|
|
mp.mtx.RLock()
|
2016-04-13 03:19:13 +02:00
|
|
|
count := len(mp.pool)
|
|
|
|
mp.mtx.RUnlock()
|
2014-05-04 06:51:54 +02:00
|
|
|
|
2016-04-13 03:19:13 +02:00
|
|
|
return count
|
2014-05-04 06:51:54 +02:00
|
|
|
}
|
|
|
|
|
2016-08-08 21:04:33 +02:00
|
|
|
// TxHashes returns a slice of hashes for all of the transactions in the memory
|
2013-10-08 20:34:04 +02:00
|
|
|
// pool.
|
2013-10-22 01:20:31 +02:00
|
|
|
//
|
|
|
|
// This function is safe for concurrent access.
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) TxHashes() []*chainhash.Hash {
|
2016-08-23 20:59:48 +02:00
|
|
|
mp.mtx.RLock()
|
2016-08-08 21:04:33 +02:00
|
|
|
hashes := make([]*chainhash.Hash, len(mp.pool))
|
2013-10-08 07:04:51 +02:00
|
|
|
i := 0
|
|
|
|
for hash := range mp.pool {
|
|
|
|
hashCopy := hash
|
|
|
|
hashes[i] = &hashCopy
|
|
|
|
i++
|
|
|
|
}
|
2016-04-13 03:19:13 +02:00
|
|
|
mp.mtx.RUnlock()
|
2013-10-08 07:04:51 +02:00
|
|
|
|
|
|
|
return hashes
|
|
|
|
}
|
|
|
|
|
2013-12-11 18:32:16 +01:00
|
|
|
// TxDescs returns a slice of descriptors for all the transactions in the pool.
|
|
|
|
// The descriptors are to be treated as read only.
|
|
|
|
//
|
|
|
|
// This function is safe for concurrent access.
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) TxDescs() []*TxDesc {
|
2016-08-23 20:59:48 +02:00
|
|
|
mp.mtx.RLock()
|
2016-08-19 18:08:37 +02:00
|
|
|
descs := make([]*TxDesc, len(mp.pool))
|
2013-12-11 18:32:16 +01:00
|
|
|
i := 0
|
|
|
|
for _, desc := range mp.pool {
|
|
|
|
descs[i] = desc
|
|
|
|
i++
|
|
|
|
}
|
2016-04-13 03:19:13 +02:00
|
|
|
mp.mtx.RUnlock()
|
2013-12-11 18:32:16 +01:00
|
|
|
|
|
|
|
return descs
|
|
|
|
}
|
|
|
|
|
2015-11-25 20:30:44 +01:00
|
|
|
// MiningDescs returns a slice of mining descriptors for all the transactions
|
|
|
|
// in the pool.
|
|
|
|
//
|
2015-11-25 23:27:14 +01:00
|
|
|
// This is part of the mining.TxSource interface implementation and is safe for
|
2015-11-25 20:30:44 +01:00
|
|
|
// concurrent access as required by the interface contract.
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) MiningDescs() []*mining.TxDesc {
|
2016-08-23 20:59:48 +02:00
|
|
|
mp.mtx.RLock()
|
2015-11-25 23:27:14 +01:00
|
|
|
descs := make([]*mining.TxDesc, len(mp.pool))
|
2015-11-25 20:30:44 +01:00
|
|
|
i := 0
|
|
|
|
for _, desc := range mp.pool {
|
2015-11-25 23:27:14 +01:00
|
|
|
descs[i] = &desc.TxDesc
|
2015-11-25 20:30:44 +01:00
|
|
|
i++
|
|
|
|
}
|
2016-04-13 03:19:13 +02:00
|
|
|
mp.mtx.RUnlock()
|
2015-11-25 20:30:44 +01:00
|
|
|
|
|
|
|
return descs
|
|
|
|
}
|
|
|
|
|
2016-08-19 18:08:37 +02:00
|
|
|
// RawMempoolVerbose returns all of the entries in the mempool as a fully
|
|
|
|
// populated btcjson result.
|
|
|
|
//
|
|
|
|
// This function is safe for concurrent access.
|
|
|
|
func (mp *TxPool) RawMempoolVerbose() map[string]*btcjson.GetRawMempoolVerboseResult {
|
2016-08-23 20:59:48 +02:00
|
|
|
mp.mtx.RLock()
|
|
|
|
defer mp.mtx.RUnlock()
|
2016-08-19 18:08:37 +02:00
|
|
|
|
|
|
|
result := make(map[string]*btcjson.GetRawMempoolVerboseResult,
|
|
|
|
len(mp.pool))
|
2016-08-21 07:04:43 +02:00
|
|
|
bestHeight := mp.cfg.BestHeight()
|
2016-08-19 18:08:37 +02:00
|
|
|
|
|
|
|
for _, desc := range mp.pool {
|
|
|
|
// Calculate the current priority based on the inputs to
|
|
|
|
// the transaction. Use zero if one or more of the
|
|
|
|
// input transactions can't be found for some reason.
|
|
|
|
tx := desc.Tx
|
|
|
|
var currentPriority float64
|
|
|
|
utxos, err := mp.fetchInputUtxos(tx)
|
|
|
|
if err == nil {
|
|
|
|
currentPriority = CalcPriority(tx.MsgTx(), utxos,
|
2016-08-21 07:04:43 +02:00
|
|
|
bestHeight+1)
|
2016-08-19 18:08:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
mpd := &btcjson.GetRawMempoolVerboseResult{
|
|
|
|
Size: int32(tx.MsgTx().SerializeSize()),
|
|
|
|
Fee: btcutil.Amount(desc.Fee).ToBTC(),
|
|
|
|
Time: desc.Added.Unix(),
|
|
|
|
Height: int64(desc.Height),
|
|
|
|
StartingPriority: desc.StartingPriority,
|
|
|
|
CurrentPriority: currentPriority,
|
|
|
|
Depends: make([]string, 0),
|
|
|
|
}
|
|
|
|
for _, txIn := range tx.MsgTx().TxIn {
|
|
|
|
hash := &txIn.PreviousOutPoint.Hash
|
|
|
|
if mp.haveTransaction(hash) {
|
|
|
|
mpd.Depends = append(mpd.Depends,
|
|
|
|
hash.String())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
result[tx.Hash().String()] = mpd
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2014-03-20 08:06:10 +01:00
|
|
|
// LastUpdated returns the last time a transaction was added to or removed from
|
|
|
|
// the main pool. It does not include the orphan pool.
|
|
|
|
//
|
|
|
|
// This function is safe for concurrent access.
|
2016-08-19 18:08:37 +02:00
|
|
|
func (mp *TxPool) LastUpdated() time.Time {
|
2016-02-12 19:44:56 +01:00
|
|
|
return time.Unix(atomic.LoadInt64(&mp.lastUpdated), 0)
|
2014-03-20 08:06:10 +01:00
|
|
|
}
|
|
|
|
|
2016-08-19 18:08:37 +02:00
|
|
|
// New returns a new memory pool for validating and storing standalone
|
2013-09-20 19:55:27 +02:00
|
|
|
// transactions until they are mined into a block.
|
2016-08-19 18:08:37 +02:00
|
|
|
func New(cfg *Config) *TxPool {
|
|
|
|
return &TxPool{
|
2015-11-21 04:12:17 +01:00
|
|
|
cfg: *cfg,
|
2016-08-19 18:08:37 +02:00
|
|
|
pool: make(map[chainhash.Hash]*TxDesc),
|
2016-08-08 21:04:33 +02:00
|
|
|
orphans: make(map[chainhash.Hash]*btcutil.Tx),
|
|
|
|
orphansByPrev: make(map[chainhash.Hash]map[chainhash.Hash]*btcutil.Tx),
|
2015-02-05 22:16:39 +01:00
|
|
|
outpoints: make(map[wire.OutPoint]*btcutil.Tx),
|
2013-09-20 19:55:27 +02:00
|
|
|
}
|
|
|
|
}
|