@@ -13,11 +13,11 @@ interface IPyth {
13
13
/// @param chainId ID of the source chain that the batch price update containing this price.
14
14
/// This value comes from Wormhole, and you can find the corresponding chains at https://docs.wormholenetwork.com/wormhole/contracts.
15
15
/// @param sequenceNumber Sequence number of the batch price update containing this price.
16
- /// @param lastPublsihTime Publish time of the previously stored price.
16
+ /// @param lastPublishTime Publish time of the previously stored price.
17
17
/// @param publishTime Publish time of the given price update.
18
18
/// @param price Current price of the given price update.
19
19
/// @param conf Current confidence interval of the given price update.
20
- event PriceFeedUpdate (bytes32 indexed id , bool indexed fresh , uint16 chainId , uint64 sequenceNumber , uint64 lastPublsihTime , uint64 publishTime , int64 price , uint64 conf );
20
+ event PriceFeedUpdate (bytes32 indexed id , bool indexed fresh , uint16 chainId , uint64 sequenceNumber , uint64 lastPublishTime , uint64 publishTime , int64 price , uint64 conf );
21
21
22
22
/// @dev Emitted when a batch price update is processed successfully.
23
23
/// @param chainId ID of the source chain that the batch price update comes from.
@@ -32,7 +32,6 @@ interface IPyth {
32
32
/// @param fee Amount of paid fee for updating the prices.
33
33
event UpdatePriceFeeds (address indexed sender , uint batchCount , uint fee );
34
34
35
-
36
35
/// @notice Returns the current price and confidence interval.
37
36
/// @dev Reverts if the current price is not available.
38
37
/// @param id The Pyth Price Feed ID of which to fetch the current price and confidence interval.
0 commit comments