aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-02-27 19:23:24 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-05-09 23:04:11 +0800
commitaf0d73f77df67fa2a284b27ebbdd147a2bad7c27 (patch)
tree60406cf97267aafe4062082cfaa8f02bbeb700f6
parent63c81bc0d41c19b3c5e07e1956eb670082f3e385 (diff)
downloaddexon-solidity-af0d73f77df67fa2a284b27ebbdd147a2bad7c27.tar.gz
dexon-solidity-af0d73f77df67fa2a284b27ebbdd147a2bad7c27.tar.zst
dexon-solidity-af0d73f77df67fa2a284b27ebbdd147a2bad7c27.zip
Remove stop() as it is the same as return(0,0) in Julia sepcs
-rw-r--r--docs/julia.rst4
1 files changed, 0 insertions, 4 deletions
diff --git a/docs/julia.rst b/docs/julia.rst
index 82ea16a1..14e13cc4 100644
--- a/docs/julia.rst
+++ b/docs/julia.rst
@@ -424,10 +424,6 @@ The following functions must be available:
| insize:u256, out:u256, | but also keep ``caller`` |
| outsize:u256) -> r:u256 | and ``callvalue`` |
+---------------------------------------------+-----------------------------------------------------------------+
-| stop() | stop execution, identical to return(0,0) |
-| | Perhaps it would make sense retiring this as it equals to |
-| | return(0,0). It can be an optimisation by the EVM backend. |
-+---------------------------------------------+-----------------------------------------------------------------+
| abort() | abort (equals to invalid instruction on EVM) |
+---------------------------------------------+-----------------------------------------------------------------+
| return(p:u256, s:u256) | end execution, return data mem[p..(p+s)) |