Skip to content

Commit 49c9f3d

Browse files
authored
go (#2032)
1 parent 9c76162 commit 49c9f3d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/price_pusher/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pythnetwork/price-pusher",
3-
"version": "8.0.2",
3+
"version": "8.0.3",
44
"description": "Pyth Price Pusher",
55
"homepage": "https://pyth.network",
66
"main": "lib/index.js",

apps/price_pusher/src/solana/solana.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export class SolanaPriceListener extends ChainPriceListener {
3535
const blockTime = await this.pythSolanaReceiver.connection.getBlockTime(
3636
slot
3737
);
38-
if (blockTime === null || blockTime < Date.now() / 1000 - 30) {
38+
if (blockTime === null || blockTime < Date.now() / 1000 - 50) {
3939
throw new Error("Solana connection is unhealthy");
4040
}
4141
}

0 commit comments

Comments
 (0)