Skip to content

Commit d26211c

Browse files
authored
fix: casing (#87)
1 parent e562b26 commit d26211c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/models/balances.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -410,16 +410,16 @@ export const reallocateBalance = async (
410410
VALUES
411411
(
412412
$/fromOwnerChainId/::TEXT,
413-
$/fromowner/::TEXT,
413+
$/fromOwner/::TEXT,
414414
$/fromCurrencyChainId/::TEXT,
415-
$/fromcurrency/::TEXT,
415+
$/fromCurrency/::TEXT,
416416
-$/amount/::NUMERIC(78, 0)
417417
),
418418
(
419419
$/toOwnerChainId/,
420-
$/toowner/,
420+
$/toOwner/,
421421
$/fromCurrencyChainId/,
422-
$/fromcurrency/,
422+
$/fromCurrency/,
423423
$/amount/
424424
)
425425
)
@@ -435,11 +435,11 @@ export const reallocateBalance = async (
435435
`,
436436
{
437437
fromOwnerChainId: from.ownerChainId,
438-
fromowner: nvAddress(from.owner, fromOwnerVmType),
438+
fromOwner: nvAddress(from.owner, fromOwnerVmType),
439439
fromCurrencyChainId: from.currencyChainId,
440-
fromcurrency: nvCurrency(from.currency, fromCurrencyVmType),
440+
fromCurrency: nvCurrency(from.currency, fromCurrencyVmType),
441441
toOwnerChainId: to.ownerChainId,
442-
toowner: nvAddress(to.owner, toOwnerVmType),
442+
toOwner: nvAddress(to.owner, toOwnerVmType),
443443
amount,
444444
}
445445
);

0 commit comments

Comments
 (0)