From b62ad86637307669d8a755b6a1a70387dc6a3d40 Mon Sep 17 00:00:00 2001 From: Ben Adams Date: Fri, 28 Nov 2025 19:10:32 +0000 Subject: [PATCH] Fix merge issue --- src/Nethermind/Nethermind.Db.Rpc/RpcDb.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Nethermind/Nethermind.Db.Rpc/RpcDb.cs b/src/Nethermind/Nethermind.Db.Rpc/RpcDb.cs index 459e6ea53b6..61bb02e57e1 100644 --- a/src/Nethermind/Nethermind.Db.Rpc/RpcDb.cs +++ b/src/Nethermind/Nethermind.Db.Rpc/RpcDb.cs @@ -86,6 +86,8 @@ public void Clear() { } public IWriteBatch StartWriteBatch() { ThrowWritesNotSupported(); + // Make compiler happy + return null!; } private byte[] GetThroughRpc(ReadOnlySpan key)