diff --git a/NineChronicles.Headless/BlockChainService.cs b/NineChronicles.Headless/BlockChainService.cs index 0c2bff96f..7553cc7b4 100644 --- a/NineChronicles.Headless/BlockChainService.cs +++ b/NineChronicles.Headless/BlockChainService.cs @@ -277,7 +277,7 @@ public UnaryResult> GetSheets( sw.Restart(); if (addresses.Any()) { - var stateRootHash = new BlockHash(stateRootHashBytes); + var stateRootHash = new HashDigest(stateRootHashBytes); IReadOnlyList values = _blockChain.GetWorldState(stateRootHash).GetLegacyStates(addresses); sw.Stop(); Log.Information("[GetSheets]Get sheet from state: {Count}, Elapsed: {Elapsed}", addresses.Count, sw.Elapsed);