feat: keep a local record of important skynet info

This commit is contained in:
silver 2023-06-04 21:16:24 +01:00
parent beab2cb97b
commit b9fdde4033
3 changed files with 85 additions and 9 deletions

View file

@ -255,7 +255,7 @@ pub async fn post_new_account_confirmation(mut req: Request<State>) -> tide::Res
DELETE FROM accounts_pending
WHERE auth_code == ?
"#,
).bind(&auth_code).fetch_all(pool).await {
).bind(&auth_code).fetch_all(db).await {
println!("{:?}", results)
}