Пример #1
0
 private ErrorCode WalletDeleteRecordHandler(int storage_handle, string type_, string id)
 {
     try
     {
         _storage.DeleteRecordAsync(storage_handle, type_, id).GetAwaiter().GetResult();
         return(ErrorCode.Success);
     }
     catch
     {
         return(ErrorCode.WalletStorageError);
     }
 }