2021-05-26 10:35:39 +00:00
|
|
|
// Copyright 2020 The erigon Authors
|
2020-08-01 16:56:57 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package core
|
|
|
|
|
|
|
|
import (
|
2022-06-17 12:40:49 +00:00
|
|
|
"sort"
|
|
|
|
|
2023-01-13 18:12:18 +00:00
|
|
|
"github.com/ledgerwatch/erigon-lib/chain"
|
2023-10-18 06:37:39 +00:00
|
|
|
"github.com/ledgerwatch/erigon-lib/chain/networkname"
|
2020-08-01 16:56:57 +00:00
|
|
|
)
|
|
|
|
|
2020-11-13 08:35:14 +00:00
|
|
|
// SkipAnalysis function tells us whether we can skip performing jumpdest analysis
|
2020-08-01 16:56:57 +00:00
|
|
|
// for the historical blocks (on mainnet now but perhaps on the testsnets
|
|
|
|
// in the future), because we have verified that there were only a few blocks
|
|
|
|
// where codeBitmap was useful. Invalid jumps either did not occur, or were
|
|
|
|
// prevented simply by checking whether the jump destination has JUMPDEST opcode
|
|
|
|
// Mainnet transactions that use jumpdest analysis are:
|
2022-06-19 05:51:05 +00:00
|
|
|
// 0x3666640316df11865abd1352f4c0b4c5126f8ac1d858ef2a0c6e744a4865bca2 (block 5800596)
|
2020-08-01 16:56:57 +00:00
|
|
|
// 0x88a1f2a9f048a21fd944b28ad9962f533ab5d3c40e17b1bc3f99ae999a4021b2 (block 6426432)
|
|
|
|
// 0x86e55d1818b5355424975de9633a57c40789ca08552297b726333a9433949c92 (block 6426298)
|
2020-10-29 12:02:11 +00:00
|
|
|
// 0xcdb5bf0b4b51093e1c994f471921f88623c9d3e1b6aa2782049f53a0048f2b32 (block 11079912)
|
2022-05-14 19:17:23 +00:00
|
|
|
// 0x21ab7bf7245a87eae265124aaf180d91133377e47db2b1a4866493ec4b371150 (block 13119520)
|
2022-06-05 21:42:33 +00:00
|
|
|
|
2022-08-10 12:04:13 +00:00
|
|
|
var analysisBlocks = map[string][]uint64{
|
2023-03-23 21:00:27 +00:00
|
|
|
networkname.MainnetChainName: {5_800_596, 6_426_298, 6_426_432, 11_079_912, 13_119_520, 15_081_051},
|
|
|
|
networkname.BorMainnetChainName: {29_447_463},
|
|
|
|
networkname.PulsechainChainName: {5_800_596, 6_426_298, 6_426_432, 11_079_912, 13_119_520, 15_081_051},
|
2023-04-13 19:57:33 +00:00
|
|
|
networkname.PulsechainTestnetV4ChainName: {5_800_596, 6_426_298, 6_426_432, 11_079_912, 13_119_520, 15_081_051},
|
2022-06-17 12:40:49 +00:00
|
|
|
}
|
|
|
|
|
2023-01-13 18:12:18 +00:00
|
|
|
func SkipAnalysis(config *chain.Config, blockNumber uint64) bool {
|
2022-06-17 12:40:49 +00:00
|
|
|
blockNums, ok := analysisBlocks[config.ChainName]
|
|
|
|
if !ok {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
// blockNums is ordered, and the last element is the first block number which has not been checked
|
|
|
|
p := sort.Search(len(blockNums), func(i int) bool {
|
|
|
|
return blockNums[i] >= blockNumber
|
|
|
|
})
|
|
|
|
if p == len(blockNums) {
|
|
|
|
// blockNum is beyond the last element, no optimisation
|
|
|
|
return false
|
2020-08-01 16:56:57 +00:00
|
|
|
}
|
2022-06-17 12:40:49 +00:00
|
|
|
// If the blockNumber is in the list, no optimisation
|
|
|
|
return blockNumber != blockNums[p]
|
2020-08-01 16:56:57 +00:00
|
|
|
}
|