mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-04 01:54:28 +00:00
8e3ac8a21c
* Erigon2 upgrade 2 prototype * Latest erigon-lib * Fixes * Fix print * Fix maxSpan * Reduce maxSpan * Remove duplicate joins * TxNum * Fix resuming * first draft of history22 * Introduce historical reads * Update to erigon-lib * Update erigon-lib * Update erigon-lib * Fixes and tracing for checkChangeSets * More trace * Print account details * fix getHeader * Update to erigon-lib main * Add tracer indices and event log indices * Fix calltracer * Fix calltracer * Duplicate rpcdaemon into rpcdaemon22 * Fix tests * Fix tests * Fix tests * Update to latest erigon-lib Co-authored-by: Alexey Sharp <alexeysharp@Alexeys-iMac.local> Co-authored-by: Alex Sharp <alexsharp@Alexs-MacBook-Pro.local>
46 lines
1.1 KiB
Go
46 lines
1.1 KiB
Go
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/ledgerwatch/erigon-lib/kv"
|
|
"github.com/ledgerwatch/erigon/common"
|
|
"github.com/ledgerwatch/erigon/core/rawdb"
|
|
"github.com/ledgerwatch/erigon/eth/stagedsync/stages"
|
|
"github.com/ledgerwatch/erigon/rpc"
|
|
)
|
|
|
|
func getBlockNumber(number rpc.BlockNumber, tx kv.Tx) (uint64, error) {
|
|
var blockNum uint64
|
|
var err error
|
|
if number == rpc.LatestBlockNumber || number == rpc.PendingBlockNumber {
|
|
blockNum, err = getLatestBlockNumber(tx)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
} else if number == rpc.EarliestBlockNumber {
|
|
blockNum = 0
|
|
} else {
|
|
blockNum = uint64(number.Int64())
|
|
}
|
|
|
|
return blockNum, nil
|
|
}
|
|
|
|
func getLatestBlockNumber(tx kv.Tx) (uint64, error) {
|
|
forkchoiceHeadHash := rawdb.ReadForkchoiceHead(tx)
|
|
if forkchoiceHeadHash != (common.Hash{}) {
|
|
forkchoiceHeadNum := rawdb.ReadHeaderNumber(tx, forkchoiceHeadHash)
|
|
if forkchoiceHeadNum != nil {
|
|
return *forkchoiceHeadNum, nil
|
|
}
|
|
}
|
|
|
|
blockNum, err := stages.GetStageProgress(tx, stages.Execution)
|
|
if err != nil {
|
|
return 0, fmt.Errorf("getting latest block number: %w", err)
|
|
}
|
|
|
|
return blockNum, nil
|
|
}
|