diff options
author | Paweł Bylica <chfast@gmail.com> | 2014-12-11 00:41:53 +0800 |
---|---|---|
committer | Paweł Bylica <chfast@gmail.com> | 2014-12-11 00:41:53 +0800 |
commit | c1ffbbe79729b25da0d0231cd81fe2ab60519448 (patch) | |
tree | 138e5c52644d0e27959f04d5ca6e32451aceb852 /vm.cpp | |
parent | eafe303e083a77216c6ef4a96a99d50c9718dae8 (diff) | |
download | dexon-solidity-c1ffbbe79729b25da0d0231cd81fe2ab60519448.tar dexon-solidity-c1ffbbe79729b25da0d0231cd81fe2ab60519448.tar.gz dexon-solidity-c1ffbbe79729b25da0d0231cd81fe2ab60519448.tar.bz2 dexon-solidity-c1ffbbe79729b25da0d0231cd81fe2ab60519448.tar.lz dexon-solidity-c1ffbbe79729b25da0d0231cd81fe2ab60519448.tar.xz dexon-solidity-c1ffbbe79729b25da0d0231cd81fe2ab60519448.tar.zst dexon-solidity-c1ffbbe79729b25da0d0231cd81fe2ab60519448.zip |
VMFactory - a new way of creating VMs
Diffstat (limited to 'vm.cpp')
-rw-r--r-- | vm.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -22,6 +22,7 @@ #include <boost/filesystem.hpp> #include <libethereum/Executive.h> +#include <libevm/VMFactory.h> #include "vm.h" using namespace std; @@ -298,14 +299,14 @@ void doVMTests(json_spirit::mValue& v, bool _fillin) } bytes output; - VM vm(fev.gas); + auto vm = eth::VMFactory::create(fev.gas); u256 gas; bool vmExceptionOccured = false; try { - output = vm.go(fev, fev.simpleTrace()).toBytes(); - gas = vm.gas(); + output = vm->go(fev, fev.simpleTrace()).toBytes(); + gas = vm->gas(); } catch (VMException const& _e) { |