Skip to content

Commit fda69e2

Browse files
authored
bump package version (#62)
* update changelog * 2.13.0
1 parent e724b2f commit fda69e2

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 2.13.0
4+
5+
- Add method to fetch individual prices specified by user
6+
37
## 2.12.0
48

59
- Add `PriceStatus.Ignored`

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pythnetwork/client",
3-
"version": "2.12.0",
3+
"version": "2.13.0",
44
"description": "Client for consuming Pyth price data",
55
"homepage": "https://pyth.network",
66
"main": "lib/index.js",

src/PythHttpClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ export class PythHttpClient {
131131
if (!accInfo) {
132132
throw new Error('Could not get account info for account ' + priceAccounts[i].toBase58())
133133
}
134-
134+
135135
const baseData = parseBaseData(accInfo.data)
136136
if (baseData === undefined || baseData.type !== AccountType.Price) {
137137
throw new Error('Account ' + priceAccounts[i].toBase58() + ' is not a price account')

0 commit comments

Comments
 (0)