From 0d4bdfbbb093bbd149bf27792644b014af84da0b Mon Sep 17 00:00:00 2001 From: Chris Ward Date: Mon, 1 Oct 2018 18:09:28 +0300 Subject: Move FAQ item regarding contract to contract calls and resulting transaction --- docs/control-structures.rst | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'docs/control-structures.rst') diff --git a/docs/control-structures.rst b/docs/control-structures.rst index c2d60df1..9da29d14 100644 --- a/docs/control-structures.rst +++ b/docs/control-structures.rst @@ -126,6 +126,10 @@ actual contract has not been created yet. Functions of other contracts have to be called externally. For an external call, all function arguments have to be copied to memory. +.. note:: + A function call from one contract to another does not create its own transaction, + it is a message call as part of the overall transaction. + When calling functions of other contracts, the amount of Wei sent with the call and the gas can be specified with special options ``.value()`` and ``.gas()``, respectively:: -- cgit