aboutsummaryrefslogtreecommitdiffstats
path: root/dagger.cpp
diff options
context:
space:
mode:
authorPaweł Bylica <pawel.bylica@imapp.pl>2015-03-09 22:05:22 +0800
committerPaweł Bylica <pawel.bylica@imapp.pl>2015-03-09 22:05:22 +0800
commit5cc0812d357e70614b9a0d78812ae7e6ecaa5ef0 (patch)
tree5d59b64355b33260d7c702d4219253f2d2d089f9 /dagger.cpp
parent5fb44b241debf9230aea69b7708e204a88ba9d83 (diff)
parentd586a88f3cab21db88f31dd574daac4bb9a28b7d (diff)
downloaddexon-solidity-5cc0812d357e70614b9a0d78812ae7e6ecaa5ef0.tar
dexon-solidity-5cc0812d357e70614b9a0d78812ae7e6ecaa5ef0.tar.gz
dexon-solidity-5cc0812d357e70614b9a0d78812ae7e6ecaa5ef0.tar.bz2
dexon-solidity-5cc0812d357e70614b9a0d78812ae7e6ecaa5ef0.tar.lz
dexon-solidity-5cc0812d357e70614b9a0d78812ae7e6ecaa5ef0.tar.xz
dexon-solidity-5cc0812d357e70614b9a0d78812ae7e6ecaa5ef0.tar.zst
dexon-solidity-5cc0812d357e70614b9a0d78812ae7e6ecaa5ef0.zip
Merge remote-tracking branch 'upstream/develop' into evmjit
Diffstat (limited to 'dagger.cpp')
-rw-r--r--dagger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/dagger.cpp b/dagger.cpp
index dec753fe..a2bd6be6 100644
--- a/dagger.cpp
+++ b/dagger.cpp
@@ -55,7 +55,7 @@ BOOST_AUTO_TEST_CASE(basic_test)
cnote << i.first;
js::mObject& o = i.second.get_obj();
vector<pair<string, string>> ss;
- BlockInfo header = BlockInfo::fromHeader(fromHex(o["header"].get_str()));
+ BlockInfo header = BlockInfo::fromHeader(fromHex(o["header"].get_str()), CheckNothing);
h256 headerHash(o["header_hash"].get_str());
Nonce nonce(o["nonce"].get_str());
BOOST_REQUIRE_EQUAL(headerHash, header.headerHash(WithoutNonce));