Skip to content

Commit

Permalink
Clean up forgotten error log
Browse files Browse the repository at this point in the history
  • Loading branch information
jstarry authored and Lcchy committed Jul 22, 2022
1 parent 35aa07f commit fe5a5de
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion runtime/src/bank.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4434,7 +4434,6 @@ impl Bank {
let return_data = if enable_return_data_recording {
if let Some(end_index) = return_data.data.iter().rposition(|&x| x != 0) {
let end_index = end_index.saturating_add(1);
error!("end index {}", end_index);
return_data.data.truncate(end_index);
Some(return_data)
} else {
Expand Down

0 comments on commit fe5a5de

Please sign in to comment.