Skip to content

Commit f6bb439

Browse files
committed
formatting fixes
1 parent 3cc348e commit f6bb439

8 files changed

Lines changed: 8 additions & 0 deletions

File tree

examples/BlockProcessing/Program.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
using BitcoinKernel.Interop.Enums;
66

77
namespace BlockProcessing;
8+
89
class Program
910
{
1011
static void Main(string[] args)

src/BitcoinKernel.Interop/Enums/ChainType.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
namespace BitcoinKernel.Interop.Enums;
2+
23
public enum ChainType : uint
34
{
45
MAINNET = 0,

src/BitcoinKernel.Interop/Enums/Warning.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
namespace BitcoinKernel.Interop.Enums;
2+
23
public enum Warning
34
{
45
UnknownNewRulesActivated = 0,

src/BitcoinKernel.Interop/Structs/LoggingOptions.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using System.Runtime.InteropServices;
22

33
namespace BitcoinKernel.Interop.Structs;
4+
45
[StructLayout(LayoutKind.Sequential)]
56
internal struct LoggingOptions
67
{

src/BitcoinKernel.Interop/Structs/NotificationInterfaceCallbacks.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using BitcoinKernel.Interop.Delegates.Notification;
33

44
namespace BitcoinKernel.Interop.Structs;
5+
56
[StructLayout(LayoutKind.Sequential)]
67
internal struct NotificationInterfaceCallbacks
78
{

src/BitcoinKernel.Interop/Structs/ValidationInterfaceCallbacks.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using BitcoinKernel.Interop.Delegates.Validation;
33

44
namespace BitcoinKernel.Interop.Structs;
5+
56
[StructLayout(LayoutKind.Sequential)]
67
internal struct ValidationInterfaceCallbacks
78
{

tests/BitcoinKernel.Tests/BlockProcessingTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
using Xunit;
66

77
namespace BitcoinKernel.Tests;
8+
89
public class BlockProcessingTests : IDisposable
910
{
1011
private KernelContext? _context;

tests/BitcoinKernel.Tests/BlockTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using Xunit;
33

44
namespace BitcoinKernel.Tests;
5+
56
public class BlockTests
67
{
78
private List<byte[]> ReadBlockData()

0 commit comments

Comments
 (0)