From 0d201e32a2022e3a7b915996f5078a9f1ff6aecf Mon Sep 17 00:00:00 2001 From: yancy Date: Tue, 4 Feb 2025 19:00:14 -0600 Subject: [PATCH] wip --- src/lib.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index edc385f..1b50c6c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -148,6 +148,12 @@ mod tests { } #[derive(Debug, Clone, PartialEq, Ord, Eq, PartialOrd, Arbitrary)] + // satisfaction_weight = weight - 160 + // + // satisfaction_weight does no include the base_weight of 160. + // + // Currently weight is used to + // mimic core branch and bound while satisfaction_weight is used to mimic core coin-grinder. pub struct Utxo { pub output: TxOut, pub weight: Weight,