Skip to content

Commit

Permalink
update vm step event doc
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanio committed Oct 14, 2020
1 parent 588912a commit 12ff416
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vm/lib/evm/interpreter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -195,12 +195,12 @@ export default class Interpreter {
* @property {String} opcode the next opcode to be ran
* @property {BN} gasLeft amount of gasLeft
* @property {Array} stack an `Array` of `Buffers` containing the stack
* @property {Account} account the [`Account`](https://github.com/ethereum/ethereumjs-account) which owns the code running
* @property {Account} account the Account which owns the code running
* @property {Buffer} address the address of the `account`
* @property {Number} depth the current number of calls deep the contract is
* @property {Buffer} memory the memory of the VM as a `buffer`
* @property {BN} memoryWordCount current size of memory in words
* @property {StateManager} stateManager a [`StateManager`](stateManager.md) instance (Beta API)
* @property {StateManager} stateManager a [[StateManager]] instance
* @property {Buffer} codeAddress the address of the code which is currently being ran (this differs from `address` in a `DELEGATECALL` and `CALLCODE` call)
*/
return this._vm._emit('step', eventObj)
Expand Down

0 comments on commit 12ff416

Please sign in to comment.