Skip to content

Commit 2cae169

Browse files
committed
fix: tests
1 parent 8076b72 commit 2cae169

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

services/decoder/protocols/aave-v3/aave-v3.decoders.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ GoldRushDecoder.on(
447447
decimals: RepayToken?.[0]?.contract_decimals,
448448
heading: "Repay Amount",
449449
pretty_quote: prettifyCurrency(
450-
RepayToken?.[0]?.prices?.[0].price *
450+
RepayToken?.[0]?.prices?.[0]?.price *
451451
(Number(decoded.amount) /
452452
Math.pow(
453453
10,
@@ -638,7 +638,7 @@ GoldRushDecoder.on(
638638
decimals: RepayToken?.[0]?.contract_decimals,
639639
heading: "Withdraw Amount",
640640
pretty_quote: prettifyCurrency(
641-
RepayToken?.[0]?.prices?.[0].price *
641+
RepayToken?.[0]?.prices?.[0]?.price *
642642
(Number(decoded.amount) /
643643
Math.pow(
644644
10,

0 commit comments

Comments
 (0)