aboutsummaryrefslogtreecommitdiffstats
path: root/src/routes.rs
diff options
context:
space:
mode:
authorYigit Sever2021-04-15 13:48:22 +0300
committerYigit Sever2021-04-15 13:48:22 +0300
commitbff5cd1eb6a67456426f02d6730e0bf945fc67e3 (patch)
tree0d1ce4505db19b340373f84da75b6a7c5fd4b0b1 /src/routes.rs
parent77b99f7d3a8747f562f2b8f1e8df551aafea1b28 (diff)
downloadgradecoin-bff5cd1eb6a67456426f02d6730e0bf945fc67e3.tar.gz
gradecoin-bff5cd1eb6a67456426f02d6730e0bf945fc67e3.tar.bz2
gradecoin-bff5cd1eb6a67456426f02d6730e0bf945fc67e3.zip
Listen to clippy
Diffstat (limited to 'src/routes.rs')
-rw-r--r--src/routes.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes.rs b/src/routes.rs
index 59342bb..52d357a 100644
--- a/src/routes.rs
+++ b/src/routes.rs
@@ -18,7 +18,7 @@ pub fn consensus_routes(db: Db) -> impl Filter<Extract = impl Reply, Error = Rej
18 .or(register_user(db.clone())) 18 .or(register_user(db.clone()))
19 .or(auth_transaction_propose(db.clone())) 19 .or(auth_transaction_propose(db.clone()))
20 .or(auth_block_propose(db.clone())) 20 .or(auth_block_propose(db.clone()))
21 .or(block_list(db.clone())) 21 .or(block_list(db))
22 .or(static_route) 22 .or(static_route)
23} 23}
24 24