Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Nagaprasadvr committed Jan 29, 2025
1 parent 4e0fd7b commit bb68d47
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 82 deletions.
2 changes: 1 addition & 1 deletion das_api/src/api/api_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ impl DasApi {

page_opt.limit = limit.map(|x| x as u64).unwrap_or(1000);
if is_cursor_enabled {
if let Some(_) = &sorting {
if sorting.is_some() {
page_opt.cursor = Some(self.get_cursor(cursor)?);
}
} else {
Expand Down
4 changes: 0 additions & 4 deletions migration/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ mod m20240320_120101_add_mpl_core_info_items;
mod m20240520_120101_add_mpl_core_external_plugins_columns;
mod m20240718_161232_change_supply_columns_to_numeric;
mod m20241119_060310_add_token_inscription_enum_variant;
mod m20241209_100813_add_unique_index_for_asset_owner_and_supply;
mod m20241209_111604_add_index_for_asset_id_group_value_verified;

pub mod model;

Expand Down Expand Up @@ -101,8 +99,6 @@ impl MigratorTrait for Migrator {
Box::new(m20240520_120101_add_mpl_core_external_plugins_columns::Migration),
Box::new(m20240718_161232_change_supply_columns_to_numeric::Migration),
Box::new(m20241119_060310_add_token_inscription_enum_variant::Migration),
Box::new(m20241209_100813_add_unique_index_for_asset_owner_and_supply::Migration),
Box::new(m20241209_111604_add_index_for_asset_id_group_value_verified::Migration),
]
}
}

This file was deleted.

This file was deleted.

0 comments on commit bb68d47

Please sign in to comment.