2015-05-01 08:28:01 +02:00
|
|
|
// Copyright (c) 2014 The btcsuite developers
|
2014-03-11 06:12:54 +01:00
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"container/heap"
|
|
|
|
"container/list"
|
2014-03-20 08:06:10 +01:00
|
|
|
"fmt"
|
2014-07-02 15:50:08 +02:00
|
|
|
"time"
|
|
|
|
|
2015-01-30 23:25:42 +01:00
|
|
|
"github.com/btcsuite/btcd/blockchain"
|
2015-01-27 22:38:23 +01:00
|
|
|
"github.com/btcsuite/btcd/database"
|
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"
|
2014-03-11 06:12:54 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// generatedBlockVersion is the version of the block being generated.
|
|
|
|
// It is defined as a constant here rather than using the
|
2015-02-05 22:16:39 +01:00
|
|
|
// wire.BlockVersion constant since a change in the block version
|
2015-02-06 00:54:04 +01:00
|
|
|
// will require changes to the generated block. Using the wire constant
|
|
|
|
// for generated block version could allow creation of invalid blocks
|
|
|
|
// for the updated version.
|
2015-10-28 16:43:36 +01:00
|
|
|
generatedBlockVersion = 4
|
2014-03-11 06:12:54 +01:00
|
|
|
|
|
|
|
// minHighPriority is the minimum priority value that allows a
|
|
|
|
// transaction to be considered high priority.
|
2014-07-07 16:05:17 +02:00
|
|
|
minHighPriority = btcutil.SatoshiPerBitcoin * 144.0 / 250
|
2014-03-11 06:12:54 +01:00
|
|
|
|
|
|
|
// blockHeaderOverhead is the max number of bytes it takes to serialize
|
|
|
|
// a block header and max possible transaction count.
|
2015-02-05 22:16:39 +01:00
|
|
|
blockHeaderOverhead = wire.MaxBlockHeaderPayload + wire.MaxVarIntPayload
|
2014-03-11 06:12:54 +01:00
|
|
|
|
|
|
|
// coinbaseFlags is added to the coinbase script of a generated block
|
|
|
|
// and is used to monitor BIP16 support as well as blocks that are
|
|
|
|
// generated via btcd.
|
|
|
|
coinbaseFlags = "/P2SH/btcd/"
|
|
|
|
)
|
|
|
|
|
2015-11-22 08:02:28 +01:00
|
|
|
// miningPolicy houses the policy (configuration parameters) which is used to
|
|
|
|
// control the generation of block templates. See the documentation for
|
|
|
|
// NewBlockTemplate for more details on each of these parameters are used.
|
|
|
|
type miningPolicy struct {
|
|
|
|
// BlockMinSize is the minimum block size in bytes to be used when
|
|
|
|
// generating a block template.
|
|
|
|
BlockMinSize uint32
|
|
|
|
|
|
|
|
// BlockMaxSize is the maximum block size in bytes to be used when
|
|
|
|
// generating a block template.
|
|
|
|
BlockMaxSize uint32
|
|
|
|
|
|
|
|
// BlockPrioritySize is the size in bytes for high-priority / low-fee
|
|
|
|
// transactions to be used when generating a block template.
|
|
|
|
BlockPrioritySize uint32
|
|
|
|
|
|
|
|
// TxMinFreeFee is the minimum fee in Satoshi/kB that is required for a
|
|
|
|
// transaction to be treated as free for mining purposes (block template
|
|
|
|
// generation). This value is in Satoshi/1000 bytes.
|
|
|
|
TxMinFreeFee btcutil.Amount
|
|
|
|
}
|
|
|
|
|
2014-03-11 06:12:54 +01:00
|
|
|
// txPrioItem houses a transaction along with extra information that allows the
|
|
|
|
// transaction to be prioritized and track dependencies on other transactions
|
|
|
|
// which have not been mined into a block yet.
|
|
|
|
type txPrioItem struct {
|
|
|
|
tx *btcutil.Tx
|
|
|
|
fee int64
|
|
|
|
priority float64
|
2015-11-22 07:45:42 +01:00
|
|
|
feePerKB int64
|
2014-03-11 06:12:54 +01:00
|
|
|
|
|
|
|
// dependsOn holds a map of transaction hashes which this one depends
|
|
|
|
// on. It will only be set when the transaction references other
|
|
|
|
// transactions in the memory pool and hence must come after them in
|
|
|
|
// a block.
|
2015-02-05 22:16:39 +01:00
|
|
|
dependsOn map[wire.ShaHash]struct{}
|
2014-03-11 06:12:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// txPriorityQueueLessFunc describes a function that can be used as a compare
|
2014-09-08 21:19:47 +02:00
|
|
|
// function for a transaction priority queue (txPriorityQueue).
|
2014-03-11 06:12:54 +01:00
|
|
|
type txPriorityQueueLessFunc func(*txPriorityQueue, int, int) bool
|
|
|
|
|
|
|
|
// txPriorityQueue implements a priority queue of txPrioItem elements that
|
|
|
|
// supports an arbitrary compare function as defined by txPriorityQueueLessFunc.
|
|
|
|
type txPriorityQueue struct {
|
|
|
|
lessFunc txPriorityQueueLessFunc
|
|
|
|
items []*txPrioItem
|
|
|
|
}
|
|
|
|
|
|
|
|
// Len returns the number of items in the priority queue. It is part of the
|
|
|
|
// heap.Interface implementation.
|
|
|
|
func (pq *txPriorityQueue) Len() int {
|
|
|
|
return len(pq.items)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Less returns whether the item in the priority queue with index i should sort
|
|
|
|
// before the item with index j by deferring to the assigned less function. It
|
|
|
|
// is part of the heap.Interface implementation.
|
|
|
|
func (pq *txPriorityQueue) Less(i, j int) bool {
|
|
|
|
return pq.lessFunc(pq, i, j)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Swap swaps the items at the passed indices in the priority queue. It is
|
|
|
|
// part of the heap.Interface implementation.
|
|
|
|
func (pq *txPriorityQueue) Swap(i, j int) {
|
|
|
|
pq.items[i], pq.items[j] = pq.items[j], pq.items[i]
|
|
|
|
}
|
|
|
|
|
|
|
|
// Push pushes the passed item onto the priority queue. It is part of the
|
|
|
|
// heap.Interface implementation.
|
|
|
|
func (pq *txPriorityQueue) Push(x interface{}) {
|
|
|
|
pq.items = append(pq.items, x.(*txPrioItem))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pop removes the highest priority item (according to Less) from the priority
|
|
|
|
// queue and returns it. It is part of the heap.Interface implementation.
|
|
|
|
func (pq *txPriorityQueue) Pop() interface{} {
|
|
|
|
n := len(pq.items)
|
|
|
|
item := pq.items[n-1]
|
|
|
|
pq.items[n-1] = nil
|
|
|
|
pq.items = pq.items[0 : n-1]
|
|
|
|
return item
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetLessFunc sets the compare function for the priority queue to the provided
|
|
|
|
// function. It also invokes heap.Init on the priority queue using the new
|
|
|
|
// function so it can immediately be used with heap.Push/Pop.
|
|
|
|
func (pq *txPriorityQueue) SetLessFunc(lessFunc txPriorityQueueLessFunc) {
|
|
|
|
pq.lessFunc = lessFunc
|
|
|
|
heap.Init(pq)
|
|
|
|
}
|
|
|
|
|
|
|
|
// txPQByPriority sorts a txPriorityQueue by transaction priority and then fees
|
|
|
|
// per kilobyte.
|
|
|
|
func txPQByPriority(pq *txPriorityQueue, i, j int) bool {
|
|
|
|
// Using > here so that pop gives the highest priority item as opposed
|
|
|
|
// to the lowest. Sort by priority first, then fee.
|
|
|
|
if pq.items[i].priority == pq.items[j].priority {
|
|
|
|
return pq.items[i].feePerKB > pq.items[j].feePerKB
|
|
|
|
}
|
|
|
|
return pq.items[i].priority > pq.items[j].priority
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// txPQByFee sorts a txPriorityQueue by fees per kilobyte and then transaction
|
|
|
|
// priority.
|
|
|
|
func txPQByFee(pq *txPriorityQueue, i, j int) bool {
|
|
|
|
// Using > here so that pop gives the highest fee item as opposed
|
|
|
|
// to the lowest. Sort by fee first, then priority.
|
|
|
|
if pq.items[i].feePerKB == pq.items[j].feePerKB {
|
|
|
|
return pq.items[i].priority > pq.items[j].priority
|
|
|
|
}
|
|
|
|
return pq.items[i].feePerKB > pq.items[j].feePerKB
|
|
|
|
}
|
|
|
|
|
|
|
|
// newTxPriorityQueue returns a new transaction priority queue that reserves the
|
|
|
|
// passed amount of space for the elements. The new priority queue uses either
|
|
|
|
// the txPQByPriority or the txPQByFee compare function depending on the
|
|
|
|
// sortByFee parameter and is already initialized for use with heap.Push/Pop.
|
|
|
|
// The priority queue can grow larger than the reserved space, but extra copies
|
|
|
|
// of the underlying array can be avoided by reserving a sane value.
|
|
|
|
func newTxPriorityQueue(reserve int, sortByFee bool) *txPriorityQueue {
|
|
|
|
pq := &txPriorityQueue{
|
|
|
|
items: make([]*txPrioItem, 0, reserve),
|
|
|
|
}
|
|
|
|
if sortByFee {
|
|
|
|
pq.SetLessFunc(txPQByFee)
|
|
|
|
} else {
|
|
|
|
pq.SetLessFunc(txPQByPriority)
|
|
|
|
}
|
|
|
|
return pq
|
|
|
|
}
|
|
|
|
|
|
|
|
// BlockTemplate houses a block that has yet to be solved along with additional
|
|
|
|
// details about the fees and the number of signature operations for each
|
|
|
|
// transaction in the block.
|
|
|
|
type BlockTemplate struct {
|
2015-02-05 22:16:39 +01:00
|
|
|
block *wire.MsgBlock
|
2014-06-27 07:41:09 +02:00
|
|
|
fees []int64
|
|
|
|
sigOpCounts []int64
|
2015-08-08 04:20:49 +02:00
|
|
|
height int32
|
2014-06-27 07:41:09 +02:00
|
|
|
validPayAddress bool
|
2014-03-11 06:12:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// mergeTxStore adds all of the transactions in txStoreB to txStoreA. The
|
|
|
|
// result is that txStoreA will contain all of its original transactions plus
|
|
|
|
// all of the transactions in txStoreB.
|
2015-01-30 23:25:42 +01:00
|
|
|
func mergeTxStore(txStoreA blockchain.TxStore, txStoreB blockchain.TxStore) {
|
2014-03-11 06:12:54 +01:00
|
|
|
for hash, txDataB := range txStoreB {
|
|
|
|
if txDataA, exists := txStoreA[hash]; !exists ||
|
2015-01-27 22:38:23 +01:00
|
|
|
(txDataA.Err == database.ErrTxShaMissing &&
|
|
|
|
txDataB.Err != database.ErrTxShaMissing) {
|
2014-03-11 06:12:54 +01:00
|
|
|
|
|
|
|
txStoreA[hash] = txDataB
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// standardCoinbaseScript returns a standard script suitable for use as the
|
|
|
|
// signature script of the coinbase transaction of a new block. In particular,
|
|
|
|
// it starts with the block height that is required by version 2 blocks and adds
|
|
|
|
// the extra nonce as well as additional coinbase flags.
|
2015-08-08 04:20:49 +02:00
|
|
|
func standardCoinbaseScript(nextBlockHeight int32, extraNonce uint64) ([]byte, error) {
|
|
|
|
return txscript.NewScriptBuilder().AddInt64(int64(nextBlockHeight)).
|
2015-04-30 03:16:00 +02:00
|
|
|
AddInt64(int64(extraNonce)).AddData([]byte(coinbaseFlags)).
|
|
|
|
Script()
|
2014-03-11 06:12:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// createCoinbaseTx returns a coinbase transaction paying an appropriate subsidy
|
2014-06-27 07:41:09 +02:00
|
|
|
// based on the passed block height to the provided address. When the address
|
|
|
|
// is nil, the coinbase transaction will instead be redeemable by anyone.
|
|
|
|
//
|
|
|
|
// See the comment for NewBlockTemplate for more information about why the nil
|
|
|
|
// address handling is useful.
|
2015-08-08 04:20:49 +02:00
|
|
|
func createCoinbaseTx(coinbaseScript []byte, nextBlockHeight int32, addr btcutil.Address) (*btcutil.Tx, error) {
|
2014-06-27 07:41:09 +02:00
|
|
|
// Create the script to pay to the provided payment address if one was
|
|
|
|
// specified. Otherwise create a script that allows the coinbase to be
|
|
|
|
// redeemable by anyone.
|
|
|
|
var pkScript []byte
|
|
|
|
if addr != nil {
|
|
|
|
var err error
|
2015-01-30 19:14:33 +01:00
|
|
|
pkScript, err = txscript.PayToAddrScript(addr)
|
2014-06-27 07:41:09 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
} else {
|
2015-01-29 07:11:19 +01:00
|
|
|
var err error
|
2015-01-30 19:14:33 +01:00
|
|
|
scriptBuilder := txscript.NewScriptBuilder()
|
|
|
|
pkScript, err = scriptBuilder.AddOp(txscript.OP_TRUE).Script()
|
2015-01-29 07:11:19 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-03-11 06:12:54 +01:00
|
|
|
}
|
|
|
|
|
2015-02-05 22:16:39 +01:00
|
|
|
tx := wire.NewMsgTx()
|
|
|
|
tx.AddTxIn(&wire.TxIn{
|
2014-03-11 06:12:54 +01:00
|
|
|
// Coinbase transactions have no inputs, so previous outpoint is
|
|
|
|
// zero hash and max index.
|
2015-02-05 22:16:39 +01:00
|
|
|
PreviousOutPoint: *wire.NewOutPoint(&wire.ShaHash{},
|
|
|
|
wire.MaxPrevOutIndex),
|
2014-03-11 06:12:54 +01:00
|
|
|
SignatureScript: coinbaseScript,
|
2015-02-05 22:16:39 +01:00
|
|
|
Sequence: wire.MaxTxInSequenceNum,
|
2014-03-11 06:12:54 +01:00
|
|
|
})
|
2015-02-05 22:16:39 +01:00
|
|
|
tx.AddTxOut(&wire.TxOut{
|
2015-01-30 23:25:42 +01:00
|
|
|
Value: blockchain.CalcBlockSubsidy(nextBlockHeight,
|
2014-05-27 06:20:20 +02:00
|
|
|
activeNetParams.Params),
|
2014-03-11 06:12:54 +01:00
|
|
|
PkScript: pkScript,
|
|
|
|
})
|
|
|
|
return btcutil.NewTx(tx), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// spendTransaction updates the passed transaction store by marking the inputs
|
|
|
|
// to the passed transaction as spent. It also adds the passed transaction to
|
|
|
|
// the store at the provided height.
|
2015-08-08 04:20:49 +02:00
|
|
|
func spendTransaction(txStore blockchain.TxStore, tx *btcutil.Tx, height int32) error {
|
2014-03-11 06:12:54 +01:00
|
|
|
for _, txIn := range tx.MsgTx().TxIn {
|
2014-10-01 17:34:30 +02:00
|
|
|
originHash := &txIn.PreviousOutPoint.Hash
|
|
|
|
originIndex := txIn.PreviousOutPoint.Index
|
2014-03-11 06:12:54 +01:00
|
|
|
if originTx, exists := txStore[*originHash]; exists {
|
|
|
|
originTx.Spent[originIndex] = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-30 23:25:42 +01:00
|
|
|
txStore[*tx.Sha()] = &blockchain.TxData{
|
2014-03-11 06:12:54 +01:00
|
|
|
Tx: tx,
|
|
|
|
Hash: tx.Sha(),
|
|
|
|
BlockHeight: height,
|
|
|
|
Spent: make([]bool, len(tx.MsgTx().TxOut)),
|
|
|
|
Err: nil,
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// logSkippedDeps logs any dependencies which are also skipped as a result of
|
|
|
|
// skipping a transaction while generating a block template at the trace level.
|
|
|
|
func logSkippedDeps(tx *btcutil.Tx, deps *list.List) {
|
|
|
|
if deps == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for e := deps.Front(); e != nil; e = e.Next() {
|
|
|
|
item := e.Value.(*txPrioItem)
|
|
|
|
minrLog.Tracef("Skipping tx %s since it depends on %s\n",
|
|
|
|
item.tx.Sha(), tx.Sha())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-27 21:12:22 +02:00
|
|
|
// minimumMedianTime returns the minimum allowed timestamp for a block building
|
|
|
|
// on the end of the current best chain. In particular, it is one second after
|
|
|
|
// the median timestamp of the last several blocks per the chain consensus
|
|
|
|
// rules.
|
|
|
|
func minimumMedianTime(chainState *chainState) (time.Time, error) {
|
|
|
|
chainState.Lock()
|
|
|
|
defer chainState.Unlock()
|
|
|
|
if chainState.pastMedianTimeErr != nil {
|
|
|
|
return time.Time{}, chainState.pastMedianTimeErr
|
|
|
|
}
|
|
|
|
|
|
|
|
return chainState.pastMedianTime.Add(time.Second), nil
|
|
|
|
}
|
|
|
|
|
2014-03-11 06:12:54 +01:00
|
|
|
// medianAdjustedTime returns the current time adjusted to ensure it is at least
|
|
|
|
// one second after the median timestamp of the last several blocks per the
|
|
|
|
// chain consensus rules.
|
2015-02-28 19:17:43 +01:00
|
|
|
func medianAdjustedTime(chainState *chainState, timeSource blockchain.MedianTimeSource) (time.Time, error) {
|
2014-03-11 06:12:54 +01:00
|
|
|
chainState.Lock()
|
|
|
|
defer chainState.Unlock()
|
|
|
|
if chainState.pastMedianTimeErr != nil {
|
|
|
|
return time.Time{}, chainState.pastMedianTimeErr
|
|
|
|
}
|
|
|
|
|
|
|
|
// The timestamp for the block must not be before the median timestamp
|
|
|
|
// of the last several blocks. Thus, choose the maximum between the
|
|
|
|
// current time and one second after the past median time. The current
|
|
|
|
// timestamp is truncated to a second boundary before comparison since a
|
|
|
|
// block timestamp does not supported a precision greater than one
|
|
|
|
// second.
|
2015-02-28 19:17:43 +01:00
|
|
|
newTimestamp := timeSource.AdjustedTime()
|
2014-03-11 06:12:54 +01:00
|
|
|
minTimestamp := chainState.pastMedianTime.Add(time.Second)
|
|
|
|
if newTimestamp.Before(minTimestamp) {
|
|
|
|
newTimestamp = minTimestamp
|
|
|
|
}
|
|
|
|
|
|
|
|
return newTimestamp, nil
|
|
|
|
}
|
|
|
|
|
2014-06-27 07:41:09 +02:00
|
|
|
// NewBlockTemplate returns a new block template that is ready to be solved
|
|
|
|
// using the transactions from the passed transaction memory pool and a coinbase
|
|
|
|
// that either pays to the passed address if it is not nil, or a coinbase that
|
|
|
|
// is redeemable by anyone if the passed address is nil. The nil address
|
|
|
|
// functionality is useful since there are cases such as the getblocktemplate
|
|
|
|
// RPC where external mining software is responsible for creating their own
|
|
|
|
// coinbase which will replace the one generated for the block template. Thus
|
|
|
|
// the need to have configured address can be avoided.
|
|
|
|
//
|
|
|
|
// The transactions selected and included are prioritized according to several
|
|
|
|
// factors. First, each transaction has a priority calculated based on its
|
|
|
|
// value, age of inputs, and size. Transactions which consist of larger
|
|
|
|
// amounts, older inputs, and small sizes have the highest priority. Second, a
|
|
|
|
// fee per kilobyte is calculated for each transaction. Transactions with a
|
|
|
|
// higher fee per kilobyte are preferred. Finally, the block generation related
|
2015-11-22 08:02:28 +01:00
|
|
|
// policy settings are all taken into account.
|
2014-03-11 06:12:54 +01:00
|
|
|
//
|
|
|
|
// Transactions which only spend outputs from other transactions already in the
|
|
|
|
// block chain are immediately added to a priority queue which either
|
|
|
|
// prioritizes based on the priority (then fee per kilobyte) or the fee per
|
|
|
|
// kilobyte (then priority) depending on whether or not the BlockPrioritySize
|
2015-11-22 08:02:28 +01:00
|
|
|
// policy setting allots space for high-priority transactions. Transactions
|
|
|
|
// which spend outputs from other transactions in the memory pool are added to a
|
|
|
|
// dependency map so they can be added to the priority queue once the
|
|
|
|
// transactions they depend on have been included.
|
2014-03-11 06:12:54 +01:00
|
|
|
//
|
2015-11-22 08:02:28 +01:00
|
|
|
// Once the high-priority area (if configured) has been filled with
|
|
|
|
// transactions, or the priority falls below what is considered high-priority,
|
|
|
|
// the priority queue is updated to prioritize by fees per kilobyte (then
|
|
|
|
// priority).
|
2014-03-11 06:12:54 +01:00
|
|
|
//
|
2015-11-22 08:02:28 +01:00
|
|
|
// When the fees per kilobyte drop below the TxMinFreeFee policy setting, the
|
|
|
|
// transaction will be skipped unless the BlockMinSize policy setting is
|
|
|
|
// nonzero, in which case the block will be filled with the low-fee/free
|
|
|
|
// transactions until the block size reaches that minimum size.
|
2014-03-11 06:12:54 +01:00
|
|
|
//
|
|
|
|
// Any transactions which would cause the block to exceed the BlockMaxSize
|
2015-11-22 08:02:28 +01:00
|
|
|
// policy setting, exceed the maximum allowed signature operations per block, or
|
|
|
|
// otherwise cause the block to be invalid are skipped.
|
2014-03-11 06:12:54 +01:00
|
|
|
//
|
|
|
|
// Given the above, a block generated by this function is of the following form:
|
|
|
|
//
|
|
|
|
// ----------------------------------- -- --
|
|
|
|
// | Coinbase Transaction | | |
|
|
|
|
// |-----------------------------------| | |
|
2015-11-22 08:02:28 +01:00
|
|
|
// | | | | ----- policy.BlockPrioritySize
|
2014-03-11 06:12:54 +01:00
|
|
|
// | High-priority Transactions | | |
|
|
|
|
// | | | |
|
|
|
|
// |-----------------------------------| | --
|
|
|
|
// | | |
|
|
|
|
// | | |
|
2015-11-22 08:02:28 +01:00
|
|
|
// | | |--- policy.BlockMaxSize
|
2014-03-11 06:12:54 +01:00
|
|
|
// | Transactions prioritized by fee | |
|
2015-11-22 08:02:28 +01:00
|
|
|
// | until <= policy.TxMinFreeFee | |
|
2014-03-11 06:12:54 +01:00
|
|
|
// | | |
|
|
|
|
// | | |
|
|
|
|
// | | |
|
|
|
|
// |-----------------------------------| |
|
|
|
|
// | Low-fee/Non high-priority (free) | |
|
|
|
|
// | transactions (while block size | |
|
2015-11-22 08:02:28 +01:00
|
|
|
// | <= policy.BlockMinSize) | |
|
2014-03-11 06:12:54 +01:00
|
|
|
// ----------------------------------- --
|
2015-11-22 08:02:28 +01:00
|
|
|
func NewBlockTemplate(policy *miningPolicy, server *server, payToAddress btcutil.Address) (*BlockTemplate, error) {
|
2015-09-25 01:22:00 +02:00
|
|
|
blockManager := server.blockManager
|
|
|
|
timeSource := server.timeSource
|
2014-03-11 06:12:54 +01:00
|
|
|
chainState := &blockManager.chainState
|
|
|
|
|
|
|
|
// Extend the most recently known best block.
|
|
|
|
chainState.Lock()
|
|
|
|
prevHash := chainState.newestHash
|
|
|
|
nextBlockHeight := chainState.newestHeight + 1
|
|
|
|
chainState.Unlock()
|
|
|
|
|
|
|
|
// Create a standard coinbase transaction paying to the provided
|
|
|
|
// address. NOTE: The coinbase value will be updated to include the
|
|
|
|
// fees from the selected transactions later after they have actually
|
|
|
|
// been selected. It is created here to detect any errors early
|
2014-06-27 07:41:09 +02:00
|
|
|
// before potentially doing a lot of work below. The extra nonce helps
|
|
|
|
// ensure the transaction is not a duplicate transaction (paying the
|
|
|
|
// same value to the same public key address would otherwise be an
|
|
|
|
// identical transaction for block version 1).
|
2014-03-11 06:12:54 +01:00
|
|
|
extraNonce := uint64(0)
|
2015-01-29 07:11:19 +01:00
|
|
|
coinbaseScript, err := standardCoinbaseScript(nextBlockHeight, extraNonce)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-03-11 06:12:54 +01:00
|
|
|
coinbaseTx, err := createCoinbaseTx(coinbaseScript, nextBlockHeight,
|
|
|
|
payToAddress)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-01-30 23:25:42 +01:00
|
|
|
numCoinbaseSigOps := int64(blockchain.CountSigOps(coinbaseTx))
|
2014-03-11 06:12:54 +01:00
|
|
|
|
|
|
|
// Get the current memory pool transactions and create a priority queue
|
|
|
|
// to hold the transactions which are ready for inclusion into a block
|
|
|
|
// along with some priority related and fee metadata. Reserve the same
|
|
|
|
// number of items that are in the memory pool for the priority queue.
|
|
|
|
// Also, choose the initial sort order for the priority queue based on
|
|
|
|
// whether or not there is an area allocated for high-priority
|
|
|
|
// transactions.
|
2015-09-25 01:22:00 +02:00
|
|
|
mempoolTxns := server.txMemPool.TxDescs()
|
2015-11-22 08:02:28 +01:00
|
|
|
sortedByFee := policy.BlockPrioritySize == 0
|
2014-03-11 06:12:54 +01:00
|
|
|
priorityQueue := newTxPriorityQueue(len(mempoolTxns), sortedByFee)
|
|
|
|
|
|
|
|
// Create a slice to hold the transactions to be included in the
|
|
|
|
// generated block with reserved space. Also create a transaction
|
|
|
|
// store to house all of the input transactions so multiple lookups
|
|
|
|
// can be avoided.
|
|
|
|
blockTxns := make([]*btcutil.Tx, 0, len(mempoolTxns))
|
|
|
|
blockTxns = append(blockTxns, coinbaseTx)
|
2015-01-30 23:25:42 +01:00
|
|
|
blockTxStore := make(blockchain.TxStore)
|
2014-03-11 06:12:54 +01:00
|
|
|
|
|
|
|
// dependers is used to track transactions which depend on another
|
|
|
|
// transaction in the memory pool. This, in conjunction with the
|
|
|
|
// dependsOn map kept with each dependent transaction helps quickly
|
|
|
|
// determine which dependent transactions are now eligible for inclusion
|
|
|
|
// in the block once each transaction has been included.
|
2015-02-05 22:16:39 +01:00
|
|
|
dependers := make(map[wire.ShaHash]*list.List)
|
2014-03-11 06:12:54 +01:00
|
|
|
|
|
|
|
// Create slices to hold the fees and number of signature operations
|
|
|
|
// for each of the selected transactions and add an entry for the
|
|
|
|
// coinbase. This allows the code below to simply append details about
|
|
|
|
// a transaction as it is selected for inclusion in the final block.
|
|
|
|
// However, since the total fees aren't known yet, use a dummy value for
|
|
|
|
// the coinbase fee which will be updated later.
|
2014-06-27 07:41:09 +02:00
|
|
|
txFees := make([]int64, 0, len(mempoolTxns))
|
|
|
|
txSigOpCounts := make([]int64, 0, len(mempoolTxns))
|
2014-03-11 06:12:54 +01:00
|
|
|
txFees = append(txFees, -1) // Updated once known
|
|
|
|
txSigOpCounts = append(txSigOpCounts, numCoinbaseSigOps)
|
|
|
|
|
|
|
|
minrLog.Debugf("Considering %d mempool transactions for inclusion to "+
|
|
|
|
"new block", len(mempoolTxns))
|
|
|
|
|
|
|
|
mempoolLoop:
|
|
|
|
for _, txDesc := range mempoolTxns {
|
|
|
|
// A block can't have more than one coinbase or contain
|
|
|
|
// non-finalized transactions.
|
|
|
|
tx := txDesc.Tx
|
2015-01-30 23:25:42 +01:00
|
|
|
if blockchain.IsCoinBase(tx) {
|
2014-03-11 06:12:54 +01:00
|
|
|
minrLog.Tracef("Skipping coinbase tx %s", tx.Sha())
|
|
|
|
continue
|
|
|
|
}
|
2015-06-29 17:12:35 +02:00
|
|
|
if !blockchain.IsFinalizedTransaction(tx, nextBlockHeight,
|
2015-02-28 19:17:43 +01:00
|
|
|
timeSource.AdjustedTime()) {
|
|
|
|
|
2014-03-11 06:12:54 +01:00
|
|
|
minrLog.Tracef("Skipping non-finalized tx %s", tx.Sha())
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fetch all of the transactions referenced by the inputs to
|
|
|
|
// this transaction. NOTE: This intentionally does not fetch
|
|
|
|
// inputs from the mempool since a transaction which depends on
|
|
|
|
// other transactions in the mempool must come after those
|
|
|
|
// dependencies in the final generated block.
|
2015-03-30 19:16:23 +02:00
|
|
|
txStore, err := blockManager.FetchTransactionStore(tx)
|
2014-03-11 06:12:54 +01:00
|
|
|
if err != nil {
|
|
|
|
minrLog.Warnf("Unable to fetch transaction store for "+
|
|
|
|
"tx %s: %v", tx.Sha(), err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2014-10-29 02:39:08 +01:00
|
|
|
// Setup dependencies for any transactions which reference
|
|
|
|
// other transactions in the mempool so they can be properly
|
|
|
|
// ordered below.
|
2014-03-11 06:12:54 +01:00
|
|
|
prioItem := &txPrioItem{tx: txDesc.Tx}
|
|
|
|
for _, txIn := range tx.MsgTx().TxIn {
|
2014-10-01 17:34:30 +02:00
|
|
|
originHash := &txIn.PreviousOutPoint.Hash
|
|
|
|
originIndex := txIn.PreviousOutPoint.Index
|
2014-03-11 06:12:54 +01:00
|
|
|
txData, exists := txStore[*originHash]
|
|
|
|
if !exists || txData.Err != nil || txData.Tx == nil {
|
2015-09-25 01:22:00 +02:00
|
|
|
if !server.txMemPool.HaveTransaction(originHash) {
|
2014-03-11 06:12:54 +01:00
|
|
|
minrLog.Tracef("Skipping tx %s because "+
|
|
|
|
"it references tx %s which is "+
|
|
|
|
"not available", tx.Sha,
|
|
|
|
originHash)
|
|
|
|
continue mempoolLoop
|
|
|
|
}
|
|
|
|
|
|
|
|
// The transaction is referencing another
|
|
|
|
// transaction in the memory pool, so setup an
|
|
|
|
// ordering dependency.
|
|
|
|
depList, exists := dependers[*originHash]
|
|
|
|
if !exists {
|
|
|
|
depList = list.New()
|
|
|
|
dependers[*originHash] = depList
|
|
|
|
}
|
|
|
|
depList.PushBack(prioItem)
|
|
|
|
if prioItem.dependsOn == nil {
|
|
|
|
prioItem.dependsOn = make(
|
2015-02-05 22:16:39 +01:00
|
|
|
map[wire.ShaHash]struct{})
|
2014-03-11 06:12:54 +01:00
|
|
|
}
|
|
|
|
prioItem.dependsOn[*originHash] = struct{}{}
|
|
|
|
|
2014-10-29 02:39:08 +01:00
|
|
|
// Skip the check below. We already know the
|
|
|
|
// referenced transaction is available.
|
2014-03-11 06:12:54 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure the output index in the referenced transaction
|
|
|
|
// is available.
|
|
|
|
msgTx := txData.Tx.MsgTx()
|
|
|
|
if originIndex > uint32(len(msgTx.TxOut)) {
|
|
|
|
minrLog.Tracef("Skipping tx %s because "+
|
|
|
|
"it references output %d of tx %s "+
|
|
|
|
"which is out of bounds", tx.Sha,
|
|
|
|
originIndex, originHash)
|
|
|
|
continue mempoolLoop
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Calculate the final transaction priority using the input
|
|
|
|
// value age sum as well as the adjusted transaction size. The
|
|
|
|
// formula is: sum(inputValue * inputAge) / adjustedTxSize
|
2015-11-25 19:34:24 +01:00
|
|
|
prioItem.priority = calcPriority(tx.MsgTx(), txStore, nextBlockHeight)
|
2014-03-11 06:12:54 +01:00
|
|
|
|
2015-11-22 07:45:42 +01:00
|
|
|
// Calculate the fee in Satoshi/kB.
|
2014-10-29 02:39:08 +01:00
|
|
|
txSize := tx.MsgTx().SerializeSize()
|
2015-11-22 07:45:42 +01:00
|
|
|
prioItem.feePerKB = (txDesc.Fee * 1000) / int64(txSize)
|
2014-03-11 06:12:54 +01:00
|
|
|
prioItem.fee = txDesc.Fee
|
|
|
|
|
|
|
|
// Add the transaction to the priority queue to mark it ready
|
|
|
|
// for inclusion in the block unless it has dependencies.
|
|
|
|
if prioItem.dependsOn == nil {
|
|
|
|
heap.Push(priorityQueue, prioItem)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Merge the store which contains all of the input transactions
|
|
|
|
// for this transaction into the input transaction store. This
|
|
|
|
// allows the code below to avoid a second lookup.
|
|
|
|
mergeTxStore(blockTxStore, txStore)
|
|
|
|
}
|
|
|
|
|
|
|
|
minrLog.Tracef("Priority queue len %d, dependers len %d",
|
|
|
|
priorityQueue.Len(), len(dependers))
|
|
|
|
|
|
|
|
// The starting block size is the size of the block header plus the max
|
|
|
|
// possible transaction count size, plus the size of the coinbase
|
|
|
|
// transaction.
|
|
|
|
blockSize := blockHeaderOverhead + uint32(coinbaseTx.MsgTx().SerializeSize())
|
|
|
|
blockSigOps := numCoinbaseSigOps
|
|
|
|
totalFees := int64(0)
|
|
|
|
|
|
|
|
// Choose which transactions make it into the block.
|
|
|
|
for priorityQueue.Len() > 0 {
|
|
|
|
// Grab the highest priority (or highest fee per kilobyte
|
|
|
|
// depending on the sort order) transaction.
|
|
|
|
prioItem := heap.Pop(priorityQueue).(*txPrioItem)
|
|
|
|
tx := prioItem.tx
|
|
|
|
|
|
|
|
// Grab the list of transactions which depend on this one (if
|
|
|
|
// any) and remove the entry for this transaction as it will
|
|
|
|
// either be included or skipped, but in either case the deps
|
|
|
|
// are no longer needed.
|
|
|
|
deps := dependers[*tx.Sha()]
|
|
|
|
delete(dependers, *tx.Sha())
|
|
|
|
|
|
|
|
// Enforce maximum block size. Also check for overflow.
|
|
|
|
txSize := uint32(tx.MsgTx().SerializeSize())
|
|
|
|
blockPlusTxSize := blockSize + txSize
|
2015-11-22 08:02:28 +01:00
|
|
|
if blockPlusTxSize < blockSize || blockPlusTxSize >= policy.BlockMaxSize {
|
2014-03-11 06:12:54 +01:00
|
|
|
minrLog.Tracef("Skipping tx %s because it would exceed "+
|
|
|
|
"the max block size", tx.Sha())
|
|
|
|
logSkippedDeps(tx, deps)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Enforce maximum signature operations per block. Also check
|
|
|
|
// for overflow.
|
2015-01-30 23:25:42 +01:00
|
|
|
numSigOps := int64(blockchain.CountSigOps(tx))
|
2014-03-11 06:12:54 +01:00
|
|
|
if blockSigOps+numSigOps < blockSigOps ||
|
2015-01-30 23:25:42 +01:00
|
|
|
blockSigOps+numSigOps > blockchain.MaxSigOpsPerBlock {
|
2014-03-11 06:12:54 +01:00
|
|
|
minrLog.Tracef("Skipping tx %s because it would "+
|
|
|
|
"exceed the maximum sigops per block", tx.Sha())
|
|
|
|
logSkippedDeps(tx, deps)
|
|
|
|
continue
|
|
|
|
}
|
2015-01-30 23:25:42 +01:00
|
|
|
numP2SHSigOps, err := blockchain.CountP2SHSigOps(tx, false,
|
2014-03-11 06:12:54 +01:00
|
|
|
blockTxStore)
|
|
|
|
if err != nil {
|
|
|
|
minrLog.Tracef("Skipping tx %s due to error in "+
|
|
|
|
"CountP2SHSigOps: %v", tx.Sha(), err)
|
|
|
|
logSkippedDeps(tx, deps)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
numSigOps += int64(numP2SHSigOps)
|
|
|
|
if blockSigOps+numSigOps < blockSigOps ||
|
2015-01-30 23:25:42 +01:00
|
|
|
blockSigOps+numSigOps > blockchain.MaxSigOpsPerBlock {
|
2014-03-11 06:12:54 +01:00
|
|
|
minrLog.Tracef("Skipping tx %s because it would "+
|
|
|
|
"exceed the maximum sigops per block (p2sh)",
|
|
|
|
tx.Sha())
|
|
|
|
logSkippedDeps(tx, deps)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Skip free transactions once the block is larger than the
|
|
|
|
// minimum block size.
|
2015-10-19 22:21:31 +02:00
|
|
|
if sortedByFee &&
|
2015-11-22 08:02:28 +01:00
|
|
|
prioItem.feePerKB < int64(policy.TxMinFreeFee) &&
|
|
|
|
blockPlusTxSize >= policy.BlockMinSize {
|
2014-03-11 06:12:54 +01:00
|
|
|
|
|
|
|
minrLog.Tracef("Skipping tx %s with feePerKB %.2f "+
|
2015-11-22 08:02:28 +01:00
|
|
|
"< TxMinFreeFee %d and block size %d >= "+
|
2014-03-11 06:12:54 +01:00
|
|
|
"minBlockSize %d", tx.Sha(), prioItem.feePerKB,
|
2015-11-22 08:02:28 +01:00
|
|
|
policy.TxMinFreeFee, blockPlusTxSize,
|
|
|
|
policy.BlockMinSize)
|
2014-03-11 06:12:54 +01:00
|
|
|
logSkippedDeps(tx, deps)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prioritize by fee per kilobyte once the block is larger than
|
|
|
|
// the priority size or there are no more high-priority
|
|
|
|
// transactions.
|
2015-11-22 08:02:28 +01:00
|
|
|
if !sortedByFee && (blockPlusTxSize >= policy.BlockPrioritySize ||
|
2014-07-07 16:05:17 +02:00
|
|
|
prioItem.priority <= minHighPriority) {
|
2014-03-11 06:12:54 +01:00
|
|
|
|
|
|
|
minrLog.Tracef("Switching to sort by fees per "+
|
|
|
|
"kilobyte blockSize %d >= BlockPrioritySize "+
|
|
|
|
"%d || priority %.2f <= minHighPriority %.2f",
|
2015-11-22 08:02:28 +01:00
|
|
|
blockPlusTxSize, policy.BlockPrioritySize,
|
2014-07-07 16:05:17 +02:00
|
|
|
prioItem.priority, minHighPriority)
|
2014-03-11 06:12:54 +01:00
|
|
|
|
|
|
|
sortedByFee = true
|
|
|
|
priorityQueue.SetLessFunc(txPQByFee)
|
|
|
|
|
|
|
|
// Put the transaction back into the priority queue and
|
|
|
|
// skip it so it is re-priortized by fees if it won't
|
|
|
|
// fit into the high-priority section or the priority is
|
|
|
|
// too low. Otherwise this transaction will be the
|
|
|
|
// final one in the high-priority section, so just fall
|
|
|
|
// though to the code below so it is added now.
|
2015-11-22 08:02:28 +01:00
|
|
|
if blockPlusTxSize > policy.BlockPrioritySize ||
|
2014-07-07 16:05:17 +02:00
|
|
|
prioItem.priority < minHighPriority {
|
2014-03-11 06:12:54 +01:00
|
|
|
|
|
|
|
heap.Push(priorityQueue, prioItem)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure the transaction inputs pass all of the necessary
|
|
|
|
// preconditions before allowing it to be added to the block.
|
2015-01-30 23:25:42 +01:00
|
|
|
_, err = blockchain.CheckTransactionInputs(tx, nextBlockHeight,
|
2014-03-11 06:12:54 +01:00
|
|
|
blockTxStore)
|
|
|
|
if err != nil {
|
|
|
|
minrLog.Tracef("Skipping tx %s due to error in "+
|
|
|
|
"CheckTransactionInputs: %v", tx.Sha(), err)
|
|
|
|
logSkippedDeps(tx, deps)
|
|
|
|
continue
|
|
|
|
}
|
2015-01-30 23:25:42 +01:00
|
|
|
err = blockchain.ValidateTransactionScripts(tx, blockTxStore,
|
2015-09-25 01:22:00 +02:00
|
|
|
txscript.StandardVerifyFlags, server.sigCache)
|
2014-03-11 06:12:54 +01:00
|
|
|
if err != nil {
|
|
|
|
minrLog.Tracef("Skipping tx %s due to error in "+
|
|
|
|
"ValidateTransactionScripts: %v", tx.Sha(), err)
|
|
|
|
logSkippedDeps(tx, deps)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Spend the transaction inputs in the block transaction store
|
|
|
|
// and add an entry for it to ensure any transactions which
|
|
|
|
// reference this one have it available as an input and can
|
|
|
|
// ensure they aren't double spending.
|
|
|
|
spendTransaction(blockTxStore, tx, nextBlockHeight)
|
|
|
|
|
|
|
|
// Add the transaction to the block, increment counters, and
|
|
|
|
// save the fees and signature operation counts to the block
|
|
|
|
// template.
|
|
|
|
blockTxns = append(blockTxns, tx)
|
|
|
|
blockSize += txSize
|
|
|
|
blockSigOps += numSigOps
|
|
|
|
totalFees += prioItem.fee
|
|
|
|
txFees = append(txFees, prioItem.fee)
|
|
|
|
txSigOpCounts = append(txSigOpCounts, numSigOps)
|
|
|
|
|
|
|
|
minrLog.Tracef("Adding tx %s (priority %.2f, feePerKB %.2f)",
|
|
|
|
prioItem.tx.Sha(), prioItem.priority, prioItem.feePerKB)
|
|
|
|
|
|
|
|
// Add transactions which depend on this one (and also do not
|
|
|
|
// have any other unsatisified dependencies) to the priority
|
|
|
|
// queue.
|
|
|
|
if deps != nil {
|
|
|
|
for e := deps.Front(); e != nil; e = e.Next() {
|
|
|
|
// Add the transaction to the priority queue if
|
|
|
|
// there are no more dependencies after this
|
|
|
|
// one.
|
|
|
|
item := e.Value.(*txPrioItem)
|
|
|
|
delete(item.dependsOn, *tx.Sha())
|
|
|
|
if len(item.dependsOn) == 0 {
|
|
|
|
heap.Push(priorityQueue, item)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now that the actual transactions have been selected, update the
|
|
|
|
// block size for the real transaction count and coinbase value with
|
|
|
|
// the total fees accordingly.
|
2015-02-05 22:16:39 +01:00
|
|
|
blockSize -= wire.MaxVarIntPayload -
|
|
|
|
uint32(wire.VarIntSerializeSize(uint64(len(blockTxns))))
|
2014-03-11 06:12:54 +01:00
|
|
|
coinbaseTx.MsgTx().TxOut[0].Value += totalFees
|
|
|
|
txFees[0] = -totalFees
|
|
|
|
|
|
|
|
// Calculate the required difficulty for the block. The timestamp
|
|
|
|
// is potentially adjusted to ensure it comes after the median time of
|
|
|
|
// the last several blocks per the chain consensus rules.
|
2015-02-28 19:17:43 +01:00
|
|
|
ts, err := medianAdjustedTime(chainState, timeSource)
|
2014-03-11 06:12:54 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
requiredDifficulty, err := blockManager.CalcNextRequiredDifficulty(ts)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a new block ready to be solved.
|
2015-01-30 23:25:42 +01:00
|
|
|
merkles := blockchain.BuildMerkleTreeStore(blockTxns)
|
2015-02-05 22:16:39 +01:00
|
|
|
var msgBlock wire.MsgBlock
|
|
|
|
msgBlock.Header = wire.BlockHeader{
|
2014-03-11 06:12:54 +01:00
|
|
|
Version: generatedBlockVersion,
|
|
|
|
PrevBlock: *prevHash,
|
|
|
|
MerkleRoot: *merkles[len(merkles)-1],
|
|
|
|
Timestamp: ts,
|
|
|
|
Bits: requiredDifficulty,
|
|
|
|
}
|
|
|
|
for _, tx := range blockTxns {
|
|
|
|
if err := msgBlock.AddTransaction(tx.MsgTx()); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finally, perform a full check on the created block against the chain
|
|
|
|
// consensus rules to ensure it properly connects to the current best
|
|
|
|
// chain with no issues.
|
|
|
|
block := btcutil.NewBlock(&msgBlock)
|
|
|
|
block.SetHeight(nextBlockHeight)
|
|
|
|
if err := blockManager.CheckConnectBlock(block); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
minrLog.Debugf("Created new block template (%d transactions, %d in "+
|
|
|
|
"fees, %d signature operations, %d bytes, target difficulty "+
|
|
|
|
"%064x)", len(msgBlock.Transactions), totalFees, blockSigOps,
|
2015-01-30 23:25:42 +01:00
|
|
|
blockSize, blockchain.CompactToBig(msgBlock.Header.Bits))
|
2014-03-11 06:12:54 +01:00
|
|
|
|
|
|
|
return &BlockTemplate{
|
2014-06-27 07:41:09 +02:00
|
|
|
block: &msgBlock,
|
|
|
|
fees: txFees,
|
|
|
|
sigOpCounts: txSigOpCounts,
|
|
|
|
height: nextBlockHeight,
|
|
|
|
validPayAddress: payToAddress != nil,
|
2014-03-11 06:12:54 +01:00
|
|
|
}, nil
|
|
|
|
}
|
2014-03-20 08:06:10 +01:00
|
|
|
|
|
|
|
// UpdateBlockTime updates the timestamp in the header of the passed block to
|
|
|
|
// the current time while taking into account the median time of the last
|
|
|
|
// several blocks to ensure the new time is after that time per the chain
|
|
|
|
// consensus rules. Finally, it will update the target difficulty if needed
|
|
|
|
// based on the new time for the test networks since their target difficulty can
|
|
|
|
// change based upon time.
|
2015-02-05 22:16:39 +01:00
|
|
|
func UpdateBlockTime(msgBlock *wire.MsgBlock, bManager *blockManager) error {
|
2014-03-20 08:06:10 +01:00
|
|
|
// The new timestamp is potentially adjusted to ensure it comes after
|
|
|
|
// the median time of the last several blocks per the chain consensus
|
|
|
|
// rules.
|
2015-02-28 19:17:43 +01:00
|
|
|
newTimestamp, err := medianAdjustedTime(&bManager.chainState,
|
|
|
|
bManager.server.timeSource)
|
2014-03-20 08:06:10 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
msgBlock.Header.Timestamp = newTimestamp
|
|
|
|
|
2014-05-23 06:14:36 +02:00
|
|
|
// If running on a network that requires recalculating the difficulty,
|
|
|
|
// do so now.
|
|
|
|
if activeNetParams.ResetMinDifficulty {
|
2014-03-20 08:06:10 +01:00
|
|
|
difficulty, err := bManager.CalcNextRequiredDifficulty(newTimestamp)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
msgBlock.Header.Bits = difficulty
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateExtraNonce updates the extra nonce in the coinbase script of the passed
|
|
|
|
// block by regenerating the coinbase script with the passed value and block
|
2014-06-27 07:41:09 +02:00
|
|
|
// height. It also recalculates and updates the new merkle root that results
|
2014-03-20 08:06:10 +01:00
|
|
|
// from changing the coinbase script.
|
2015-08-08 04:20:49 +02:00
|
|
|
func UpdateExtraNonce(msgBlock *wire.MsgBlock, blockHeight int32, extraNonce uint64) error {
|
2015-01-29 07:11:19 +01:00
|
|
|
coinbaseScript, err := standardCoinbaseScript(blockHeight, extraNonce)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-01-30 23:25:42 +01:00
|
|
|
if len(coinbaseScript) > blockchain.MaxCoinbaseScriptLen {
|
2014-03-20 08:06:10 +01:00
|
|
|
return fmt.Errorf("coinbase transaction script length "+
|
|
|
|
"of %d is out of range (min: %d, max: %d)",
|
2015-01-30 23:25:42 +01:00
|
|
|
len(coinbaseScript), blockchain.MinCoinbaseScriptLen,
|
|
|
|
blockchain.MaxCoinbaseScriptLen)
|
2014-03-20 08:06:10 +01:00
|
|
|
}
|
|
|
|
msgBlock.Transactions[0].TxIn[0].SignatureScript = coinbaseScript
|
|
|
|
|
|
|
|
// TODO(davec): A btcutil.Block should use saved in the state to avoid
|
|
|
|
// recalculating all of the other transaction hashes.
|
|
|
|
// block.Transactions[0].InvalidateCache()
|
|
|
|
|
|
|
|
// Recalculate the merkle root with the updated extra nonce.
|
|
|
|
block := btcutil.NewBlock(msgBlock)
|
2015-01-30 23:25:42 +01:00
|
|
|
merkles := blockchain.BuildMerkleTreeStore(block.Transactions())
|
2014-03-20 08:06:10 +01:00
|
|
|
msgBlock.Header.MerkleRoot = *merkles[len(merkles)-1]
|
|
|
|
return nil
|
|
|
|
}
|