Merge pull request #6550 from alvasw/xmr_tx_proof_request_shutdown_executor_service_in_terminate

XmrTxProofRequest: Shutdown executor service in terminate()
This commit is contained in:
Alejandro García 2023-01-31 19:11:35 +00:00 committed by GitHub
commit 742d251193
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -275,6 +275,7 @@ class XmrTxProofRequest implements AssetTxProofRequest<XmrTxProofRequest.Result>
@Override
public void terminate() {
executorService.shutdown();
terminated = true;
}