aboutsummaryrefslogtreecommitdiffstats
path: root/solc/CommandLineInterface.cpp
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2015-11-21 21:34:21 +0800
committerGav Wood <i@gavwood.com>2015-11-21 21:34:21 +0800
commitbff172cf656843dd0f05def1f920be3d98df9640 (patch)
tree0f2d0c5841dc487d0235f74f77a350d4196246da /solc/CommandLineInterface.cpp
parent9997aac1637727d735e1c474da6ecf9d98f072cf (diff)
downloaddexon-solidity-bff172cf656843dd0f05def1f920be3d98df9640.tar.gz
dexon-solidity-bff172cf656843dd0f05def1f920be3d98df9640.tar.zst
dexon-solidity-bff172cf656843dd0f05def1f920be3d98df9640.zip
Fix up for new API from EIP-1.1.
Diffstat (limited to 'solc/CommandLineInterface.cpp')
-rw-r--r--solc/CommandLineInterface.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp
index b4121574..376196e1 100644
--- a/solc/CommandLineInterface.cpp
+++ b/solc/CommandLineInterface.cpp
@@ -34,7 +34,6 @@
#include <libdevcore/CommonData.h>
#include <libdevcore/CommonIO.h>
#include <libevmcore/Instruction.h>
-#include <libevmcore/Params.h>
#include <libsolidity/interface/Version.h>
#include <libsolidity/parsing/Scanner.h>
#include <libsolidity/parsing/Parser.h>
@@ -239,6 +238,7 @@ void CommandLineInterface::handleMeta(DocumentationType _type, string const& _co
void CommandLineInterface::handleGasEstimation(string const& _contract)
{
+ eth::EVMSchedule schedule; // TODO: make it relevant to the SealEngine/EnvInfo.
using Gas = GasEstimator::GasConsumption;
if (!m_compiler->assemblyItems(_contract) && !m_compiler->runtimeAssemblyItems(_contract))
return;
@@ -248,8 +248,8 @@ void CommandLineInterface::handleGasEstimation(string const& _contract)
Gas gas = GasEstimator::functionalEstimation(*items);
u256 bytecodeSize(m_compiler->runtimeObject(_contract).bytecode.size());
cout << "construction:" << endl;
- cout << " " << gas << " + " << (bytecodeSize * eth::c_createDataGas) << " = ";
- gas += bytecodeSize * eth::c_createDataGas;
+ cout << " " << gas << " + " << (bytecodeSize * schedule.createDataGas) << " = ";
+ gas += bytecodeSize * schedule.createDataGas;
cout << gas << endl;
}
if (eth::AssemblyItems const* items = m_compiler->runtimeAssemblyItems(_contract))