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 bdd77ae commit d7c1cfcCopy full SHA for d7c1cfc
src/ln/channelmanager.rs
@@ -961,7 +961,7 @@ impl ChannelManager {
961
pub fn claim_funds(&self, payment_preimage: [u8; 32]) -> bool {
962
self.claim_funds_internal(payment_preimage, true)
963
}
964
- pub fn claim_funds_internal(&self, payment_preimage: [u8; 32], from_user: bool) -> bool {
+ fn claim_funds_internal(&self, payment_preimage: [u8; 32], from_user: bool) -> bool {
965
let mut sha = Sha256::new();
966
sha.input(&payment_preimage);
967
let mut payment_hash = [0; 32];
0 commit comments