mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-10 13:01:21 +00:00
90 lines
2.2 KiB
Go
90 lines
2.2 KiB
Go
|
package exec22
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
|
||
|
"github.com/holiman/uint256"
|
||
|
"github.com/ledgerwatch/erigon/common"
|
||
|
"github.com/ledgerwatch/erigon/core/types"
|
||
|
"github.com/ledgerwatch/erigon/core/types/accounts"
|
||
|
"github.com/ledgerwatch/erigon/core/vm/evmtypes"
|
||
|
"github.com/ledgerwatch/erigon/params"
|
||
|
)
|
||
|
|
||
|
// ReadWriteSet contains ReadSet, WriteSet and BalanceIncrease of a transaction,
|
||
|
// which is processed by a single thread that writes into the ReconState1 and
|
||
|
// flushes to the database
|
||
|
type TxTask struct {
|
||
|
TxNum uint64
|
||
|
BlockNum uint64
|
||
|
Rules *params.Rules
|
||
|
Header *types.Header
|
||
|
Txs types.Transactions
|
||
|
Uncles []*types.Header
|
||
|
Coinbase common.Address
|
||
|
BlockHash common.Hash
|
||
|
Sender *common.Address
|
||
|
SkipAnalysis bool
|
||
|
TxIndex int // -1 for block initialisation
|
||
|
Final bool
|
||
|
Tx types.Transaction
|
||
|
GetHashFn func(n uint64) common.Hash
|
||
|
TxAsMessage types.Message
|
||
|
EvmBlockContext evmtypes.BlockContext
|
||
|
|
||
|
BalanceIncreaseSet map[common.Address]uint256.Int
|
||
|
ReadLists map[string]*KvList
|
||
|
WriteLists map[string]*KvList
|
||
|
AccountPrevs map[string][]byte
|
||
|
AccountDels map[string]*accounts.Account
|
||
|
StoragePrevs map[string][]byte
|
||
|
CodePrevs map[string]uint64
|
||
|
ResultsSize int64
|
||
|
Error error
|
||
|
Logs []*types.Log
|
||
|
TraceFroms map[common.Address]struct{}
|
||
|
TraceTos map[common.Address]struct{}
|
||
|
}
|
||
|
|
||
|
type TxTaskQueue []*TxTask
|
||
|
|
||
|
func (h TxTaskQueue) Len() int {
|
||
|
return len(h)
|
||
|
}
|
||
|
|
||
|
func (h TxTaskQueue) Less(i, j int) bool {
|
||
|
return h[i].TxNum < h[j].TxNum
|
||
|
}
|
||
|
|
||
|
func (h TxTaskQueue) Swap(i, j int) {
|
||
|
h[i], h[j] = h[j], h[i]
|
||
|
}
|
||
|
|
||
|
func (h *TxTaskQueue) Push(a interface{}) {
|
||
|
*h = append(*h, a.(*TxTask))
|
||
|
}
|
||
|
|
||
|
func (h *TxTaskQueue) Pop() interface{} {
|
||
|
c := *h
|
||
|
*h = c[:len(c)-1]
|
||
|
return c[len(c)-1]
|
||
|
}
|
||
|
|
||
|
// KvList sort.Interface to sort write list by keys
|
||
|
type KvList struct {
|
||
|
Keys, Vals [][]byte
|
||
|
}
|
||
|
|
||
|
func (l KvList) Len() int {
|
||
|
return len(l.Keys)
|
||
|
}
|
||
|
|
||
|
func (l KvList) Less(i, j int) bool {
|
||
|
return bytes.Compare(l.Keys[i], l.Keys[j]) < 0
|
||
|
}
|
||
|
|
||
|
func (l *KvList) Swap(i, j int) {
|
||
|
l.Keys[i], l.Keys[j] = l.Keys[j], l.Keys[i]
|
||
|
l.Vals[i], l.Vals[j] = l.Vals[j], l.Vals[i]
|
||
|
}
|