Example #1
0
 /// <inheritdoc />
 public void StoreExecutionResult(uint256 blockHash, BlockExecutionResultModel result)
 {
     lock (this.cachedExecutions)
     {
         this.cachedExecutions[blockHash] = result;
     }
 }
Example #2
0
 /// <inheritdoc />
 public void StoreExecutionResult(uint256 blockHash, BlockExecutionResultModel result)
 {
     this.cachedExecutions.Add(blockHash, result);
 }