Skip to content

Commit

Permalink
fix points transfer
Browse files Browse the repository at this point in the history
  • Loading branch information
feruzm committed Sep 22, 2024
1 parent 9ca33d0 commit 0626aa3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/api/operations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ export const transferPoint = (
});

const op = {
id: "ecency_pointi18next.transfer",
id: "ecency_point_transfer",
json,
required_auths: [from],
required_posting_auths: []
Expand All @@ -397,7 +397,7 @@ export const transferPointHot = (from: string, to: string, amount: string, memo:
authority: "active",
required_auths: `["${from}"]`,
required_posting_auths: "[]",
id: "ecency_pointi18next.transfer",
id: "ecency_point_transfer",
json: JSON.stringify({
sender: from,
receiver: to,
Expand All @@ -419,7 +419,7 @@ export const transferPointKc = (from: string, to: string, amount: string, memo:

return keychain.customJson(
from,
"ecency_pointi18next.transfer",
"ecency_point_transfer",
"Active",
json,
"Point Transfer"
Expand Down

0 comments on commit 0626aa3

Please sign in to comment.