adding outputs & kernels into the dashboard

This commit is contained in:
aglkm
2024-10-01 00:13:07 +03:00
parent aa49b2c20b
commit 8b5d7ff2ea
4 changed files with 128 additions and 43 deletions

View File

@@ -49,6 +49,8 @@ pub struct Dashboard {
pub stem: String,
// utxo
pub utxo_count: String,
// kernel
pub kernel_mmr_size: String,
}
impl Dashboard {
@@ -79,6 +81,7 @@ impl Dashboard {
txns: String::new(),
stem: String::new(),
utxo_count: String::new(),
kernel_mmr_size: String::new(),
}
}
}