Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion target_chains/ethereum/sdk/solidity/MockPyth.sol
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ contract MockPyth is AbstractPyth {
}

// Takes an array of encoded price feeds and stores them.
// You can create this data either by calling createPriceFeedData or
// You can create this data either by calling createPriceFeedUpdateData or
// by using web3.js or ethers abi utilities.
function updatePriceFeeds(
bytes[] calldata updateData
Expand Down
2 changes: 1 addition & 1 deletion target_chains/sui/contracts/sources/pyth.move
Original file line number Diff line number Diff line change
Expand Up @@ -963,7 +963,7 @@ module pyth::pyth_tests{
price_info_object_1 = vector::pop_back(&mut price_info_object_vec);

vector::destroy_empty(price_info_object_vec);

let current_price_info = price_info::get_price_info_from_price_info_object(&price_info_object_1);
let current_price_feed = price_info::get_price_feed(&current_price_info);
let current_price = price_feed::get_price(current_price_feed);
Expand Down