diff options
Diffstat (limited to 'src/routes.rs')
-rw-r--r-- | src/routes.rs | 2 |
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 | ||