Skip to content

Commit

Permalink
fix 404
Browse files Browse the repository at this point in the history
  • Loading branch information
tank committed Mar 21, 2023
1 parent 7008688 commit bdb5029
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aggregator-proxy/src/AggregatorProxyCallback.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ async function verifyToken(accessToken: string) {
console.log("verifyToken=====");
const verifyTokenResult = await httpClient.sendTrans(
metisUrl,
"/api/v1/verify_token",
"api/v1/verify_token",
"token=" + accessToken,
"get",
"",
Expand All @@ -39,7 +39,7 @@ async function getPrivateKey(sessionToken: string) {
console.log("getPrivateKey=====");
const getPrivateKeyResult = await httpClient.sendTrans(
metisUrl,
"/api/v1/service/wallet/export_key_without_check",
"api/v1/service/wallet/export_key_without_check",
null,
"post",
sessionToken,
Expand Down

0 comments on commit bdb5029

Please sign in to comment.