diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/test_types/vm_tests.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/test_types/vm_tests.rst b/docs/test_types/vm_tests.rst index 3efe01dac..9cd70696f 100644 --- a/docs/test_types/vm_tests.rst +++ b/docs/test_types/vm_tests.rst @@ -24,7 +24,7 @@ in the ``pre`` portion and form the world state prior to execution. Similarly, a of accounts are detailed in the ``post`` portion to specify the end world state. The gas remaining (``gas``), the log entries (``logs``) as well as any output returned -from the code (``output``) is also detailed. +from the code (``out``) is also detailed. Test Implementation @@ -130,10 +130,10 @@ Each logentry has the format: The gas and output Keys ^^^^^^^^^^^^^^^^^^^^^^^ -Finally, there are two simple keys, ``gas`` and ``output``: +Finally, there are two simple keys, ``gas`` and ``out``: * ``gas``: The amount of gas remaining after execution. -* ``output``: The data, given as an array of bytes, returned from the execution (using the ``RETURN`` instruction). See $DATA_ARRAY. +* ``out``: The data, given as an array of bytes, returned from the execution (using the ``RETURN`` instruction). See $DATA_ARRAY. **$DATA_ARRAY** - type that intended to contain raw byte data and for convenient of the users is populated with three @@ -146,4 +146,4 @@ Finally, there are two simple keys, ``gas`` and ``output``: 3. "0xhex_num" - (hex format number) - e.g: ``````[1, 2, 10000, "0xabc345dFF", "199999999999999999999999999999999999999"]``````
\ No newline at end of file + e.g: ``````[1, 2, 10000, "0xabc345dFF", "199999999999999999999999999999999999999"]`````` |