aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian <c@ethdev.com>2014-11-06 21:50:18 +0800
committerChristian <c@ethdev.com>2014-11-06 21:50:18 +0800
commit34f16940eabe75a582fc864978ea67793c04a7bb (patch)
tree1bdc180f5d0ba10002f4df640125ee8a19adc412
parent4b9dcd95ce5a33440de5014896bfeb99f6436c76 (diff)
downloaddexon-solidity-34f16940eabe75a582fc864978ea67793c04a7bb.tar.gz
dexon-solidity-34f16940eabe75a582fc864978ea67793c04a7bb.tar.zst
dexon-solidity-34f16940eabe75a582fc864978ea67793c04a7bb.zip
Moved instructions and assembly to new libevmcore.
-rw-r--r--createRandomTest.cpp2
-rw-r--r--vm.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/createRandomTest.cpp b/createRandomTest.cpp
index 28e4342d..321e515d 100644
--- a/createRandomTest.cpp
+++ b/createRandomTest.cpp
@@ -31,7 +31,7 @@
#include <json_spirit/json_spirit_writer_template.h>
#include <libdevcore/CommonIO.h>
#include <libdevcore/CommonData.h>
-#include <libevmface/Instruction.h>
+#include <libevmcore/Instruction.h>
#include "vm.h"
using namespace std;
diff --git a/vm.h b/vm.h
index 1ed33e5f..a52a02e3 100644
--- a/vm.h
+++ b/vm.h
@@ -29,7 +29,7 @@ along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
#include "JsonSpiritHeaders.h"
#include <libdevcore/Log.h>
#include <libdevcore/CommonIO.h>
-#include <libevmface/Instruction.h>
+#include <libevmcore/Instruction.h>
#include <libevm/ExtVMFace.h>
#include <libevm/VM.h>
#include <liblll/Compiler.h>