Skip to content

Commit

Permalink
Make findWalletForRedemption protected again
Browse files Browse the repository at this point in the history
The function was unintentionally changed to public in the previous commit.
Here we revert the change back.
  • Loading branch information
nkuba committed Jun 7, 2024
1 parent 97ea592 commit 2c15ff8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typescript/src/services/redemptions/redemptions-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export class RedemptionsService {
* @param amount The amount to be redeemed in satoshis.
* @returns Promise with the wallet details needed to request a redemption.
*/
async findWalletForRedemption(
protected async findWalletForRedemption(
redeemerOutputScript: Hex,
amount: BigNumber
): Promise<{
Expand Down

0 comments on commit 2c15ff8

Please sign in to comment.