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
commit343bf9ec1942de4d4453846681d178f2ca7f0790 (patch)
treeca1eabdc9e67603f93af5cbecb089ce52792c2ad /src/routes.rs
parent6ddfaebe3ed45edb01d8c188fc5449b366ddcf55 (diff)
downloadgradecoin-343bf9ec1942de4d4453846681d178f2ca7f0790.tar.gz
gradecoin-343bf9ec1942de4d4453846681d178f2ca7f0790.tar.bz2
gradecoin-343bf9ec1942de4d4453846681d178f2ca7f0790.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