Skip to content

Commit

Permalink
fix: Use WA resource server (#1857)
Browse files Browse the repository at this point in the history
Update service.ts
  • Loading branch information
Tymmmy authored Dec 3, 2024
1 parent 9234039 commit 585638b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/boutique/backend/src/open-payments/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ export class OpenPayments implements IOpenPayments {
return await this.opClient.incomingPayment
.create(
{
url: new URL(walletAddress.id).origin,
url: walletAddress.resourceServer,
accessToken: accessToken
},
{
Expand Down Expand Up @@ -548,7 +548,7 @@ export class OpenPayments implements IOpenPayments {
return await this.opClient.quote
.create(
{
url: new URL(walletAddress.id).origin,
url: walletAddress.resourceServer,
accessToken: grant.access_token.value
},
{
Expand Down

0 comments on commit 585638b

Please sign in to comment.