diff options
author | Gav Wood <i@gavwood.com> | 2015-04-08 08:42:51 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2015-04-08 08:42:51 +0800 |
commit | fff3784c010925a543f6bc7df803f7a107f3964b (patch) | |
tree | 99a47849830f0421d9d474feee76572118a5d2e5 /blockchain.cpp | |
parent | 68b61432aea5f99f179b74f5a7a63138a5d2b09a (diff) | |
download | dexon-solidity-fff3784c010925a543f6bc7df803f7a107f3964b.tar dexon-solidity-fff3784c010925a543f6bc7df803f7a107f3964b.tar.gz dexon-solidity-fff3784c010925a543f6bc7df803f7a107f3964b.tar.bz2 dexon-solidity-fff3784c010925a543f6bc7df803f7a107f3964b.tar.lz dexon-solidity-fff3784c010925a543f6bc7df803f7a107f3964b.tar.xz dexon-solidity-fff3784c010925a543f6bc7df803f7a107f3964b.tar.zst dexon-solidity-fff3784c010925a543f6bc7df803f7a107f3964b.zip |
Remove VMTRACE.
Better transaction logging.
Avoid bothering with obviously invalid transactions.
Diffstat (limited to 'blockchain.cpp')
-rw-r--r-- | blockchain.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/blockchain.cpp b/blockchain.cpp index a223e8d4..6c1cfebd 100644 --- a/blockchain.cpp +++ b/blockchain.cpp @@ -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); } |