Browse Source

Add extradata into diagnostics.

cl-refactor
Gav Wood 10 years ago
parent
commit
876d1d25e2
  1. 8
      libethereum/BlockChain.h
  2. 1
      libethereum/State.h

8
libethereum/BlockChain.h

@ -393,10 +393,10 @@ public:
virtual VerifiedBlockRef verifyBlock(bytesConstRef _block, std::function<void(Exception&)> const& _onBad, ImportRequirements::value _ir) const override virtual VerifiedBlockRef verifyBlock(bytesConstRef _block, std::function<void(Exception&)> const& _onBad, ImportRequirements::value _ir) const override
{ {
VerifiedBlockRef res; VerifiedBlockRef res;
BlockHeader h;
try try
{ {
BlockHeader h(_block, (_ir & ImportRequirements::ValidSeal) ? Strictness::CheckEverything : Strictness::QuickNonce); h = BlockHeader(_block, (_ir & ImportRequirements::ValidSeal) ? Strictness::CheckEverything : Strictness::QuickNonce);
h.verifyInternals(_block); h.verifyInternals(_block);
if ((_ir & ImportRequirements::Parent) != 0) if ((_ir & ImportRequirements::Parent) != 0)
{ {
@ -412,6 +412,7 @@ public:
ex << errinfo_phase(1); ex << errinfo_phase(1);
ex << errinfo_now(time(0)); ex << errinfo_now(time(0));
ex << errinfo_block(_block.toBytes()); ex << errinfo_block(_block.toBytes());
ex << errinfo_extraData(h.extraData());
if (_onBad) if (_onBad)
_onBad(ex); _onBad(ex);
throw; throw;
@ -424,7 +425,7 @@ public:
{ {
try try
{ {
BlockHeader().populateFromHeader(RLP(uncle.data()), (_ir & ImportRequirements::UncleSeals) ? Strictness::CheckEverything : Strictness::IgnoreSeal); h.populateFromHeader(RLP(uncle.data()), (_ir & ImportRequirements::UncleSeals) ? Strictness::CheckEverything : Strictness::IgnoreSeal);
} }
catch (Exception& ex) catch (Exception& ex)
{ {
@ -432,6 +433,7 @@ public:
ex << errinfo_uncleIndex(i); ex << errinfo_uncleIndex(i);
ex << errinfo_now(time(0)); ex << errinfo_now(time(0));
ex << errinfo_block(_block.toBytes()); ex << errinfo_block(_block.toBytes());
ex << errinfo_extraData(h.extraData());
if (_onBad) if (_onBad)
_onBad(ex); _onBad(ex);
throw; throw;

1
libethereum/State.h

@ -52,6 +52,7 @@ using errinfo_uncleNumber = boost::error_info<struct tag_uncleNumber, u256>;
using errinfo_unclesExcluded = boost::error_info<struct tag_unclesExcluded, h256Hash>; using errinfo_unclesExcluded = boost::error_info<struct tag_unclesExcluded, h256Hash>;
using errinfo_block = boost::error_info<struct tag_block, bytes>; using errinfo_block = boost::error_info<struct tag_block, bytes>;
using errinfo_now = boost::error_info<struct tag_now, unsigned>; using errinfo_now = boost::error_info<struct tag_now, unsigned>;
using errinfo_extraData = boost::error_info<struct tag_extraData, bytes>;
using errinfo_transactionIndex = boost::error_info<struct tag_transactionIndex, unsigned>; using errinfo_transactionIndex = boost::error_info<struct tag_transactionIndex, unsigned>;

Loading…
Cancel
Save