Skip to content

Commit 2ce09c6

Browse files
committed
fixed sln
1 parent 13bdee7 commit 2ce09c6

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

src/Nethermind/Nethermind.Db/DbOnTheRocks.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -282,10 +282,9 @@ public byte[][] GetAll()
282282

283283
public bool KeyExists(byte[] key)
284284
{
285-
// temporary comparing the perf difference (if any)
285+
// seems it has no performance impact
286286
return _db.Get(key) != null;
287-
288-
return _db.Get(key, 32, _keyExistsBuffer, 0, 0, null, null) != -1;
287+
// return _db.Get(key, 32, _keyExistsBuffer, 0, 0, null, null) != -1;
289288
}
290289

291290
public void StartBatch()

src/Nethermind/Nethermind.sln

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Nethermind.Overseer.Test",
115115
EndProject
116116
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Nethermind.Monitoring", "Nethermind.Monitoring\Nethermind.Monitoring.csproj", "{4796E327-D5A1-4CEF-B402-3FB155ED400A}"
117117
EndProject
118-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nethermind.Cli", "Nethermind.Cli\Nethermind.Cli.csproj", "{AABF177A-9E50-4736-AE65-0152B0C26121}"
119-
EndProject
120118
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Nethermind.Network.Benchmarks", "Nethermind.Network.Benchmarks\Nethermind.Network.Benchmarks.csproj", "{DCFB31ED-429F-4BA1-AAD3-BBA0C23FBD48}"
121119
EndProject
122120
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Nethermind.WriteTheDocs", "Nethermind.WriteTheDocs\Nethermind.WriteTheDocs.csproj", "{47A9DD4D-A117-41DB-8DC3-5938AFCCCE56}"

src/tests

Submodule tests updated 10745 files

0 commit comments

Comments
 (0)