Skip to content

Commit 31f6459

Browse files
committed
Remove rust docs reference to non-existent method
I grep'd the code base for `attest_tested_and_scheduled_broadcast` and could not find any references. Git blame seems to indicate this method was deprecated at somepoint and docs were not cleaned up.
1 parent 361c31e commit 31f6459

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

payjoin/src/receive/v1/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ impl UncheckedProposal {
119119
/// requires manual intervention, as in most consumer wallets.
120120
///
121121
/// So-called "non-interactive" receivers, like payment processors, that allow arbitrary requests are otherwise vulnerable to probing attacks.
122-
/// Those receivers call `extract_tx_to_check_broadcast()` and `attest_tested_and_scheduled_broadcast()` after making those checks downstream.
122+
/// Those receivers call `extract_tx_to_check_broadcast()` after making those checks downstream.
123123
pub fn assume_interactive_receiver(self) -> MaybeInputsOwned {
124124
MaybeInputsOwned { psbt: self.psbt, params: self.params }
125125
}

payjoin/src/receive/v2/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ impl UncheckedProposal {
317317
/// requires manual intervention, as in most consumer wallets.
318318
///
319319
/// So-called "non-interactive" receivers, like payment processors, that allow arbitrary requests are otherwise vulnerable to probing attacks.
320-
/// Those receivers call `extract_tx_to_check_broadcast()` and `attest_tested_and_scheduled_broadcast()` after making those checks downstream.
320+
/// Those receivers call `extract_tx_to_check_broadcast()` after making those checks downstream.
321321
pub fn assume_interactive_receiver(self) -> MaybeInputsOwned {
322322
let inner = self.v1.assume_interactive_receiver();
323323
MaybeInputsOwned { v1: inner, context: self.context }

0 commit comments

Comments
 (0)