cs-codex-dist-tests/ProjectPlugins/CodexContractsPlugin/ChainMonitor/DoNothingChainEventHandler.cs

37 lines
822 B
C#
Raw Normal View History

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