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

Commit

Permalink
#6214: failed deferred transactions were in history
Browse files Browse the repository at this point in the history
  • Loading branch information
tbfleming committed Nov 2, 2018
1 parent 879894c commit ae4692f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions plugins/history_plugin/history_plugin.cpp
Expand Up @@ -282,6 +282,8 @@ namespace eosio {
}

void on_applied_transaction( const transaction_trace_ptr& trace ) {
if( !trace->receipt || trace->receipt->status != transaction_receipt_header::executed )
return;
for( const auto& atrace : trace->action_traces ) {
on_action_trace( atrace );
}
Expand Down

0 comments on commit ae4692f

Please sign in to comment.