Skip to content

Commit

Permalink
fixed clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
mihaicalinluca committed Oct 4, 2023
1 parent c5c628c commit 103b9a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/mvx-game-sc/src/private.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ pub trait PrivateModule: crate::storage::StorageModule {
return 1u64;
}
let last_id = self.last_game_id().get();
return last_id + 1u64;
last_id + 1u64
}

fn get_min_max(&self, a: u64, b: u64) -> (u64, u64) {
Expand Down

0 comments on commit 103b9a5

Please sign in to comment.