We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71f4749 commit 464391cCopy full SHA for 464391c
lightning/src/chain/channelmonitor.rs
@@ -3162,8 +3162,10 @@ impl<Signer: Sign> ChannelMonitorImpl<Signer> {
3162
let htlc_claim = HTLCClaim::from_witness(&input.witness);
3163
let revocation_sig_claim = htlc_claim == Some(HTLCClaim::Revocation);
3164
let accepted_preimage_claim = htlc_claim == Some(HTLCClaim::AcceptedPreimage);
3165
+ #[cfg(not(fuzzing))]
3166
let accepted_timeout_claim = htlc_claim == Some(HTLCClaim::AcceptedTimeout);
3167
let offered_preimage_claim = htlc_claim == Some(HTLCClaim::OfferedPreimage);
3168
3169
let offered_timeout_claim = htlc_claim == Some(HTLCClaim::OfferedTimeout);
3170
3171
let mut payment_preimage = PaymentPreimage([0; 32]);
0 commit comments