A custom storage engine of Nethermind, benefiting from the alignment of the underlying data structure with the layout of State & Storage trees of Ethereum.
Some of the tests used explicit .Dispose that might show a case that this is how we want to use the IDisposable. Always, ALWAYS, prefer using var over an explicit that might be forgotten and result in some leakage. Especially when readonly tx are used.
Some of the tests used explicit
.Dispose
that might show a case that this is how we want to use theIDisposable
. Always, ALWAYS, preferusing var
over an explicit that might be forgotten and result in some leakage. Especially when readonly tx are used.