Add TxOut in DynamicOutput
[rust-lightning] / src / chain / keysinterface.rs
index 556be6dc5bbaa4c881ca58f12be762c28598ff54..7d669d9d701a055e40dbb3f0f8f65bba1db57c48 100644 (file)
@@ -50,6 +50,8 @@ pub enum SpendableOutputDescriptor {
                witness_script: Script,
                /// nSequence input must commit to self_delay to satisfy script's OP_CSV
                to_self_delay: u16,
+               /// The output which is referenced by the given outpoint
+               output: TxOut,
        }
 }