nimbus-eth1/premix/debug.nim

63 lines
1.9 KiB
Nim
Raw Normal View History

2019-01-09 08:35:02 +00:00
import
2019-07-07 10:12:01 +00:00
json, os, stint, eth/trie/db, stew/byteutils, eth/common,
2019-01-12 12:49:08 +00:00
../nimbus/db/[db_chain], chronicles, ../nimbus/vm_state,
../nimbus/p2p/executor, premixcore, prestate, ../nimbus/tracer
2019-01-09 08:35:02 +00:00
proc prepareBlockEnv(node: JsonNode, memoryDB: TrieDatabaseRef) =
let state = node["state"]
for k, v in state:
let key = hexToSeqByte(k)
let value = hexToSeqByte(v.getStr())
memoryDB.put(key, value)
proc executeBlock(blockEnv: JsonNode, memoryDB: TrieDatabaseRef, blockNumber: Uint256) =
2019-01-09 08:35:02 +00:00
let
parentNumber = blockNumber - 1
2019-01-12 12:49:08 +00:00
chainDB = newBaseChainDB(memoryDB, false)
2019-01-09 08:35:02 +00:00
parent = chainDB.getBlockHeader(parentNumber)
header = chainDB.getBlockHeader(blockNumber)
2019-01-12 12:49:08 +00:00
body = chainDB.getBlockBody(header.blockHash)
let transaction = memoryDB.beginTransaction()
defer: transaction.dispose()
2019-01-12 12:49:08 +00:00
let
2019-02-14 15:20:41 +00:00
vmState = newBaseVMState(parent.stateRoot, header, chainDB)
Feature/goerli replay clique poa (#743) * extract unused clique/mining support into separate file why: mining is currently unsupported by nimbus * Replay first 51840 transactions from Goerli block chain why: Currently Goerli is loaded but the block headers are not verified. Replaying allows real data PoA development. details: Simple stupid gzipped dump/undump layer for debugging based on the zlib module (no nim-faststream support.) This is a replay running against p2p/chain.persistBlocks() where the data were captured from. * prepare stubs for PoA engine * split executor source into sup-modules why: make room for updates, clique integration should go into executor/update_poastate.nim * Simplify p2p/executor.processBlock() function prototype why: vmState argument always wraps basicChainDB * split processBlock() into sub-functions why: isolate the part where it will support clique/poa * provided additional processTransaction() function prototype without _fork_ argument why: with the exception of some tests, the _fork_ argument is always derived from the other prototype argument _vmState_ details: similar situation with makeReceipt() * provide new processBlock() version explicitly supporting PoA details: The new processBlock() version supporting PoA is the general one also supporting non-PoA networks, it needs an additional _Clique_ descriptor function argument for PoA state (if any.) The old processBlock() function without the _Clique_ descriptor argument retorns an error on PoA networgs (e.g. Goerli.) * re-implemented Clique descriptor as _ref object_ why: gives more flexibility when moving around the descriptor object details: also cleaned up a bit the clique sources * comments for clarifying handling of Clique/PoA state descriptor
2021-07-06 13:14:45 +00:00
validationResult = vmState.processBlock(header, body)
2019-01-12 12:49:08 +00:00
if validationResult != ValidationResult.OK:
2019-01-09 08:35:02 +00:00
error "block validation error", validationResult
else:
info "block validation success", validationResult, blockNumber
transaction.rollback()
dumpDebuggingMetaData(chainDB, header, body, vmState, false)
let
fileName = "debug" & $blockNumber & ".json"
nimbus = json.parseFile(fileName)
geth = blockEnv["geth"]
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, parent, header, body)
2019-01-09 08:35:02 +00:00
proc main() =
if paramCount() == 0:
echo "usage: debug blockxxx.json"
quit(QuitFailure)
let
blockEnv = json.parseFile(paramStr(1))
memoryDB = newMemoryDB()
blockNumber = UInt256.fromHex(blockEnv["blockNumber"].getStr())
prepareBlockEnv(blockEnv, memoryDB)
executeBlock(blockEnv, memoryDB, blockNumber)
2019-01-09 08:35:02 +00:00
main()