2
0
mirror of synced 2025-01-28 09:14:58 +00:00

33 lines
738 B
C#
Raw Normal View History

2024-06-27 10:07:10 +02:00
using GethPlugin;
using System.Numerics;
2024-06-03 10:38:48 +02:00
namespace CodexContractsPlugin.ChainMonitor
{
public class DoNothingChainEventHandler : IChainStateChangeHandler
{
public void OnNewRequest(RequestEvent requestEvent)
2024-06-03 10:38:48 +02:00
{
}
public void OnRequestCancelled(RequestEvent requestEvent)
2024-06-03 10:38:48 +02:00
{
}
public void OnRequestFinished(RequestEvent requestEvent)
2024-06-03 10:38:48 +02:00
{
}
public void OnRequestFulfilled(RequestEvent requestEvent)
2024-06-03 10:38:48 +02:00
{
}
public void OnSlotFilled(RequestEvent requestEvent, EthAddress host, BigInteger slotIndex)
2024-06-03 10:38:48 +02:00
{
}
public void OnSlotFreed(RequestEvent requestEvent, BigInteger slotIndex)
2024-06-03 10:38:48 +02:00
{
}
}
}