Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: tari-project/tari
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 119b7fffbd321231699e7860e4c6ca92a09e63d0
Choose a base ref
..
head repository: tari-project/tari
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 596302d23016e801b25b1eb8a017da5dfe9c551d
Choose a head ref
Showing with 0 additions and 2 deletions.
  1. +0 −2 ...re/src/base_node/state_machine_service/states/horizon_state_sync/horizon_state_synchronization.rs
Original file line number Diff line number Diff line change
@@ -104,13 +104,11 @@ impl<'a, B: BlockchainBackend + 'static> HorizonStateSynchronization<'a, B> {
Ok(_) => Ok(()),
Err(err) => {
warn!(target: LOG_TARGET, "Error during sync:{}", err);
client.close().await;
Err(err)
},
},
Err(err) => {
warn!(target: LOG_TARGET, "Error during sync:{}", err);
client.close().await;
Err(err)
},
}