mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-16 00:43:46 +00:00
Moved blockIsPrecompiledAddr state variable inside the // Block section
This commit is contained in:
parent
f6edb601fa
commit
069b0b36ba
1 changed files with 7 additions and 7 deletions
|
|
@ -152,18 +152,18 @@ type Firehose struct {
|
||||||
blockOrdinal *Ordinal
|
blockOrdinal *Ordinal
|
||||||
blockFinality *FinalityStatus
|
blockFinality *FinalityStatus
|
||||||
blockRules params.Rules
|
blockRules params.Rules
|
||||||
|
blockIsPrecompiledAddr func(addr common.Address) bool
|
||||||
blockReorderOrdinal bool
|
blockReorderOrdinal bool
|
||||||
blockReorderOrdinalSnapshot uint64
|
blockReorderOrdinalSnapshot uint64
|
||||||
blockReorderOrdinalOnce sync.Once
|
blockReorderOrdinalOnce sync.Once
|
||||||
|
|
||||||
// Transaction state
|
// Transaction state
|
||||||
evm *tracing.VMContext
|
evm *tracing.VMContext
|
||||||
transaction *pbeth.TransactionTrace
|
transaction *pbeth.TransactionTrace
|
||||||
transactionLogIndex uint32
|
transactionLogIndex uint32
|
||||||
inSystemCall bool
|
inSystemCall bool
|
||||||
blockIsPrecompiledAddr func(addr common.Address) bool
|
transactionIsolated bool
|
||||||
transactionIsolated bool
|
transactionTransient *pbeth.TransactionTrace
|
||||||
transactionTransient *pbeth.TransactionTrace
|
|
||||||
|
|
||||||
// Call state
|
// Call state
|
||||||
callStack *CallStack
|
callStack *CallStack
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue