multi: wait for rpcclients shutdown to complete

We need to call `WaitForShutdown` after stopping the rpc clients of the
chain backends.
This commit is contained in:
yyforyongyu
2024-11-03 20:19:38 +08:00
parent 304c8df7b9
commit 523ecc0653
7 changed files with 8 additions and 4 deletions

View File

@@ -238,6 +238,7 @@ func (b *BtcdEstimator) Stop() error {
b.filterManager.Stop()
b.btcdConn.Shutdown()
b.btcdConn.WaitForShutdown()
return nil
}