diff options
author | chriseth <c@ethdev.com> | 2015-12-21 22:38:35 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-12-21 22:38:35 +0800 |
commit | eae71cee9dee2eec5149004d4e97297a00b6f1cc (patch) | |
tree | 2abe8409a0cbf84d98d7bbc4c61e55107e56251c | |
parent | 2466fb68a026869f2c3c9a5ae55b77535b7c03d7 (diff) | |
parent | f03a8c9cb76aebd28bebad86f8caf470bbdcd08e (diff) | |
download | dexon-solidity-eae71cee9dee2eec5149004d4e97297a00b6f1cc.tar dexon-solidity-eae71cee9dee2eec5149004d4e97297a00b6f1cc.tar.gz dexon-solidity-eae71cee9dee2eec5149004d4e97297a00b6f1cc.tar.bz2 dexon-solidity-eae71cee9dee2eec5149004d4e97297a00b6f1cc.tar.lz dexon-solidity-eae71cee9dee2eec5149004d4e97297a00b6f1cc.tar.xz dexon-solidity-eae71cee9dee2eec5149004d4e97297a00b6f1cc.tar.zst dexon-solidity-eae71cee9dee2eec5149004d4e97297a00b6f1cc.zip |
Merge pull request #312 from ethers/patch-4
sending value to an overloaded function
-rw-r--r-- | docs/frequently-asked-questions.rst | 10 |
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 ****************** |