File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
target_chains/ethereum/contracts/contracts/pyth Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -372,7 +372,7 @@ abstract contract Pyth is
372
372
);
373
373
}
374
374
375
- function processSingleTwapUpdate (
375
+ function extractTwapPriceInfos (
376
376
bytes calldata updateData
377
377
)
378
378
private
@@ -466,7 +466,7 @@ abstract contract Pyth is
466
466
offsetStart,
467
467
startTwapPriceInfos,
468
468
startPriceIds
469
- ) = processSingleTwapUpdate (updateData[0 ]);
469
+ ) = extractTwapPriceInfos (updateData[0 ]);
470
470
}
471
471
472
472
// Process end update data
@@ -478,7 +478,7 @@ abstract contract Pyth is
478
478
offsetEnd,
479
479
endTwapPriceInfos,
480
480
endPriceIds
481
- ) = processSingleTwapUpdate (updateData[1 ]);
481
+ ) = extractTwapPriceInfos (updateData[1 ]);
482
482
}
483
483
484
484
// Verify that we have the same number of price feeds in start and end updates
You can’t perform that action at this time.
0 commit comments