Exemplo n.º 1
0
 private ErrorCode WalletDeleteRecordTagsHandler(int storage_handle, string type_, string id,
                                                 string tag_names_json)
 {
     try
     {
         _storage.DeleteRecordTagsAsync(storage_handle, type_, id, tag_names_json).GetAwaiter().GetResult();
         return(ErrorCode.Success);
     }
     catch
     {
         return(ErrorCode.WalletStorageError);
     }
 }