diff options
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); } |