Skip to content

Commit

Permalink
fix(mu): dont return the response from relay
Browse files Browse the repository at this point in the history
  • Loading branch information
VinceJuliano committed Feb 6, 2025
1 parent d345cb0 commit 3f08866
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions servers/mu/src/domain/clients/relay.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,8 @@ export function topUpWith ({ fetch, logger, wallet, address }) {
fromPromise(() =>
fetch(
urlString, { method, headers }
).then(async (response) => {
).then(async (_response) => {
return {
response,
request: { method, url: urlString, headers }
}
})
Expand Down

0 comments on commit 3f08866

Please sign in to comment.