diff options
author | David Ansermino <david.ansermino@mail.utoronto.ca> | 2018-04-17 23:19:40 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-17 23:19:40 +0800 |
commit | a616778929f3bdd005b371658424f9a35c93e976 (patch) | |
tree | a2b02b2766df4ce9ee0465480c5274695ca93013 /docs | |
parent | 477114bbd3cf7211d6bc5023138e9480b1243ad3 (diff) | |
download | tangerine-tests-a616778929f3bdd005b371658424f9a35c93e976.tar tangerine-tests-a616778929f3bdd005b371658424f9a35c93e976.tar.gz tangerine-tests-a616778929f3bdd005b371658424f9a35c93e976.tar.bz2 tangerine-tests-a616778929f3bdd005b371658424f9a35c93e976.tar.lz tangerine-tests-a616778929f3bdd005b371658424f9a35c93e976.tar.xz tangerine-tests-a616778929f3bdd005b371658424f9a35c93e976.tar.zst tangerine-tests-a616778929f3bdd005b371658424f9a35c93e976.zip |
Fixed inconsistent use of output/out
Field appears to be called ``out`` but is referenced as ``output`` in some places
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"]`````` |