2025-05-20 12:47:36 +02:00
|
|
|
|
using System.Numerics;
|
|
|
|
|
|
using CodexContractsPlugin.ChainMonitor;
|
2025-05-20 10:19:07 +02:00
|
|
|
|
using CodexContractsPlugin.Marketplace;
|
2025-05-20 12:47:36 +02:00
|
|
|
|
using Logging;
|
|
|
|
|
|
using Utils;
|
2025-05-20 10:19:07 +02:00
|
|
|
|
|
|
|
|
|
|
namespace TraceContract
|
|
|
|
|
|
{
|
|
|
|
|
|
public class Output
|
|
|
|
|
|
{
|
2025-05-20 12:47:36 +02:00
|
|
|
|
private readonly ILog log;
|
|
|
|
|
|
|
|
|
|
|
|
public Output(ILog log)
|
|
|
|
|
|
{
|
|
|
|
|
|
this.log = log;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void LogRequestCreated(RequestEvent requestEvent)
|
|
|
|
|
|
{
|
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void LogRequestCancelled(RequestEvent requestEvent)
|
|
|
|
|
|
{
|
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void LogRequestFailed(RequestEvent requestEvent)
|
|
|
|
|
|
{
|
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void LogRequestFinished(RequestEvent requestEvent)
|
|
|
|
|
|
{
|
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void LogRequestStarted(RequestEvent requestEvent)
|
|
|
|
|
|
{
|
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void LogSlotFilled(RequestEvent requestEvent, EthAddress host, BigInteger slotIndex)
|
|
|
|
|
|
{
|
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void LogSlotFreed(RequestEvent requestEvent, BigInteger slotIndex)
|
|
|
|
|
|
{
|
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void LogSlotReservationsFull(RequestEvent requestEvent, BigInteger slotIndex)
|
|
|
|
|
|
{
|
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void LogReserveSlotCalls(ReserveSlotFunction[] reserveSlotFunctions)
|
2025-05-20 10:19:07 +02:00
|
|
|
|
{
|
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-05-20 12:47:36 +02:00
|
|
|
|
public void WriteContractEvents()
|
2025-05-20 10:19:07 +02:00
|
|
|
|
{
|
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|