diff options
author | Gav Wood <i@gavwood.com> | 2015-03-05 18:09:34 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2015-03-05 18:09:34 +0800 |
commit | 66e6fb6d2a157063616b0278510d0ef5fde5f7fd (patch) | |
tree | a01d69105abb9d9724d76dd6027ecb31295db28c | |
parent | 6a64f2564bb8eb9c2a193538002a8d73939dda09 (diff) | |
download | dexon-solidity-66e6fb6d2a157063616b0278510d0ef5fde5f7fd.tar dexon-solidity-66e6fb6d2a157063616b0278510d0ef5fde5f7fd.tar.gz dexon-solidity-66e6fb6d2a157063616b0278510d0ef5fde5f7fd.tar.bz2 dexon-solidity-66e6fb6d2a157063616b0278510d0ef5fde5f7fd.tar.lz dexon-solidity-66e6fb6d2a157063616b0278510d0ef5fde5f7fd.tar.xz dexon-solidity-66e6fb6d2a157063616b0278510d0ef5fde5f7fd.tar.zst dexon-solidity-66e6fb6d2a157063616b0278510d0ef5fde5f7fd.zip |
Bunch of repotting/curating.
[10:59:28] Vitalik Buterin: block.parent.gas_limit * 1023 / 1024 <=
block.gas_limit <= block.parent.gas_limit * 1025/1024
-rw-r--r-- | MemTrie.cpp | 2 | ||||
-rw-r--r-- | TrieHash.cpp | 2 | ||||
-rw-r--r-- | commonjs.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/MemTrie.cpp b/MemTrie.cpp index c3a44e1e..ab5a13b6 100644 --- a/MemTrie.cpp +++ b/MemTrie.cpp @@ -23,7 +23,7 @@ #include <libdevcrypto/TrieCommon.h> #include <libdevcrypto/SHA3.h> -#include <libethcore/CommonEth.h> +#include <libethcore/Common.h> using namespace std; using namespace dev; using namespace dev::eth; diff --git a/TrieHash.cpp b/TrieHash.cpp index ee4f2e87..ccf12c16 100644 --- a/TrieHash.cpp +++ b/TrieHash.cpp @@ -23,7 +23,7 @@ #include <libdevcrypto/TrieCommon.h> #include <libdevcrypto/SHA3.h> -#include <libethcore/CommonEth.h> +#include <libethcore/Common.h> using namespace std; using namespace dev; using namespace dev::eth; diff --git a/commonjs.cpp b/commonjs.cpp index 041a14f6..72582c54 100644 --- a/commonjs.cpp +++ b/commonjs.cpp @@ -42,7 +42,7 @@ BOOST_AUTO_TEST_CASE(jsToAddress) cnote << "Testing jsToPublic..."; KeyPair kp = KeyPair::create(); string string = toJS(kp.address()); - Address address = dev::eth::jsToAddress(string); + Address address = dev::jsToAddress(string); BOOST_CHECK_EQUAL(kp.address(), address); } |