diff options
author | Yoichi Hirai <i@yoichihirai.com> | 2018-04-20 23:42:45 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-20 23:42:45 +0800 |
commit | c7cbda682c4fd9a259c2e561a38196bdbb275073 (patch) | |
tree | cd60a2fc14969fb79b2e19ce85aa5929350510ca | |
parent | beda39b48b5d1860f57f748c841ea52a774879cb (diff) | |
parent | a616778929f3bdd005b371658424f9a35c93e976 (diff) | |
download | dexon-tests-c7cbda682c4fd9a259c2e561a38196bdbb275073.tar dexon-tests-c7cbda682c4fd9a259c2e561a38196bdbb275073.tar.gz dexon-tests-c7cbda682c4fd9a259c2e561a38196bdbb275073.tar.bz2 dexon-tests-c7cbda682c4fd9a259c2e561a38196bdbb275073.tar.lz dexon-tests-c7cbda682c4fd9a259c2e561a38196bdbb275073.tar.xz dexon-tests-c7cbda682c4fd9a259c2e561a38196bdbb275073.tar.zst dexon-tests-c7cbda682c4fd9a259c2e561a38196bdbb275073.zip |
Merge pull request #450 from ansermino/patch-1
Fixed inconsistent use of output/out
-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"]`````` |