diff --git a/Framework/NethereumWorkflow/BlockUtils/BlockTimeFinder.cs b/Framework/NethereumWorkflow/BlockUtils/BlockTimeFinder.cs index b1d84e9..a8e67f4 100644 --- a/Framework/NethereumWorkflow/BlockUtils/BlockTimeFinder.cs +++ b/Framework/NethereumWorkflow/BlockUtils/BlockTimeFinder.cs @@ -20,6 +20,7 @@ namespace NethereumWorkflow.BlockUtils public BlockTimeEntry Get(ulong blockNumber) { + bounds.Initialize(); var b = cache.Get(blockNumber); if (b != null) return b; return GetBlock(blockNumber);