Skip to content

Commit b5748c6

Browse files
authored
Fix query (#104)
1 parent d68466a commit b5748c6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

auction-server/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

auction-server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "auction-server"
3-
version = "0.9.1"
3+
version = "0.9.2"
44
edition = "2021"
55
license-file = "license.txt"
66

auction-server/src/state.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -981,7 +981,7 @@ impl Store {
981981
query.push(" AND creation_time >= ");
982982
query.push_bind(from_time);
983983
}
984-
query.push(" ORDER BY creation_tim ASC LIMIT 20");
984+
query.push(" ORDER BY creation_time ASC LIMIT 20");
985985
let opps: Vec<models::Opportunity> = query
986986
.build_query_as()
987987
.fetch_all(&self.db)

0 commit comments

Comments
 (0)