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