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
|
|
|
|
|
{
|
2024-06-27 09:43:25 +00:00
|
|
|
|
public void OnNewRequest(RequestEvent requestEvent)
|
2024-06-03 08:38:48 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-27 09:43:25 +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)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-27 09:43:25 +00:00
|
|
|
|
public void OnRequestFinished(RequestEvent requestEvent)
|
2024-06-03 08:38:48 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-27 09:43:25 +00:00
|
|
|
|
public void OnRequestFulfilled(RequestEvent requestEvent)
|
2024-06-03 08:38:48 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-27 09:43:25 +00:00
|
|
|
|
public void OnSlotFilled(RequestEvent requestEvent, EthAddress host, BigInteger slotIndex)
|
2024-06-03 08:38:48 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-27 09:43:25 +00:00
|
|
|
|
public void OnSlotFreed(RequestEvent requestEvent, BigInteger slotIndex)
|
2024-06-03 08:38:48 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|