erigon-pulse/eth/ethutils/utils.go.go
Alex Sharov 0be3044b7e
rename (#1978)
* rename

* rename "make grpc"

* rename "abi bindings templates"

* rename "abi bindings templates"
2021-05-20 19:25:53 +01:00

34 lines
998 B
Go

package ethutils
import (
"github.com/ledgerwatch/erigon/common"
"github.com/ledgerwatch/erigon/consensus"
"github.com/ledgerwatch/erigon/core/types"
"github.com/ledgerwatch/erigon/log"
)
// IsLocalBlock checks whether the specified block is mined
// by local miner accounts.
//
// We regard two types of accounts as local miner account: etherbase
// and accounts specified via `txpool.locals` flag.
func IsLocalBlock(engine consensus.Engine, etherbase common.Address, txPoolLocals []common.Address, header *types.Header) bool {
author, err := engine.Author(header)
if err != nil {
log.Warn("Failed to retrieve block author", "number", header.Number, "header_hash", header.Hash(), "err", err)
return false
}
// Check whether the given address is etherbase.
if author == etherbase {
return true
}
// Check whether the given address is specified by `txpool.local`
// CLI flag.
for _, account := range txPoolLocals {
if account == author {
return true
}
}
return false
}