File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
target_chains/ethereum/contracts/contracts/pulse Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -450,7 +450,7 @@ abstract contract Scheduler is IScheduler, SchedulerState {
450
450
params.priceIds.length
451
451
);
452
452
for (uint8 i = 0 ; i < params.priceIds.length ; i++ ) {
453
- PythStructs.PriceFeed storage priceFeed = _state.priceUpdates[
453
+ PythStructs.PriceFeed memory priceFeed = _state.priceUpdates[
454
454
subscriptionId
455
455
][params.priceIds[i]];
456
456
// Check if the price feed exists (price ID is valid and has been updated)
@@ -468,7 +468,7 @@ abstract contract Scheduler is IScheduler, SchedulerState {
468
468
priceIds.length
469
469
);
470
470
for (uint8 i = 0 ; i < priceIds.length ; i++ ) {
471
- PythStructs.PriceFeed storage priceFeed = _state.priceUpdates[
471
+ PythStructs.PriceFeed memory priceFeed = _state.priceUpdates[
472
472
subscriptionId
473
473
][priceIds[i]];
474
474
You can’t perform that action at this time.
0 commit comments