add TransactionKey to persistTransactions and add more fat to debug_traceTransaction
This commit is contained in:
parent
161d6adbc7
commit
21070d510d
|
@ -254,6 +254,7 @@ proc processRpcApiList(v: string, flags: var set[RpcFlags]): ConfigStatus =
|
|||
for item in list:
|
||||
case item.toLowerAscii()
|
||||
of "eth": flags.incl RpcFlags.Eth
|
||||
of "shh": flags.incl RpcFlags.Shh
|
||||
of "debug": flags.incl RpcFlags.Debug
|
||||
else:
|
||||
warn "unknown rpc api", name = item
|
||||
|
@ -555,7 +556,7 @@ NETWORKING OPTIONS:
|
|||
API AND CONSOLE OPTIONS:
|
||||
--rpc Enable the HTTP-RPC server
|
||||
--rpcbind:<value> HTTP-RPC server will bind to given comma separated address:port pairs (default: 127.0.0.1:8545)
|
||||
--rpcapi:<value> Enable specific set of rpc api from comma separated list(eth, debug)
|
||||
--rpcapi:<value> Enable specific set of rpc api from comma separated list(eth, shh, debug)
|
||||
|
||||
LOGGING AND DEBUGGING OPTIONS:
|
||||
--debug Enable debug mode
|
||||
|
|
|
@ -100,14 +100,19 @@ iterator findNewAncestors(self: BaseChainDB; header: BlockHeader): BlockHeader =
|
|||
else:
|
||||
h = self.getBlockHeader(h.parentHash)
|
||||
|
||||
proc addBlockNumberToHashLookup(self: BaseChainDB; header: BlockHeader) =
|
||||
proc addBlockNumberToHashLookup*(self: BaseChainDB; header: BlockHeader) =
|
||||
self.db.put(blockNumberToHashKey(header.blockNumber).toOpenArray,
|
||||
rlp.encode(header.hash))
|
||||
|
||||
proc persistTransactions*(self: BaseChainDB, transactions: openarray[Transaction]) =
|
||||
var tr = initHexaryTrie(self.db)
|
||||
for i, t in transactions:
|
||||
tr.put(rlp.encode(i).toRange, rlp.encode(t).toRange)
|
||||
proc persistTransactions*(self: BaseChainDB, blockNumber: BlockNumber, transactions: openArray[Transaction]) =
|
||||
var trie = initHexaryTrie(self.db)
|
||||
for idx, tx in transactions:
|
||||
let
|
||||
encodedTx = rlp.encode(tx).toRange
|
||||
txHash = keccak256.digest(encodedTx.toOpenArray)
|
||||
txKey: TransactionKey = (blockNumber, idx)
|
||||
trie.put(rlp.encode(idx).toRange, encodedTx)
|
||||
self.db.put(transactionHashToBlockKey(txHash).toOpenArray, rlp.encode(txKey))
|
||||
|
||||
iterator getBlockTransactionData(self: BaseChainDB, transactionRoot: Hash256): BytesRange =
|
||||
var transactionDb = initHexaryTrie(self.db, transactionRoot)
|
||||
|
|
|
@ -110,8 +110,6 @@ proc start(): NimbusObject =
|
|||
if status != syncSuccess:
|
||||
echo "Block sync failed: ", status
|
||||
|
||||
#runForever()
|
||||
|
||||
nimbus.state = Running
|
||||
result = nimbus
|
||||
|
||||
|
|
|
@ -163,7 +163,7 @@ method persistBlocks*(c: Chain, headers: openarray[BlockHeader], bodies: openarr
|
|||
discard c.db.persistHeaderToDb(headers[i])
|
||||
assert(c.db.getCanonicalHead().blockHash == headers[i].blockHash)
|
||||
|
||||
c.db.persistTransactions(bodies[i].transactions)
|
||||
c.db.persistTransactions(headers[i].blockNumber, bodies[i].transactions)
|
||||
|
||||
transaction.commit()
|
||||
|
||||
|
|
|
@ -10,7 +10,8 @@
|
|||
import
|
||||
strutils, hexstrings, eth_p2p, options,
|
||||
../db/[db_chain, state_db, storage_types],
|
||||
json_rpc/rpcserver, json, macros, rpc_utils
|
||||
json_rpc/rpcserver, json, macros, rpc_utils,
|
||||
eth_common
|
||||
|
||||
type
|
||||
TraceTxOptions = object
|
||||
|
@ -20,6 +21,10 @@ type
|
|||
|
||||
proc setupDebugRpc*(chain: BaseChainDB, rpcsrv: RpcServer) =
|
||||
|
||||
proc getBlockBody(hash: Hash256): BlockBody =
|
||||
if not chain.getBlockBody(hash, result):
|
||||
raise newException(ValueError, "Error when retrieving block body")
|
||||
|
||||
rpcsrv.rpc("debug_traceTransaction") do(data: HexDataStr, options: Option[TraceTxOptions]) -> JsonNode:
|
||||
## The traceTransaction debugging method will attempt to run the transaction in the exact
|
||||
## same manner as it was executed on the network. It will replay any transaction that may
|
||||
|
@ -32,5 +37,9 @@ proc setupDebugRpc*(chain: BaseChainDB, rpcsrv: RpcServer) =
|
|||
## * disableStorage: BOOL. Setting this to true will disable storage capture (default = false).
|
||||
## * disableMemory: BOOL. Setting this to true will disable memory capture (default = false).
|
||||
## * disableStack: BOOL. Setting this to true will disable stack capture (default = false).
|
||||
var hashData = strToHash(data.string)
|
||||
|
||||
let
|
||||
txHash = strToHash(data.string)
|
||||
txDetails = chain.getTransactionKey(txHash)
|
||||
blockHeader = chain.getBlockHeader(txDetails.blockNumber)
|
||||
blockHash = chain.getBlockHash(txDetails.blockNumber)
|
||||
blockBody = getBlockBody(blockHash)
|
||||
|
|
Loading…
Reference in New Issue