We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20fa03b commit a834254Copy full SHA for a834254
src/event.rs
@@ -432,6 +432,7 @@ impl LdkEventHandler for LdkLiteEventHandler {
432
});
433
}
434
LdkEvent::SpendableOutputs { outputs } => {
435
+ // TODO: We should eventually remember the outputs and supply them to the wallet's coin selection, once BDK allows us to do so.
436
let destination_address = self.chain_access.get_new_address().unwrap();
437
let output_descriptors = &outputs.iter().map(|a| a).collect::<Vec<_>>();
438
let tx_feerate =
0 commit comments