Skip to content

Commit

Permalink
#1750 multiple transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
kladkogex committed Jan 12, 2024
1 parent ace6fa6 commit 14c56e6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions libethereum/Block.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -822,9 +822,8 @@ ExecutionResult Block::executeHistoricCall( LastBlockHashesFace const& _lh, Tran
try {
_tracer->finalizeAndPrintTrace( resultReceipt.first, stateBefore, stateAfter );
} catch ( std::exception& e ) {
throw dev::eth::VMTracingError(
std::string( "Exception doing trace for transaction index:" ) +
std::to_string( _transactionIndex ) + ":" + e.what() );
throw dev::eth::VMTracingError( "Exception doing trace for transaction index:" +
std::to_string( _transactionIndex ) + ":" + e.what() );
}
return resultReceipt.first;
} else {
Expand Down

0 comments on commit 14c56e6

Please sign in to comment.