sending value to an overloaded function

from https://gitter.im/ethereum/solidity?at=5673fb41b5777fb85ba496fa
This commit is contained in:
ethers 2015-12-18 18:13:17 -08:00
parent 6c6295b74e
commit f03a8c9cb7

View File

@ -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
******************