computer: snapshot

This commit is contained in:
nym21
2026-02-27 01:23:36 +01:00
parent 78fc5ffcf7
commit 72c17096ea
52 changed files with 3011 additions and 2967 deletions
+1 -5
View File
@@ -16,7 +16,7 @@ mod vecs;
use crate::{
blocks,
indexes::{self, ComputeIndexes},
mining, prices, transactions,
mining, prices,
};
pub const DB_NAME: &str = "pools";
@@ -73,7 +73,6 @@ impl Vecs {
blocks: &blocks::Vecs,
prices: &prices::Vecs,
mining: &mining::Vecs,
transactions: &transactions::Vecs,
starting_indexes: &ComputeIndexes,
exit: &Exit,
) -> Result<()> {
@@ -83,7 +82,6 @@ impl Vecs {
blocks,
prices,
mining,
transactions,
starting_indexes,
exit,
)?;
@@ -100,7 +98,6 @@ impl Vecs {
blocks: &blocks::Vecs,
prices: &prices::Vecs,
mining: &mining::Vecs,
transactions: &transactions::Vecs,
starting_indexes: &ComputeIndexes,
exit: &Exit,
) -> Result<()> {
@@ -113,7 +110,6 @@ impl Vecs {
blocks,
prices,
mining,
transactions,
exit,
)
})?;