aboutsummaryrefslogtreecommitdiffstats
path: root/state.cpp
diff options
context:
space:
mode:
authorCJentzsch <jentzsch.software@gmail.com>2015-01-09 17:58:32 +0800
committerCJentzsch <jentzsch.software@gmail.com>2015-01-09 17:58:32 +0800
commit203005e2b77e0fbaa2cb8003fc85a784628c1866 (patch)
treec09cc8bf29b6d94b443436d8f6bd139da7d9266b /state.cpp
parent90cdc52ae788d24e79800bf44473f3c8c087c1f4 (diff)
downloaddexon-solidity-203005e2b77e0fbaa2cb8003fc85a784628c1866.tar.gz
dexon-solidity-203005e2b77e0fbaa2cb8003fc85a784628c1866.tar.zst
dexon-solidity-203005e2b77e0fbaa2cb8003fc85a784628c1866.zip
add blockhash test fo vm tests
Diffstat (limited to 'state.cpp')
-rw-r--r--state.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/state.cpp b/state.cpp
index db8350e4..6da18e70 100644
--- a/state.cpp
+++ b/state.cpp
@@ -39,16 +39,6 @@ using namespace dev::eth;
namespace dev { namespace test {
-LastHashes lastHashes(u256 _currentBlockNumber)
-{
- LastHashes ret;
- for (u256 i = 1; i <= 256 && i <= _currentBlockNumber; ++i)
- ret.push_back(sha3(toString(_currentBlockNumber - i)));
- return ret;
-}
-
-
-
void doStateTests(json_spirit::mValue& v, bool _fillin)
{
processCommandLineOptions();