diff options
author | chriseth <chris@ethereum.org> | 2017-09-05 01:04:12 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-05 01:04:12 +0800 |
commit | 152a0e69c4373151fe9ff6acdac6bdf40df7fd4b (patch) | |
tree | 7d3eb3bcfe331f0c26c3c4e213db39ac2a412693 /docs/frequently-asked-questions.rst | |
parent | 8283f836537cf89411ce064dcf39802e2ef0aa13 (diff) | |
parent | 435eeec5e15d94ffc2dff01dd09c8c92c697dc4e (diff) | |
download | dexon-solidity-152a0e69c4373151fe9ff6acdac6bdf40df7fd4b.tar.gz dexon-solidity-152a0e69c4373151fe9ff6acdac6bdf40df7fd4b.tar.zst dexon-solidity-152a0e69c4373151fe9ff6acdac6bdf40df7fd4b.zip |
Merge pull request #2871 from ethereum/fixedpointdocs
Explain fixed point types in docs
Diffstat (limited to 'docs/frequently-asked-questions.rst')
-rw-r--r-- | docs/frequently-asked-questions.rst | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/docs/frequently-asked-questions.rst b/docs/frequently-asked-questions.rst index 9edfb4fb..f59d86e7 100644 --- a/docs/frequently-asked-questions.rst +++ b/docs/frequently-asked-questions.rst @@ -103,11 +103,6 @@ This is a limitation of the EVM and will be solved with the next protocol update Returning variably-sized data as part of an external transaction or call is fine. -How do you represent ``double``/``float`` in Solidity? -====================================================== - -This is not yet possible. - Is it possible to in-line initialize an array like so: ``string[] myarray = ["a", "b"];`` ========================================================================================= |