Skip to content

Commit

Permalink
Merge pull request #128 from WalletConnect/fix/dispose-loop
Browse files Browse the repository at this point in the history
fix: dispose loop
  • Loading branch information
skibitsky authored Oct 16, 2023
2 parents 9839496 + f28becf commit 86a0343
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion WalletConnectSharp.Core/Controllers/MessageTracker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,6 @@ private void IsInitialized()

public void Dispose()
{
_core?.Dispose();
}
}
}
1 change: 0 additions & 1 deletion WalletConnectSharp.Core/Controllers/Publisher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ await RpcPublish(topic, message, @params.Options.TTL, @params.Options.Tag, @para
public void Dispose()
{
Events?.Dispose();
Relayer?.Dispose();
}
}
}
1 change: 0 additions & 1 deletion WalletConnectSharp.Core/Controllers/Subscriber.cs
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,6 @@ private void OnBatchSubscribe(ActiveSubscription[] subscriptions)

public void Dispose()
{
_relayer?.Dispose();
Events?.Dispose();
}
}
Expand Down

0 comments on commit 86a0343

Please sign in to comment.