Executable queue for ancient blocks inclusion (#208)

* Executable queue for ancient blocks inclusion
* Add drop trait for client
* Added shutdown to tests
* Remove doubled call
* Use reth-util from reth repo
This commit is contained in:
rakita
2021-03-25 16:04:32 +01:00
committed by GitHub
parent 85391f99ac
commit c9190a39ed
11 changed files with 110 additions and 55 deletions

View File

@@ -142,6 +142,7 @@ impl ClientService {
pub fn shutdown(&self) {
trace!(target: "shutdown", "Shutting down Client Service");
self.snapshot.shutdown();
self.client.shutdown();
}
}