diff options
author | subtly <subtly@users.noreply.github.com> | 2015-04-11 00:14:57 +0800 |
---|---|---|
committer | subtly <subtly@users.noreply.github.com> | 2015-04-11 00:14:57 +0800 |
commit | 9965121d631dba5209c45bfddc7a4420f919467c (patch) | |
tree | f9a4acdff9b3850f8d31d8f28e486e832715b76f /blockchain.cpp | |
parent | f08eb06c7ac0a4f126777599c0826b6e78f60ab4 (diff) | |
parent | c111dbff3f4d4d5e6d064b38bcd645f2d763ccab (diff) | |
download | dexon-solidity-9965121d631dba5209c45bfddc7a4420f919467c.tar dexon-solidity-9965121d631dba5209c45bfddc7a4420f919467c.tar.gz dexon-solidity-9965121d631dba5209c45bfddc7a4420f919467c.tar.bz2 dexon-solidity-9965121d631dba5209c45bfddc7a4420f919467c.tar.lz dexon-solidity-9965121d631dba5209c45bfddc7a4420f919467c.tar.xz dexon-solidity-9965121d631dba5209c45bfddc7a4420f919467c.tar.zst dexon-solidity-9965121d631dba5209c45bfddc7a4420f919467c.zip |
Merge branch 'p2p' into whisper
Diffstat (limited to 'blockchain.cpp')
-rw-r--r-- | blockchain.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/blockchain.cpp b/blockchain.cpp index a223e8d4..ab01df5a 100644 --- a/blockchain.cpp +++ b/blockchain.cpp @@ -22,7 +22,7 @@ #include <boost/filesystem.hpp> #include <libdevcrypto/FileSystem.h> -#include <libtestutils/TransientDirectory.h> +#include <libdevcore/TransientDirectory.h> #include <libethereum/CanonBlockChain.h> #include "TestHelper.h" @@ -383,7 +383,7 @@ void doBlockchainTests(json_spirit::mValue& _v, bool _fillin) try { - Transaction t(createRLPStreamFromTransactionFields(tx).out(), CheckSignature::Sender); + Transaction t(createRLPStreamFromTransactionFields(tx).out(), CheckTransaction::Everything); txsFromField.push_back(t); } catch (Exception const& _e) @@ -400,7 +400,7 @@ void doBlockchainTests(json_spirit::mValue& _v, bool _fillin) RLP root(blockRLP); for (auto const& tr: root[1]) { - Transaction tx(tr.data(), CheckSignature::Sender); + Transaction tx(tr.data(), CheckTransaction::Everything); txsFromRlp.push_back(tx); } |