Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@ namespace Nethermind.TxPool.Collections
{
public partial class SortedPool<TKey, TValue, TGroupKey>
{
#pragma warning disable 67
public event EventHandler<SortedPoolEventArgs>? Inserted;
public event EventHandler<SortedPoolRemovedEventArgs>? Removed;
#pragma warning restore 67

public class SortedPoolEventArgs(TKey key, TValue value)
{
Expand Down
Loading