aboutsummaryrefslogtreecommitdiffstats
path: root/docs/frequently-asked-questions.rst
diff options
context:
space:
mode:
authorethers <ethereum@outlook.com>2015-12-19 10:13:17 +0800
committerethers <ethereum@outlook.com>2015-12-19 10:13:17 +0800
commitf03a8c9cb76aebd28bebad86f8caf470bbdcd08e (patch)
tree355913df89ca33ca77f52657ead99fd977f3104d /docs/frequently-asked-questions.rst
parent6c6295b74e6e93d838672e70109880e27bb5f614 (diff)
downloaddexon-solidity-f03a8c9cb76aebd28bebad86f8caf470bbdcd08e.tar
dexon-solidity-f03a8c9cb76aebd28bebad86f8caf470bbdcd08e.tar.gz
dexon-solidity-f03a8c9cb76aebd28bebad86f8caf470bbdcd08e.tar.bz2
dexon-solidity-f03a8c9cb76aebd28bebad86f8caf470bbdcd08e.tar.lz
dexon-solidity-f03a8c9cb76aebd28bebad86f8caf470bbdcd08e.tar.xz
dexon-solidity-f03a8c9cb76aebd28bebad86f8caf470bbdcd08e.tar.zst
dexon-solidity-f03a8c9cb76aebd28bebad86f8caf470bbdcd08e.zip
sending value to an overloaded function
from https://gitter.im/ethereum/solidity?at=5673fb41b5777fb85ba496fa
Diffstat (limited to 'docs/frequently-asked-questions.rst')
-rw-r--r--docs/frequently-asked-questions.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/frequently-asked-questions.rst b/docs/frequently-asked-questions.rst
index fd68aa11..cf037131 100644
--- a/docs/frequently-asked-questions.rst
+++ b/docs/frequently-asked-questions.rst
@@ -554,6 +554,16 @@ What is the difference between `bytes` and `byte[]`?
CALLDATA) or in memory, every single element of a `byte[]` is padded to 32
bytes which wastes 31 bytes per element.
+Is it possible to send a value while calling an overloaded function?
+====================================================================
+
+It's a known missing feature. https://www.pivotaltracker.com/story/show/92020468
+as part of https://www.pivotaltracker.com/n/projects/1189488
+
+Best solution currently see is to introduce a special case for gas and value and
+just re-check whether they are present at the point of overload resolution.
+
+
******************
Advanced Questions
******************