Return erroneous txs (so we can remove them from the pool)
This commit is contained in:
parent
003280888d
commit
69e745c537
|
@ -17,7 +17,7 @@ import (
|
||||||
"github.com/ethereum/go-ethereum/event"
|
"github.com/ethereum/go-ethereum/event"
|
||||||
)
|
)
|
||||||
|
|
||||||
var statelogger = ethlog.NewLogger("STATE")
|
var statelogger = ethlog.NewLogger("BLOCK")
|
||||||
|
|
||||||
type Peer interface {
|
type Peer interface {
|
||||||
Inbound() bool
|
Inbound() bool
|
||||||
|
@ -134,10 +134,11 @@ func (sm *StateManager) ChainManager() *ChainManager {
|
||||||
return sm.bc
|
return sm.bc
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *StateManager) ProcessTransactions(coinbase *ethstate.StateObject, state *ethstate.State, block, parent *Block, txs Transactions) (Receipts, Transactions, Transactions, error) {
|
func (self *StateManager) ProcessTransactions(coinbase *ethstate.StateObject, state *ethstate.State, block, parent *Block, txs Transactions) (Receipts, Transactions, Transactions, Transactions, error) {
|
||||||
var (
|
var (
|
||||||
receipts Receipts
|
receipts Receipts
|
||||||
handled, unhandled Transactions
|
handled, unhandled Transactions
|
||||||
|
erroneous Transactions
|
||||||
totalUsedGas = big.NewInt(0)
|
totalUsedGas = big.NewInt(0)
|
||||||
err error
|
err error
|
||||||
)
|
)
|
||||||
|
@ -161,7 +162,9 @@ done:
|
||||||
break done
|
break done
|
||||||
default:
|
default:
|
||||||
statelogger.Infoln(err)
|
statelogger.Infoln(err)
|
||||||
|
erroneous = append(erroneous, tx)
|
||||||
err = nil
|
err = nil
|
||||||
|
continue
|
||||||
//return nil, nil, nil, err
|
//return nil, nil, nil, err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -182,7 +185,7 @@ done:
|
||||||
|
|
||||||
err := fmt.Errorf("#%d receipt failed (r) %v ~ %x <=> (c) %v ~ %x (%x...)", i+1, original.CumulativeGasUsed, original.PostState[0:4], receipt.CumulativeGasUsed, receipt.PostState[0:4], receipt.Tx.Hash()[0:4])
|
err := fmt.Errorf("#%d receipt failed (r) %v ~ %x <=> (c) %v ~ %x (%x...)", i+1, original.CumulativeGasUsed, original.PostState[0:4], receipt.CumulativeGasUsed, receipt.PostState[0:4], receipt.Tx.Hash()[0:4])
|
||||||
|
|
||||||
return nil, nil, nil, err
|
return nil, nil, nil, nil, err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -199,7 +202,7 @@ done:
|
||||||
|
|
||||||
parent.GasUsed = totalUsedGas
|
parent.GasUsed = totalUsedGas
|
||||||
|
|
||||||
return receipts, handled, unhandled, err
|
return receipts, handled, unhandled, erroneous, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func (sm *StateManager) Process(block *Block, dontReact bool) (err error) {
|
func (sm *StateManager) Process(block *Block, dontReact bool) (err error) {
|
||||||
|
@ -283,7 +286,7 @@ func (sm *StateManager) Process(block *Block, dontReact bool) (err error) {
|
||||||
state.Manifest().Reset()
|
state.Manifest().Reset()
|
||||||
}
|
}
|
||||||
|
|
||||||
sm.eth.TxPool().RemoveInvalid(state)
|
sm.eth.TxPool().RemoveSet(block.Transactions())
|
||||||
} else {
|
} else {
|
||||||
statelogger.Errorln("total diff failed")
|
statelogger.Errorln("total diff failed")
|
||||||
}
|
}
|
||||||
|
@ -296,7 +299,7 @@ func (sm *StateManager) ApplyDiff(state *ethstate.State, parent, block *Block) (
|
||||||
coinbase.SetGasPool(block.CalcGasLimit(parent))
|
coinbase.SetGasPool(block.CalcGasLimit(parent))
|
||||||
|
|
||||||
// Process the transactions on to current block
|
// Process the transactions on to current block
|
||||||
receipts, _, _, err = sm.ProcessTransactions(coinbase, state, block, parent, block.Transactions())
|
receipts, _, _, _, err = sm.ProcessTransactions(coinbase, state, block, parent, block.Transactions())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,7 +40,7 @@ func NewContractCreationTx(value, gas, gasPrice *big.Int, script []byte) *Transa
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewTransactionMessage(to []byte, value, gas, gasPrice *big.Int, data []byte) *Transaction {
|
func NewTransactionMessage(to []byte, value, gas, gasPrice *big.Int, data []byte) *Transaction {
|
||||||
return &Transaction{Recipient: to, Value: value, GasPrice: gasPrice, Gas: gas, Data: data}
|
return &Transaction{Recipient: to, Value: value, GasPrice: gasPrice, Gas: gas, Data: data, contractCreation: IsContractAddr(to)}
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewTransactionFromBytes(data []byte) *Transaction {
|
func NewTransactionFromBytes(data []byte) *Transaction {
|
||||||
|
|
|
@ -35,6 +35,14 @@ type TxMsg struct {
|
||||||
Type TxMsgTy
|
Type TxMsgTy
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func EachTx(pool *list.List, it func(*Transaction, *list.Element) bool) {
|
||||||
|
for e := pool.Front(); e != nil; e = e.Next() {
|
||||||
|
if it(e.Value.(*Transaction), e) {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func FindTx(pool *list.List, finder func(*Transaction, *list.Element) bool) *Transaction {
|
func FindTx(pool *list.List, finder func(*Transaction, *list.Element) bool) *Transaction {
|
||||||
for e := pool.Front(); e != nil; e = e.Next() {
|
for e := pool.Front(); e != nil; e = e.Next() {
|
||||||
if tx, ok := e.Value.(*Transaction); ok {
|
if tx, ok := e.Value.(*Transaction); ok {
|
||||||
|
@ -191,6 +199,9 @@ func (pool *TxPool) CurrentTransactions() []*Transaction {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (pool *TxPool) RemoveInvalid(state *ethstate.State) {
|
func (pool *TxPool) RemoveInvalid(state *ethstate.State) {
|
||||||
|
pool.mutex.Lock()
|
||||||
|
defer pool.mutex.Unlock()
|
||||||
|
|
||||||
for e := pool.pool.Front(); e != nil; e = e.Next() {
|
for e := pool.pool.Front(); e != nil; e = e.Next() {
|
||||||
tx := e.Value.(*Transaction)
|
tx := e.Value.(*Transaction)
|
||||||
sender := state.GetAccount(tx.Sender())
|
sender := state.GetAccount(tx.Sender())
|
||||||
|
@ -201,6 +212,21 @@ func (pool *TxPool) RemoveInvalid(state *ethstate.State) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (self *TxPool) RemoveSet(txs Transactions) {
|
||||||
|
self.mutex.Lock()
|
||||||
|
defer self.mutex.Unlock()
|
||||||
|
|
||||||
|
for _, tx := range txs {
|
||||||
|
EachTx(self.pool, func(t *Transaction, element *list.Element) bool {
|
||||||
|
if t == tx {
|
||||||
|
self.pool.Remove(element)
|
||||||
|
return true // To stop the loop
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func (pool *TxPool) Flush() []*Transaction {
|
func (pool *TxPool) Flush() []*Transaction {
|
||||||
txList := pool.CurrentTransactions()
|
txList := pool.CurrentTransactions()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue