예제 #1
0
        public async Task RemoveChainBlockLinkAsync(Hash blockHash)
        {
            await _chainBlockLinks.RemoveAsync(ChainId.ToStorageKey() + KernelConstants.StorageKeySeparator + blockHash.ToStorageKey());

            _chainBlockLinkCacheProvider.RemoveChainBlockLink(blockHash);
        }
예제 #2
0
 public void RemoveCachedChainBlockLink(Hash blockHash)
 {
     _chainBlockLinkCacheProvider.RemoveChainBlockLink(blockHash);
 }