private ErrorCode WalletAddRecordTagsHandler(int storage_handle, string type_, string id, string tags_json)
 {
     try
     {
         _storage.AddRecordTagsAsync(storage_handle, type_, id, tags_json).GetAwaiter().GetResult();
         return(ErrorCode.Success);
     }
     catch
     {
         return(ErrorCode.WalletStorageError);
     }
 }