Skip to content
This repository has been archived by the owner on Mar 3, 2020. It is now read-only.

Commit

Permalink
KEP-1012: added error message when we can't parse a stored operation
Browse files Browse the repository at this point in the history
  • Loading branch information
paularchard committed Feb 1, 2019
1 parent 23cc69b commit 22c7770
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pbft/operations/pbft_persistent_operation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,11 @@ pbft_persistent_operation::prepared_operations_in_range(std::shared_ptr<bzn::sto
auto op = std::make_shared<pbft_persistent_operation>(storage, view, sequence, hash);
results.push_back(op);
}
else
{
LOG(error) << boost::format("Unable to parse stored operation at view:%1% sequence:%2% hash:%3%")
% view % sequence % hash;
}
}
}

Expand Down

0 comments on commit 22c7770

Please sign in to comment.