2018-12-25 12:10:04 +00:00
|
|
|
import
|
2020-07-21 06:15:06 +00:00
|
|
|
json, eth/common, stint, chronicles, eth/rlp,
|
|
|
|
eth/trie/db, ../nimbus/db/[db_chain, capturedb, select_backend],
|
|
|
|
../nimbus/[tracer, config],
|
2021-09-11 14:58:01 +00:00
|
|
|
../nimbus/p2p/chain
|
2018-12-25 12:10:04 +00:00
|
|
|
|
|
|
|
proc dumpTest(chainDB: BaseChainDB, blockNumber: int) =
|
|
|
|
let
|
|
|
|
blockNumber = blockNumber.u256
|
|
|
|
parentNumber = blockNumber - 1
|
|
|
|
|
|
|
|
var
|
|
|
|
memoryDB = newMemoryDB()
|
|
|
|
captureDB = newCaptureDB(chainDB.db, memoryDB)
|
|
|
|
captureTrieDB = trieDB captureDB
|
|
|
|
captureChainDB = newBaseChainDB(captureTrieDB, false)
|
|
|
|
|
|
|
|
let
|
|
|
|
parent = captureChainDB.getBlockHeader(parentNumber)
|
|
|
|
header = captureChainDB.getBlockHeader(blockNumber)
|
|
|
|
headerHash = header.blockHash
|
|
|
|
blockBody = captureChainDB.getBlockBody(headerHash)
|
|
|
|
chain = newChain(captureChainDB)
|
|
|
|
headers = @[header]
|
|
|
|
bodies = @[blockBody]
|
|
|
|
|
2022-07-04 05:35:56 +00:00
|
|
|
discard captureChainDB.setHead(parent, true)
|
2018-12-25 12:10:04 +00:00
|
|
|
discard chain.persistBlocks(headers, bodies)
|
|
|
|
|
|
|
|
var metaData = %{
|
|
|
|
"blockNumber": %blockNumber.toHex
|
|
|
|
}
|
|
|
|
|
|
|
|
metaData.dumpMemoryDB(memoryDB)
|
|
|
|
writeFile("block" & $blockNumber & ".json", metaData.pretty())
|
|
|
|
|
2020-07-21 06:15:06 +00:00
|
|
|
proc main() {.used.} =
|
2018-12-25 12:10:04 +00:00
|
|
|
# 97 block with uncles
|
|
|
|
# 46147 block with first transaction
|
|
|
|
# 46400 block with transaction
|
|
|
|
# 46402 block with first contract: failed
|
|
|
|
# 47205 block with first success contract
|
|
|
|
# 48712 block with 5 transactions
|
|
|
|
# 48915 block with contract
|
|
|
|
# 49018 first problematic block
|
|
|
|
# 52029 first block with receipts logs
|
|
|
|
# 66407 failed transaction
|
|
|
|
|
|
|
|
# nimbus --rpcapi: eth, debug --prune: archive
|
|
|
|
|
2021-09-11 14:58:01 +00:00
|
|
|
var conf = makeConfig()
|
2022-04-08 04:54:11 +00:00
|
|
|
let db = newChainDB(string conf.dataDir)
|
2018-12-25 12:10:04 +00:00
|
|
|
let trieDB = trieDB db
|
|
|
|
let chainDB = newBaseChainDB(trieDB, false)
|
|
|
|
|
|
|
|
chainDB.dumpTest(97)
|
2018-12-31 03:28:12 +00:00
|
|
|
chainDB.dumpTest(98) # no uncles and no tx
|
2018-12-25 12:10:04 +00:00
|
|
|
chainDB.dumpTest(46147)
|
|
|
|
chainDB.dumpTest(46400)
|
|
|
|
chainDB.dumpTest(46402)
|
|
|
|
chainDB.dumpTest(47205)
|
|
|
|
chainDB.dumpTest(48712)
|
|
|
|
chainDB.dumpTest(48915)
|
2018-12-31 03:28:12 +00:00
|
|
|
chainDB.dumpTest(49018)
|
2019-02-07 06:00:20 +00:00
|
|
|
chainDB.dumpTest(49439) # call opcode bug
|
|
|
|
chainDB.dumpTest(49891) # number opcode bug
|
|
|
|
chainDB.dumpTest(50111) # apply message bug
|
2019-02-26 01:45:32 +00:00
|
|
|
chainDB.dumpTest(78458 )
|
|
|
|
chainDB.dumpTest(81383 ) # tracer gas cost, stop opcode
|
|
|
|
chainDB.dumpTest(81666 ) # create opcode
|
|
|
|
chainDB.dumpTest(85858 ) # call oog
|
|
|
|
chainDB.dumpTest(116524) # codecall address
|
|
|
|
chainDB.dumpTest(146675) # precompiled contracts ecRecover
|
|
|
|
chainDB.dumpTest(196647) # not enough gas to call
|
|
|
|
chainDB.dumpTest(226147) # create return gas
|
|
|
|
chainDB.dumpTest(226522) # return
|
|
|
|
chainDB.dumpTest(231501) # selfdestruct
|
|
|
|
chainDB.dumpTest(243826) # create contract self destruct
|
|
|
|
chainDB.dumpTest(248032) # signextend over/undeflow
|
|
|
|
chainDB.dumpTest(299804) # GasInt overflow
|
|
|
|
chainDB.dumpTest(420301) # computation gas cost LTE(<=) 0 to LT(<) 0
|
|
|
|
chainDB.dumpTest(512335) # create apply message
|
2019-03-11 13:18:28 +00:00
|
|
|
chainDB.dumpTest(47216) # regression
|
|
|
|
chainDB.dumpTest(652148) # contract transfer bug
|
|
|
|
chainDB.dumpTest(668910) # uncleared logs bug
|
2019-08-14 16:04:32 +00:00
|
|
|
chainDB.dumpTest(1_017_395) # sha256 and ripemd precompiles wordcount bug
|
|
|
|
chainDB.dumpTest(1_149_150) # need to swallow precompiles errors
|
|
|
|
chainDB.dumpTest(1_155_095) # homestead codeCost OOG
|
|
|
|
chainDB.dumpTest(1_317_742) # CREATE childmsg sender
|
|
|
|
chainDB.dumpTest(1_352_922) # first ecrecover precompile with 0x0 input
|
|
|
|
chainDB.dumpTest(1_368_834) # writepadded regression padding len
|
|
|
|
chainDB.dumpTest(1_417_555) # writepadded regression zero len
|
2019-04-06 14:26:11 +00:00
|
|
|
chainDB.dumpTest(1_431_916) # deep recursion stack overflow problem
|
|
|
|
chainDB.dumpTest(1_487_668) # getScore uint64 vs uint256 overflow
|
2019-04-06 15:41:36 +00:00
|
|
|
chainDB.dumpTest(1_920_000) # the DAO fork
|
|
|
|
chainDB.dumpTest(1_927_662) # fork comparison bug in postExecuteVM
|
2018-12-25 12:10:04 +00:00
|
|
|
|
2019-04-15 04:17:24 +00:00
|
|
|
# too big and too slow, we can skip it
|
|
|
|
# because it already covered by GST
|
|
|
|
#chainDB.dumpTest(2_283_416) # first DDOS spam attack block
|
|
|
|
chainDB.dumpTest(2_463_413) # tangerine call* gas cost bug
|
2019-04-18 06:49:06 +00:00
|
|
|
chainDB.dumpTest(2_675_000) # spurious dragon first block
|
2019-04-18 08:33:17 +00:00
|
|
|
chainDB.dumpTest(2_675_002) # EIP155 tx.getSender
|
2019-05-14 04:51:27 +00:00
|
|
|
chainDB.dumpTest(4_370_000) # Byzantium first block
|
2019-04-15 04:17:24 +00:00
|
|
|
|
2019-02-07 06:00:20 +00:00
|
|
|
when isMainModule:
|
|
|
|
try:
|
|
|
|
main()
|
|
|
|
except:
|
|
|
|
echo getCurrentExceptionMsg()
|