diff options
author | Gav Wood <i@gavwood.com> | 2014-06-28 05:47:24 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2014-06-28 05:47:24 +0800 |
commit | b62f71c699de687268b5d83a526f66027fca07ea (patch) | |
tree | 075bf6824f198776505f5f6e0fed6a1ac978cb7a /TrieHash.cpp | |
parent | d737f6df42f98c42d98d7bd4bad8a8c96e61d5a1 (diff) | |
download | dexon-solidity-b62f71c699de687268b5d83a526f66027fca07ea.tar dexon-solidity-b62f71c699de687268b5d83a526f66027fca07ea.tar.gz dexon-solidity-b62f71c699de687268b5d83a526f66027fca07ea.tar.bz2 dexon-solidity-b62f71c699de687268b5d83a526f66027fca07ea.tar.lz dexon-solidity-b62f71c699de687268b5d83a526f66027fca07ea.tar.xz dexon-solidity-b62f71c699de687268b5d83a526f66027fca07ea.tar.zst dexon-solidity-b62f71c699de687268b5d83a526f66027fca07ea.zip |
Project refactor. Introduce the Serpent library.
Diffstat (limited to 'TrieHash.cpp')
-rw-r--r-- | TrieHash.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/TrieHash.cpp b/TrieHash.cpp index f6b73014..8f4161a1 100644 --- a/TrieHash.cpp +++ b/TrieHash.cpp @@ -21,7 +21,8 @@ #include "TrieHash.h" -#include <libethsupport/TrieCommon.h> +#include <libethcore/TrieCommon.h> +#include <libethcore/SHA3.h> #include <libethcore/CommonEth.h> using namespace std; using namespace eth; |