Rename GreenField -> Greenfield

This commit is contained in:
nicolas.dorier
2022-01-14 13:05:23 +09:00
parent 7a787fc945
commit 23a96c07ae
45 changed files with 96 additions and 96 deletions

View File

@@ -2,9 +2,9 @@ using System;
namespace BTCPayServer.Client
{
public class GreenFieldAPIException : Exception
public class GreenfieldAPIException : Exception
{
public GreenFieldAPIException(int httpCode, Models.GreenfieldAPIError error) : base(error.Message)
public GreenfieldAPIException(int httpCode, Models.GreenfieldAPIError error) : base(error.Message)
{
if (error == null)
throw new ArgumentNullException(nameof(error));