Allow users to accept skimmed fees in calling `peel_payment_onion`
[rust-lightning] / fuzz / src / chanmon_consistency.rs
index 22491bdf0b70bc1e3e98a3b34ca26f36cf132dc3..f654908771f0fec964b40384ce6178bd0b267c71 100644 (file)
@@ -231,6 +231,8 @@ impl NodeSigner for KeyProvider {
 
 impl SignerProvider for KeyProvider {
        type EcdsaSigner = TestChannelSigner;
+       #[cfg(taproot)]
+       type TaprootSigner = TestChannelSigner;
 
        fn generate_channel_keys_id(&self, _inbound: bool, _channel_value_satoshis: u64, _user_channel_id: u128) -> [u8; 32] {
                let id = self.rand_bytes_id.fetch_add(1, atomic::Ordering::Relaxed) as u8;