We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3413d16 commit 3c705d4Copy full SHA for 3c705d4
src/event.rs
@@ -448,6 +448,7 @@ impl LdkEventHandler for LdkLiteEventHandler {
448
});
449
}
450
LdkEvent::SpendableOutputs { outputs } => {
451
+ // TODO: We should eventually remember the outputs and supply them to the wallet's coin selection, once BDK allows us to do so.
452
let destination_address = self.chain_access.get_new_address().unwrap();
453
let output_descriptors = &outputs.iter().map(|a| a).collect::<Vec<_>>();
454
let tx_feerate =
0 commit comments