Skip to content

Commit 15091e7

Browse files
chore(lit-node-client): LIT-4207 - Fix method name for accuracy
1 parent f2aab9d commit 15091e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/contracts-sdk/src/lib/price-feed-info-manager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ async function fetchPriceFeedInfo({
9898
};
9999
}
100100

101-
async function fetchNodePricesWithLocalPromise(
101+
async function fetchPriceFeedInfoWithLocalPromise(
102102
...params: GetPriceFeedInfoArgs
103103
): Promise<PriceFeedInfo> {
104104
try {
@@ -129,7 +129,7 @@ export async function getPriceFeedInfo(...params: GetPriceFeedInfoArgs) {
129129

130130
// If we get here, we've got prices that are at least 2 seconds out-of-date.
131131
// Fetch the new ones, update local cache values, and return them
132-
return fetchNodePricesWithLocalPromise(...params);
132+
return fetchPriceFeedInfoWithLocalPromise(...params);
133133
}
134134

135135
export async function getNodePrices(

0 commit comments

Comments
 (0)