From a616778929f3bdd005b371658424f9a35c93e976 Mon Sep 17 00:00:00 2001 From: David Ansermino Date: Tue, 17 Apr 2018 11:19:40 -0400 Subject: Fixed inconsistent use of output/out Field appears to be called ``out`` but is referenced as ``output`` in some places --- docs/test_types/vm_tests.rst | 8 ++++---- 1 file 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"]`````` -- cgit