diff --git a/Cargo.lock b/Cargo.lock index 0512af58..e9f556a0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5916,7 +5916,7 @@ dependencies = [ [[package]] name = "solana-transaction-builder" version = "0.1.0" -source = "git+https://github.com/marinade-finance/solana-transaction-builder?branch=main#ee7fa5de9aceedc0ccd3fe0cf53b65bdecff95ae" +source = "git+https://github.com/marinade-finance/solana-transaction-builder?branch=main#05b471e70d6ea44acf560ad98e1ce7289b002045" dependencies = [ "anyhow", "base64 0.13.1", @@ -5931,7 +5931,7 @@ dependencies = [ [[package]] name = "solana-transaction-builder-executor" version = "0.1.0" -source = "git+https://github.com/marinade-finance/solana-transaction-builder?branch=main#ee7fa5de9aceedc0ccd3fe0cf53b65bdecff95ae" +source = "git+https://github.com/marinade-finance/solana-transaction-builder?branch=main#05b471e70d6ea44acf560ad98e1ce7289b002045" dependencies = [ "anyhow", "async-stream", diff --git a/settlement-pipelines/src/reporting.rs b/settlement-pipelines/src/reporting.rs index 9657fc54..88524c4c 100644 --- a/settlement-pipelines/src/reporting.rs +++ b/settlement-pipelines/src/reporting.rs @@ -131,6 +131,9 @@ pub async fn with_reporting( // when Ok is returned we consult the reality with report handler Ok(_) => CliResult(report_handler.finalize()), // when main returned some error we pass it to terminate with it - Err(err) => CliResult(Err(err)), + Err(err) => { + println!("ERROR: {:?}", err); + CliResult(Err(err)) + } } }