Skip to content

Commit

Permalink
Publically expose locateAddressInfo method
Browse files Browse the repository at this point in the history
  • Loading branch information
rileystephens28 committed Oct 17, 2024
1 parent 4d8ba1d commit fd434c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet/qi-hdwallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ export class QiHDWallet extends AbstractHDWallet {
* @param {string} address - The address to locate.
* @returns {NeuteredAddressInfo | PaymentChannelAddressInfo | null} The address info or null if not found.
*/
private locateAddressInfo(address: string): NeuteredAddressInfo | PaymentChannelAddressExtendedInfo | null {
public locateAddressInfo(address: string): NeuteredAddressInfo | PaymentChannelAddressExtendedInfo | null {
// First, try to get standard address info
let addressInfo = this.getAddressInfo(address);
if (addressInfo) {
Expand Down

0 comments on commit fd434c1

Please sign in to comment.