61 lines
1.7 KiB
Nim
61 lines
1.7 KiB
Nim
import
|
|
json, downloader, stint, strutils, os,
|
|
../nimbus/tracer, chronicles, prestate,
|
|
eth/common, premixcore
|
|
|
|
proc generateGethData(thisBlock: Block, blockNumber: UInt256, accounts: JsonNode): JsonNode =
|
|
let
|
|
receipts = toJson(thisBlock.receipts)
|
|
|
|
let geth = %{
|
|
"blockNumber": %blockNumber.toHex,
|
|
"txTraces": thisBlock.traces,
|
|
"receipts": receipts,
|
|
"block": thisBlock.jsonData,
|
|
"accounts": accounts
|
|
}
|
|
|
|
result = geth
|
|
|
|
proc printDebugInstruction(blockNumber: UInt256) =
|
|
var text = """
|
|
|
|
Successfully created debugging environment for block $1.
|
|
You can continue to find nimbus EVM bug by viewing premix report page `./index.html`.
|
|
After that you can try to debug that single block using `nim c -r debug block$1.json` command.
|
|
|
|
Happy bug hunting
|
|
""" % [$blockNumber]
|
|
|
|
echo text
|
|
|
|
proc main() =
|
|
if paramCount() == 0:
|
|
echo "usage: premix debugxxx.json"
|
|
quit(QuitFailure)
|
|
|
|
try:
|
|
let
|
|
nimbus = json.parseFile(paramStr(1))
|
|
blockNumber = UInt256.fromHex(nimbus["blockNumber"].getStr())
|
|
thisBlock = requestBlock(blockNumber, {DownloadReceipts, DownloadTxTrace})
|
|
accounts = requestPostState(thisBlock)
|
|
geth = generateGethData(thisBlock, blockNumber, accounts)
|
|
parentNumber = blockNumber - 1.u256
|
|
parentBlock = requestBlock(parentNumber)
|
|
|
|
processNimbusData(nimbus)
|
|
|
|
# premix data goes to report page
|
|
generatePremixData(nimbus, geth)
|
|
|
|
# prestate data goes to debug tool and contains data
|
|
# needed to execute single block
|
|
generatePrestate(nimbus, geth, blockNumber, parentBlock.header, thisBlock.header, thisBlock.body)
|
|
|
|
printDebugInstruction(blockNumber)
|
|
except:
|
|
echo getCurrentExceptionMsg()
|
|
|
|
main()
|