mirror of
https://github.com/tornadocash/tornado-core.git
synced 2025-05-06 08:15:41 -04:00
add traceTransaction
This commit is contained in:
parent
b000e66899
commit
3169d79ee0
1 changed files with 5 additions and 0 deletions
|
@ -17,6 +17,10 @@ const takeSnapshot = async () => {
|
|||
return await send('evm_snapshot')
|
||||
}
|
||||
|
||||
const traceTransaction = async (tx) => {
|
||||
return await send('debug_traceTransaction', [tx, {}])
|
||||
}
|
||||
|
||||
const revertSnapshot = async (id) => {
|
||||
await send('evm_revert', [id])
|
||||
}
|
||||
|
@ -44,4 +48,5 @@ module.exports = {
|
|||
minerStop,
|
||||
minerStart,
|
||||
increaseTime,
|
||||
traceTransaction
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue