Slight documentation tweaks

This commit is contained in:
Luke Parker
2024-04-24 03:55:23 -04:00
parent d1474e9188
commit d57fef8999
4 changed files with 10 additions and 5 deletions

View File

@@ -29,6 +29,7 @@ pub enum ScannerEvent<N: Network> {
outputs: Vec<N::Output>,
},
// Eventuality completion found on-chain
// TODO: Move this from a tuple
Completed(
Vec<u8>,
usize,

View File

@@ -53,6 +53,7 @@ pub trait Scheduler<N: Network>: Sized + Clone + PartialEq + Debug {
txn: &mut D::Transaction<'_>,
utxos: Vec<N::Output>,
payments: Vec<Payment<N>>,
// TODO: Tighten this to multisig_for_any_change
key_for_any_change: <N::Curve as Ciphersuite>::G,
force_spend: bool,
) -> Vec<Plan<N>>;