aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGav Wood <g@ethdev.com>2014-11-07 07:40:59 +0800
committerGav Wood <g@ethdev.com>2014-11-07 07:40:59 +0800
commitc5d0481836b59f3eb957e549b72ef9df3b92df96 (patch)
treeb17149235bc104b96f04d243eb7a1596c1970156
parent008a91ca9ded6950fce4f094e6cb46f50a6be4b7 (diff)
parent34f16940eabe75a582fc864978ea67793c04a7bb (diff)
downloaddexon-solidity-c5d0481836b59f3eb957e549b72ef9df3b92df96.tar.gz
dexon-solidity-c5d0481836b59f3eb957e549b72ef9df3b92df96.tar.zst
dexon-solidity-c5d0481836b59f3eb957e549b72ef9df3b92df96.zip
Merge pull request #483 from chriseth/libevmcore
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>