mirror of
https://github.com/tornadocash/tornado-core.git
synced 2024-11-24 02:42:20 +01:00
add traceTransaction
This commit is contained in:
parent
0484408e82
commit
d0f8adf0fb
@ -17,6 +17,10 @@ const takeSnapshot = async () => {
|
|||||||
return await send('evm_snapshot')
|
return await send('evm_snapshot')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const traceTransaction = async (tx) => {
|
||||||
|
return await send('debug_traceTransaction', [tx, {}])
|
||||||
|
}
|
||||||
|
|
||||||
const revertSnapshot = async (id) => {
|
const revertSnapshot = async (id) => {
|
||||||
await send('evm_revert', [id])
|
await send('evm_revert', [id])
|
||||||
}
|
}
|
||||||
@ -44,4 +48,5 @@ module.exports = {
|
|||||||
minerStop,
|
minerStop,
|
||||||
minerStart,
|
minerStart,
|
||||||
increaseTime,
|
increaseTime,
|
||||||
|
traceTransaction
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user