diff options
author | Gav Wood <i@gavwood.com> | 2015-03-05 18:09:34 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2015-03-06 19:19:45 +0800 |
commit | 5ca061511ab5fdca5ab88a9fe6dc4bb11a1f6e1b (patch) | |
tree | 971006e813bf985dd8cc8c060aba6dc80432e00e | |
parent | 2accc4e61adf853abc96bea04ebf6131ff33f2b7 (diff) | |
download | dexon-solidity-5ca061511ab5fdca5ab88a9fe6dc4bb11a1f6e1b.tar dexon-solidity-5ca061511ab5fdca5ab88a9fe6dc4bb11a1f6e1b.tar.gz dexon-solidity-5ca061511ab5fdca5ab88a9fe6dc4bb11a1f6e1b.tar.bz2 dexon-solidity-5ca061511ab5fdca5ab88a9fe6dc4bb11a1f6e1b.tar.lz dexon-solidity-5ca061511ab5fdca5ab88a9fe6dc4bb11a1f6e1b.tar.xz dexon-solidity-5ca061511ab5fdca5ab88a9fe6dc4bb11a1f6e1b.tar.zst dexon-solidity-5ca061511ab5fdca5ab88a9fe6dc4bb11a1f6e1b.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); } |