global: renames and fixes

This commit is contained in:
nym21
2025-07-08 21:33:18 +02:00
parent 8cc1f8d691
commit f45fb6efe6
39 changed files with 2355 additions and 2270 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
use std::ops::{Add, AddAssign};
use brk_core::{GroupedBySizeRange, GroupedByType, OutputType, Sats};
use brk_core::{ByAmountRange, GroupedByType, OutputType, Sats};
use super::SupplyState;
@@ -8,7 +8,7 @@ use super::SupplyState;
pub struct Transacted {
pub spendable_supply: SupplyState,
pub by_type: GroupedByType<SupplyState>,
pub by_size_group: GroupedBySizeRange<SupplyState>,
pub by_size_group: ByAmountRange<SupplyState>,
}
impl Transacted {