diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-08-14 22:36:47 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-14 22:36:47 +0800 |
commit | 0a04a35a2e02437ae038af41c947b3e829946bca (patch) | |
tree | 345679632d47ede35d47a799146e76e43afe7297 /libsolidity/codegen | |
parent | 4d9790b6d5a490d30ed55b69fa117bc568fa4c64 (diff) | |
parent | a26a5f20ce46800f8deff5724b5c101bb9b5fc1d (diff) | |
download | dexon-solidity-0a04a35a2e02437ae038af41c947b3e829946bca.tar dexon-solidity-0a04a35a2e02437ae038af41c947b3e829946bca.tar.gz dexon-solidity-0a04a35a2e02437ae038af41c947b3e829946bca.tar.bz2 dexon-solidity-0a04a35a2e02437ae038af41c947b3e829946bca.tar.lz dexon-solidity-0a04a35a2e02437ae038af41c947b3e829946bca.tar.xz dexon-solidity-0a04a35a2e02437ae038af41c947b3e829946bca.tar.zst dexon-solidity-0a04a35a2e02437ae038af41c947b3e829946bca.zip |
Merge pull request #2722 from ethereum/statemutability
Introduce state mutability (to replace const/payable)
Diffstat (limited to 'libsolidity/codegen')
-rw-r--r-- | libsolidity/codegen/ExpressionCompiler.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libsolidity/codegen/ExpressionCompiler.cpp b/libsolidity/codegen/ExpressionCompiler.cpp index 521d485f..55d35c44 100644 --- a/libsolidity/codegen/ExpressionCompiler.cpp +++ b/libsolidity/codegen/ExpressionCompiler.cpp @@ -645,8 +645,7 @@ bool ExpressionCompiler::visit(FunctionCall const& _functionCall) FunctionType::Kind::BareCall, false, nullptr, - false, - false, + StateMutability::NonPayable, true, true ), |