Skip to content

Commit

Permalink
f rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
devrandom committed Dec 28, 2024
1 parent 1d28174 commit d44c255
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lightning/src/chain/package.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ pub(crate) fn verify_channel_type_features(channel_type_features: &Option<Channe
// number_of_witness_elements + sig_length + revocation_sig + true_length + op_true + witness_script_length + witness_script
pub(crate) const WEIGHT_REVOKED_OUTPUT: u64 = 1 + 1 + 73 + 1 + 1 + 1 + 77;

#[cfg(not(test))]
#[cfg(not(any(test, feature = "_test_utils")))]
/// Height delay at which transactions are fee-bumped/rebroadcasted with a low priority.
const LOW_FREQUENCY_BUMP_INTERVAL: u32 = 15;
#[cfg(test)]
#[cfg(any(test, feature = "_test_utils"))]
/// Height delay at which transactions are fee-bumped/rebroadcasted with a low priority.
pub(crate) const LOW_FREQUENCY_BUMP_INTERVAL: u32 = 15;

Expand Down
1 change: 1 addition & 0 deletions lightning/src/util/dyn_signer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,7 @@ impl NodeSigner for DynPhantomKeysInterface {
fn sign_bolt12_invoice(
&self, invoice: &crate::offers::invoice::UnsignedBolt12Invoice
) -> Result<bitcoin::secp256k1::schnorr::Signature, ()>;

fn get_inbound_payment_key(&self) -> ExpandedKey;
}
}
Expand Down

0 comments on commit d44c255

Please sign in to comment.