From f88fa89bda826458add31274a60cf6800ac47f0f Mon Sep 17 00:00:00 2001 From: ledgerwatch Date: Sun, 19 Jun 2022 06:51:05 +0100 Subject: [PATCH] Fix in skip_analysis (#4493) * Update skip_analysis.go * Update skip_analysis.go --- core/skip_analysis.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/skip_analysis.go b/core/skip_analysis.go index 844aa394a..231a31507 100644 --- a/core/skip_analysis.go +++ b/core/skip_analysis.go @@ -29,14 +29,14 @@ import ( // 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: +// 0x3666640316df11865abd1352f4c0b4c5126f8ac1d858ef2a0c6e744a4865bca2 (block 5800596) // 0x88a1f2a9f048a21fd944b28ad9962f533ab5d3c40e17b1bc3f99ae999a4021b2 (block 6426432) // 0x86e55d1818b5355424975de9633a57c40789ca08552297b726333a9433949c92 (block 6426298) -// 0x3666640316df11865abd1352f4c0b4c5126f8ac1d858ef2a0c6e744a4865bca2 (block 5800596) // 0xcdb5bf0b4b51093e1c994f471921f88623c9d3e1b6aa2782049f53a0048f2b32 (block 11079912) // 0x21ab7bf7245a87eae265124aaf180d91133377e47db2b1a4866493ec4b371150 (block 13119520) var analysisBlocks map[string][]uint64 = map[string][]uint64{ - networkname.MainnetChainName: {6_426_298, 6_426_432, 5_800_596, 11_079_912, 13_119_520, 14_961_400}, + networkname.MainnetChainName: {5_800_596, 6_426_298, 6_426_432, 11_079_912, 13_119_520, 14_961_400}, networkname.BSCChainName: {18_682_505}, networkname.BorMainnetChainName: {29_447_463}, networkname.RopstenChainName: {2_534_105, 2_534_116, 3_028_887, 3_028_940, 3_028_956, 3_450_102, 5_294_626, 5_752_787, 10_801_303, 10_925_062, 11_440_683, 11_897_655, 11_898_288, 12_291_199, 12_331_664},