From 75c3690ccd94bb0bb43061b75599a2183aaef1e8 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Thu, 17 Sep 2020 15:02:05 -0700 Subject: [PATCH] Give the duplicate send_transaction_service a different thread name --- core/src/send_transaction_service.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/send_transaction_service.rs b/core/src/send_transaction_service.rs index 48e3ae947..d897c372b 100644 --- a/core/src/send_transaction_service.rs +++ b/core/src/send_transaction_service.rs @@ -116,7 +116,7 @@ impl SendTransactionService { } Builder::new() - .name("send-tx-svc".to_string()) + .name("send-tx-sv2".to_string()) .spawn(move || loop { if exit.load(Ordering::Relaxed) { break;