aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2014-09-06 00:24:29 +0800
committerGav Wood <i@gavwood.com>2014-09-06 00:24:29 +0800
commitf9a7ab94ae2003290153369e3128e6730c9e6eb5 (patch)
treef5c41a52c8b960b6bed37571c5db4acabe507861
parent38dd3fb050cae0bc28205ecff8591fa44605efc7 (diff)
downloaddexon-solidity-f9a7ab94ae2003290153369e3128e6730c9e6eb5.tar.gz
dexon-solidity-f9a7ab94ae2003290153369e3128e6730c9e6eb5.tar.zst
dexon-solidity-f9a7ab94ae2003290153369e3128e6730c9e6eb5.zip
Split ethcore off into devcrypto ready for Whisper's crypto and repot namespace.
Rename ethential to devcore.
-rw-r--r--MemTrie.cpp4
-rw-r--r--MemTrie.h4
-rw-r--r--TrieHash.cpp4
-rw-r--r--TrieHash.h4
-rw-r--r--crypto.cpp6
-rw-r--r--dagger.cpp2
-rw-r--r--genesis.cpp2
-rw-r--r--hexPrefix.cpp4
-rw-r--r--main.cpp4
-rw-r--r--rlp.cpp6
-rw-r--r--trie.cpp2
-rw-r--r--vm.cpp2
12 files changed, 22 insertions, 22 deletions
diff --git a/MemTrie.cpp b/MemTrie.cpp
index b5d875ac..d654179f 100644
--- a/MemTrie.cpp
+++ b/MemTrie.cpp
@@ -21,8 +21,8 @@
#include "MemTrie.h"
-#include <libethcore/TrieCommon.h>
-#include <libethcore/SHA3.h>
+#include <libdevcrypto/TrieCommon.h>
+#include <libdevcrypto/SHA3.h>
#include <libethcore/CommonEth.h>
using namespace std;
using namespace dev;
diff --git a/MemTrie.h b/MemTrie.h
index 66669653..86b09540 100644
--- a/MemTrie.h
+++ b/MemTrie.h
@@ -21,8 +21,8 @@
#pragma once
-#include <libethential/Common.h>
-#include <libethential/FixedHash.h>
+#include <libdevcore/Common.h>
+#include <libdevcore/FixedHash.h>
namespace dev
{
diff --git a/TrieHash.cpp b/TrieHash.cpp
index b2ebce73..af32e870 100644
--- a/TrieHash.cpp
+++ b/TrieHash.cpp
@@ -21,8 +21,8 @@
#include "TrieHash.h"
-#include <libethcore/TrieCommon.h>
-#include <libethcore/SHA3.h>
+#include <libdevcrypto/TrieCommon.h>
+#include <libdevcrypto/SHA3.h>
#include <libethcore/CommonEth.h>
using namespace std;
using namespace dev;
diff --git a/TrieHash.h b/TrieHash.h
index 4d86c4db..be1d8448 100644
--- a/TrieHash.h
+++ b/TrieHash.h
@@ -21,8 +21,8 @@
#pragma once
-#include <libethential/Common.h>
-#include <libethential/FixedHash.h>
+#include <libdevcore/Common.h>
+#include <libdevcore/FixedHash.h>
namespace dev
{
diff --git a/crypto.cpp b/crypto.cpp
index 2e4ffa05..d2943984 100644
--- a/crypto.cpp
+++ b/crypto.cpp
@@ -22,9 +22,9 @@
#include <random>
#include <secp256k1/secp256k1.h>
-#include <libethential/Common.h>
-#include <libethential/RLP.h>
-#include <libethential/Log.h>
+#include <libdevcore/Common.h>
+#include <libdevcore/RLP.h>
+#include <libdevcore/Log.h>
#include <libethereum/Transaction.h>
#include <boost/test/unit_test.hpp>
diff --git a/dagger.cpp b/dagger.cpp
index fd60a8ef..555c5d77 100644
--- a/dagger.cpp
+++ b/dagger.cpp
@@ -21,7 +21,7 @@
*/
#include <chrono>
-#include <libethential/Log.h>
+#include <libdevcore/Log.h>
#include <libethcore/Dagger.h>
using namespace std;
using namespace std::chrono;
diff --git a/genesis.cpp b/genesis.cpp
index be6655ab..5f17d276 100644
--- a/genesis.cpp
+++ b/genesis.cpp
@@ -23,7 +23,7 @@
#include <fstream>
#include <random>
#include "JsonSpiritHeaders.h"
-#include <libethential/CommonIO.h>
+#include <libdevcore/CommonIO.h>
#include <libethereum/BlockChain.h>
#include <boost/test/unit_test.hpp>
diff --git a/hexPrefix.cpp b/hexPrefix.cpp
index 7dbe80a5..9b65db0e 100644
--- a/hexPrefix.cpp
+++ b/hexPrefix.cpp
@@ -22,8 +22,8 @@
#include <fstream>
#include "JsonSpiritHeaders.h"
-#include <libethcore/TrieCommon.h>
-#include <libethential/Log.h>
+#include <libdevcrypto/TrieCommon.h>
+#include <libdevcore/Log.h>
#include <boost/test/unit_test.hpp>
using namespace std;
diff --git a/main.cpp b/main.cpp
index 08142095..ef009e29 100644
--- a/main.cpp
+++ b/main.cpp
@@ -20,7 +20,7 @@
* Main test functions.
*/
-#include <libethcore/TrieDB.h>
+#include <libdevcrypto/TrieDB.h>
#include "TrieHash.h"
#include "MemTrie.h"
@@ -35,7 +35,7 @@ int vmTest();
int hexPrefixTest();
int peerTest(int argc, char** argv);
-#include <libethential/Log.h>
+#include <libdevcore/Log.h>
#include <libethcore/BlockInfo.h>
using namespace std;
using namespace dev;
diff --git a/rlp.cpp b/rlp.cpp
index 963d6109..b51f3a22 100644
--- a/rlp.cpp
+++ b/rlp.cpp
@@ -23,9 +23,9 @@
#include <fstream>
#include <sstream>
#include "JsonSpiritHeaders.h"
-#include <libethential/Log.h>
-#include <libethential/RLP.h>
-#include <libethential/Common.h>
+#include <libdevcore/Log.h>
+#include <libdevcore/RLP.h>
+#include <libdevcore/Common.h>
#include <boost/test/unit_test.hpp>
#include <algorithm>
diff --git a/trie.cpp b/trie.cpp
index 4ddf30a6..cdebd09f 100644
--- a/trie.cpp
+++ b/trie.cpp
@@ -23,7 +23,7 @@
#include <fstream>
#include <random>
#include "JsonSpiritHeaders.h"
-#include <libethcore/TrieDB.h>
+#include <libdevcrypto/TrieDB.h>
#include "TrieHash.h"
#include "MemTrie.h"
#include <boost/test/unit_test.hpp>
diff --git a/vm.cpp b/vm.cpp
index 2b75f0b3..e177855c 100644
--- a/vm.cpp
+++ b/vm.cpp
@@ -22,7 +22,7 @@
#include <fstream>
#include <cstdint>
-#include <libethential/Log.h>
+#include <libdevcore/Log.h>
#include <libevmface/Instruction.h>
#include <libevm/ExtVMFace.h>
#include <libevm/VM.h>