We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c76162 commit 49c9f3dCopy full SHA for 49c9f3d
apps/price_pusher/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@pythnetwork/price-pusher",
3
- "version": "8.0.2",
+ "version": "8.0.3",
4
"description": "Pyth Price Pusher",
5
"homepage": "https://pyth.network",
6
"main": "lib/index.js",
apps/price_pusher/src/solana/solana.ts
@@ -35,7 +35,7 @@ export class SolanaPriceListener extends ChainPriceListener {
35
const blockTime = await this.pythSolanaReceiver.connection.getBlockTime(
36
slot
37
);
38
- if (blockTime === null || blockTime < Date.now() / 1000 - 30) {
+ if (blockTime === null || blockTime < Date.now() / 1000 - 50) {
39
throw new Error("Solana connection is unhealthy");
40
}
41
0 commit comments