btcpayserver/BTCPayServer/Events/NewBlockEvent.cs

11 lines
219 B
C#

namespace BTCPayServer.Events
{
public class NewBlockEvent:NBXplorer.Models.NewBlockEvent
{
public override string ToString()
{
return $"{CryptoCode}: New block";
}
}
}