private readonly ManualResetEventSlim Mre = new ManualResetEventSlim();
In SingleDisposable.cs Mre is never disposed.
In RegTestFixture.cs class.
BackendNodeBuilder = NodeBuilder.CreateAsync(EnvironmentHelpers.GetMethodName()).GetAwaiter().GetResult();
Disposable object created by 'NodeBuilder.CreateAsync(EnvironmentHelpers.GetMethodName())' is never disposed.
In CoinJoinClient.cs
aliceClient = await AliceClient.CreateNewAsync(inputRegistrableRound.RoundId, registeredAddresses, schnorrPubKeys, requesters, Network, outputAddresses.change.GetP2wpkhAddress(Network), blindedOutputScriptHashes, inputProofs, CcjHostUriAction, TorSocks5EndPoint).ConfigureAwait(false);
The latter is disposed, it's just VS cannot tell when I think. Nevertheless a better pattern would be more reasonable to use.
This has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
@nopara73 Both of the cases that I mentioned are no longer present because the code changed.