2025-03-04 15:58:45 +01:00
|
|
|
|
using BlockchainUtils;
|
|
|
|
|
|
using System.Numerics;
|
2025-01-16 13:24:57 +01:00
|
|
|
|
using Utils;
|
2024-06-03 10:38:48 +02:00
|
|
|
|
|
|
|
|
|
|
namespace CodexContractsPlugin.ChainMonitor
|
|
|
|
|
|
{
|
|
|
|
|
|
public class DoNothingChainEventHandler : IChainStateChangeHandler
|
|
|
|
|
|
{
|
2024-06-27 11:43:25 +02:00
|
|
|
|
public void OnNewRequest(RequestEvent requestEvent)
|
2024-06-03 10:38:48 +02:00
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-06-27 11:43:25 +02:00
|
|
|
|
public void OnRequestCancelled(RequestEvent requestEvent)
|
2024-06-03 10:38:48 +02:00
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-08-21 13:59:54 +02:00
|
|
|
|
public void OnRequestFailed(RequestEvent requestEvent)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-06-27 11:43:25 +02:00
|
|
|
|
public void OnRequestFinished(RequestEvent requestEvent)
|
2024-06-03 10:38:48 +02:00
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-06-27 11:43:25 +02:00
|
|
|
|
public void OnRequestFulfilled(RequestEvent requestEvent)
|
2024-06-03 10:38:48 +02:00
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-06-27 11:43:25 +02:00
|
|
|
|
public void OnSlotFilled(RequestEvent requestEvent, EthAddress host, BigInteger slotIndex)
|
2024-06-03 10:38:48 +02:00
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-06-27 11:43:25 +02:00
|
|
|
|
public void OnSlotFreed(RequestEvent requestEvent, BigInteger slotIndex)
|
2024-06-03 10:38:48 +02:00
|
|
|
|
{
|
|
|
|
|
|
}
|
2024-10-10 11:15:07 +02:00
|
|
|
|
|
|
|
|
|
|
public void OnSlotReservationsFull(RequestEvent requestEvent, BigInteger slotIndex)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
2024-10-18 11:03:05 +02:00
|
|
|
|
|
|
|
|
|
|
public void OnError(string msg)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
2025-03-04 15:58:45 +01:00
|
|
|
|
|
|
|
|
|
|
public void OnProofSubmitted(BlockTimeEntry block, string id)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
2024-06-03 10:38:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|