btcpayserver/BTCPayServer/Events/NewBlockEvent.cs

12 lines
219 B
C#
Raw Normal View History

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