Skip to content

Commit 238ed1d

Browse files
committed
Merge branch 'fix/clippy-error' of https://github.com/Quantus-Network/task-master into feat/update-x-association-logic
2 parents 67f5b7c + d178e95 commit 238ed1d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/handlers/raid_quest.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ pub async fn handle_get_raid_leaderboard(
137137
meta: PaginationMetadata {
138138
page: params.page,
139139
page_size: params.page_size,
140-
total_items: total_items as u32,
140+
total_items,
141141
total_pages,
142142
},
143143
};

src/services/graphql_client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use reqwest::Client;
22
use serde::{Deserialize, Serialize};
33
use std::collections::HashMap;
4-
use tracing::{debug, error, info, warn};
4+
use tracing::{debug, info, warn};
55

66
use crate::{
77
db_persistence::{DbError, DbPersistence},

0 commit comments

Comments
 (0)