diff options
author | Divay Prakash <divayprakash@users.noreply.github.com> | 2019-08-08 23:14:39 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-08 23:14:39 +0530 |
commit | 745a2ce9a007fd447a29dee6d99a01f4ef9a9d49 (patch) | |
tree | 003f99688d81892c28390b7b5a96010d2cc929d5 /solidity.html.markdown | |
parent | fd050df838968889ccc13a65c0ce8bad60cb00bc (diff) | |
parent | 4132daa9e5eacab90eedbc63a203b9d21ca7ae5c (diff) |
Merge pull request #3596 from Aldaschwede/master
[solidity/en] added qualifier payable hence it's not compilable, [python/de] correction
Diffstat (limited to 'solidity.html.markdown')
-rw-r--r-- | solidity.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solidity.html.markdown b/solidity.html.markdown index d215180d..cc719ec7 100644 --- a/solidity.html.markdown +++ b/solidity.html.markdown @@ -483,7 +483,7 @@ for(uint x = 0; x < refundAddressList.length; x++) { // A. Calling external contract contract InfoFeed { - function info() returns (uint ret) { return 42; } + function info() payable returns (uint ret) { return 42; } } contract Consumer { |