Skip to content

Commit ae4692f

Browse files
committed
#6214: failed deferred transactions were in history
1 parent 879894c commit ae4692f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

plugins/history_plugin/history_plugin.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,8 @@ namespace eosio {
282282
}
283283

284284
void on_applied_transaction( const transaction_trace_ptr& trace ) {
285+
if( !trace->receipt || trace->receipt->status != transaction_receipt_header::executed )
286+
return;
285287
for( const auto& atrace : trace->action_traces ) {
286288
on_action_trace( atrace );
287289
}

0 commit comments

Comments
 (0)