aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ExpressionCompiler.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/ExpressionCompiler.cpp b/ExpressionCompiler.cpp
index 11de7308..bac967d8 100644
--- a/ExpressionCompiler.cpp
+++ b/ExpressionCompiler.cpp
@@ -1117,10 +1117,11 @@ void ExpressionCompiler::appendExternalFunctionCall(
else
m_context << eth::Instruction::CALL;
- unsigned remainsSize = 1 + // contract address
- _functionType.valueSet() +
- _functionType.gasSet() +
- !_functionType.isBareCall();
+ unsigned remainsSize =
+ 1 + // contract address
+ _functionType.valueSet() +
+ _functionType.gasSet() +
+ !_functionType.isBareCall();
if (returnSuccessCondition)
m_context << eth::swapInstruction(remainsSize);