aboutsummaryrefslogtreecommitdiffstats
path: root/core/transaction_pool.go
blob: 4f91f35755c44021d65fe24c36987c06e63b15e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
package core

import (
    "fmt"
    "math/big"

    "github.com/ethereum/go-ethereum/core/types"
    "github.com/ethereum/go-ethereum/event"
    "github.com/ethereum/go-ethereum/logger"
    "gopkg.in/fatih/set.v0"
)

var txplogger = logger.NewLogger("TXP")

const txPoolQueueSize = 50

type TxPoolHook chan *types.Transaction
type TxMsg struct {
    Tx *types.Transaction
}

const (
    minGasPrice = 1000000
)

type TxProcessor interface {
    ProcessTransaction(tx *types.Transaction)
}

// The tx pool a thread safe transaction pool handler. In order to
// guarantee a non blocking pool we use a queue channel which can be
// independently read without needing access to the actual pool.
type TxPool struct {
    // Queueing channel for reading and writing incoming
    // transactions to
    queueChan chan *types.Transaction
    // Quiting channel
    quit chan bool
    // The actual pool
    //pool *list.List
    pool *set.Set

    SecondaryProcessor TxProcessor

    subscribers []chan TxMsg

    stateQuery StateQuery
    eventMux   *event.TypeMux
}

func NewTxPool(stateQuery StateQuery, eventMux *event.TypeMux) *TxPool {
    return &TxPool{
        pool:       set.New(),
        queueChan:  make(chan *types.Transaction, txPoolQueueSize),
        quit:       make(chan bool),
        stateQuery: stateQuery,
        eventMux:   eventMux,
    }
}

func (pool *TxPool) addTransaction(tx *types.Transaction) {

    pool.pool.Add(tx)

    // Broadcast the transaction to the rest of the peers
    pool.eventMux.Post(TxPreEvent{tx})
}

func (pool *TxPool) ValidateTransaction(tx *types.Transaction) error {
    if len(tx.To()) != 0 && len(tx.To()) != 20 {
        return fmt.Errorf("Invalid recipient. len = %d", len(tx.To()))
    }

    v, _, _ := tx.Curve()
    if v > 28 || v < 27 {
        return fmt.Errorf("tx.v != (28 || 27)")
    }

    // Get the sender
    senderAddr := tx.From()
    if senderAddr == nil {
        return fmt.Errorf("invalid sender")
    }
    sender := pool.stateQuery.GetAccount(senderAddr)

    totAmount := new(big.Int).Set(tx.Value())
    // Make sure there's enough in the sender's account. Having insufficient
    // funds won't invalidate this transaction but simple ignores it.
    if sender.Balance().Cmp(totAmount) < 0 {
        return fmt.Errorf("Insufficient amount in sender's (%x) account", tx.From())
    }

    return nil
}

func (self *TxPool) Add(tx *types.Transaction) error {
    hash := tx.Hash()
    if self.pool.Has(tx) {
        return fmt.Errorf("Known transaction (%x)", hash[0:4])
    }

    err := self.ValidateTransaction(tx)
    if err != nil {
        return err
    }

    self.addTransaction(tx)

    txplogger.Debugf("(t) %x => %x (%v) %x\n", tx.From()[:4], tx.To()[:4], tx.Value, tx.Hash())

    // Notify the subscribers
    go self.eventMux.Post(TxPreEvent{tx})

    return nil
}

func (self *TxPool) Size() int {
    return self.pool.Size()
}

func (self *TxPool) AddTransactions(txs []*types.Transaction) {
    for _, tx := range txs {
        if err := self.Add(tx); err != nil {
            txplogger.Infoln(err)
        } else {
            txplogger.Infof("tx %x\n", tx.Hash()[0:4])
        }
    }
}

func (pool *TxPool) GetTransactions() []*types.Transaction {
    txList := make([]*types.Transaction, pool.Size())
    i := 0
    pool.pool.Each(func(v interface{}) bool {
        txList[i] = v.(*types.Transaction)
        i++

        return true
    })

    return txList
}

func (pool *TxPool) RemoveInvalid(query StateQuery) {
    var removedTxs types.Transactions
    pool.pool.Each(func(v interface{}) bool {
        tx := v.(*types.Transaction)
        sender := query.GetAccount(tx.From())
        err := pool.ValidateTransaction(tx)
        if err != nil || sender.Nonce >= tx.Nonce() {
            removedTxs = append(removedTxs, tx)
        }

        return true
    })
    pool.RemoveSet(removedTxs)
}

func (self *TxPool) RemoveSet(txs types.Transactions) {
    for _, tx := range txs {
        self.pool.Remove(tx)
    }
}

func (pool *TxPool) Flush() []*types.Transaction {
    txList := pool.GetTransactions()
    pool.pool.Clear()

    return txList
}

func (pool *TxPool) Start() {
}

func (pool *TxPool) Stop() {
    pool.Flush()

    txplogger.Infoln("Stopped")
}