Bunch of repotting/curating.

[10:59:28] Vitalik Buterin: block.parent.gas_limit * 1023 / 1024 <=
block.gas_limit <= block.parent.gas_limit * 1025/1024
This commit is contained in:
Gav Wood 2015-03-05 11:09:34 +01:00
parent 6a64f2564b
commit 66e6fb6d2a
3 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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);
}