From 82eba41a7deff11105d4576d3a21ba0c164898a1 Mon Sep 17 00:00:00 2001 From: Tyera Eulberg Date: Tue, 24 May 2022 17:13:25 -0600 Subject: [PATCH] Add extra error line (#25521) --- tokens/src/db.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tokens/src/db.rs b/tokens/src/db.rs index a7617aaff5..f8b4627158 100644 --- a/tokens/src/db.rs +++ b/tokens/src/db.rs @@ -145,6 +145,7 @@ pub fn update_finalized_transaction( "Signature not found {} and blockhash expired. Transaction either dropped or the validator purged the transaction status.", signature ); + eprintln!(); // Don't discard the transaction, because we are not certain the // blockhash is expired. Instead, return None to signal that @@ -166,6 +167,7 @@ pub fn update_finalized_transaction( // The transaction was finalized, but execution failed. Drop it. eprintln!("Error in transaction with signature {}: {}", signature, e); eprintln!("Discarding transaction record"); + eprintln!(); db.rem(&signature.to_string())?; return Ok(None); }