aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/codegen
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-08-29 21:24:51 +0800
committerGitHub <noreply@github.com>2017-08-29 21:24:51 +0800
commit93b1cc97022aa01e7daa9816bcc23108bbe008b5 (patch)
tree8ec4eabcaaee6728ac3665c94a4c2f29390bb4aa /libsolidity/codegen
parente77e5941202df8363344b6c21a4ba813423ed889 (diff)
parent79e84a8fa43b55838100f9c24dec04b1e721c65c (diff)
downloaddexon-solidity-93b1cc97022aa01e7daa9816bcc23108bbe008b5.tar
dexon-solidity-93b1cc97022aa01e7daa9816bcc23108bbe008b5.tar.gz
dexon-solidity-93b1cc97022aa01e7daa9816bcc23108bbe008b5.tar.bz2
dexon-solidity-93b1cc97022aa01e7daa9816bcc23108bbe008b5.tar.lz
dexon-solidity-93b1cc97022aa01e7daa9816bcc23108bbe008b5.tar.xz
dexon-solidity-93b1cc97022aa01e7daa9816bcc23108bbe008b5.tar.zst
dexon-solidity-93b1cc97022aa01e7daa9816bcc23108bbe008b5.zip
Merge pull request #2833 from ethereum/statemutability-builtins
Mark all built in functions with appropriate statemutability
Diffstat (limited to 'libsolidity/codegen')
-rw-r--r--libsolidity/codegen/ExpressionCompiler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/ExpressionCompiler.cpp b/libsolidity/codegen/ExpressionCompiler.cpp
index 45c2170c..5c9b743a 100644
--- a/libsolidity/codegen/ExpressionCompiler.cpp
+++ b/libsolidity/codegen/ExpressionCompiler.cpp
@@ -644,8 +644,8 @@ bool ExpressionCompiler::visit(FunctionCall const& _functionCall)
strings(),
FunctionType::Kind::BareCall,
false,
- nullptr,
StateMutability::NonPayable,
+ nullptr,
true,
true
),