Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request #10181 from EOSIO/rm-cerr-dev
Browse files Browse the repository at this point in the history
Remove cerr - develop
  • Loading branch information
heifner authored Mar 25, 2021
2 parents e7b3ec9 + d3c2747 commit 5c5f016
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions libraries/chain/include/eosio/chain/abi_serializer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,6 @@ namespace impl {
// or both (when there is a deferred transaction and extension was "extracted" to show data and a redundant "transaction_extensions" was provided),
// or neither (only if extension was "extracted" and there was no deferred transaction to extract)
if (vo.contains("deferred_transaction_generation")) {
std::cerr << "has deferred_transaction_generation\n";
deferred_transaction_generation_context deferred_transaction_generation;
from_variant(vo["deferred_transaction_generation"], deferred_transaction_generation);
emplace_extension(
Expand All @@ -876,15 +875,13 @@ namespace impl {
);
// if both are present, they need to match
if (vo.contains("transaction_extensions")) {
std::cerr << "also has transaction_extensions\n";
extensions_type trx_extensions;
from_variant(vo["transaction_extensions"], trx_extensions);
EOS_ASSERT(trx.transaction_extensions == trx_extensions, packed_transaction_type_exception,
"Transaction contained deferred_transaction_generation and transaction_extensions that did not match");
}
}
else if (vo.contains("transaction_extensions")) {
std::cerr << "has transaction_extensions\n";
from_variant(vo["transaction_extensions"], trx.transaction_extensions);
}
}
Expand Down

0 comments on commit 5c5f016

Please sign in to comment.