adding txns & fees chart

This commit is contained in:
aglkm
2024-09-23 02:24:17 +03:00
parent d625738c7f
commit 3a08d82902
5 changed files with 118 additions and 17 deletions

View File

@@ -220,11 +220,13 @@ fn stats(statistics: &State<Arc<Mutex<Statistics>>>) -> Template {
Template::render("stats", context! {
route: "stats",
date: data.date.clone(),
user_agent: data.user_agent.clone(),
count: data.count.clone(),
total: data.total,
hashrate: data.hashrate.clone(),
hash_date: data.hash_date.clone(),
txns: data.txns.clone(),
fees: data.fees.clone(),
})
}