Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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 apps/price_pusher/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pythnetwork/price-pusher",
"version": "9.1.4",
"version": "9.1.5",
"description": "Pyth Price Pusher",
"homepage": "https://pyth.network",
"main": "lib/index.js",
Expand Down
6 changes: 3 additions & 3 deletions apps/price_pusher/src/solana/solana.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,10 +174,10 @@ export class SolanaPricePusherJito implements IPricePusher {
async getRecentJitoTipLamports(): Promise<number | undefined> {
try {
const response = await fetch(
"http://bundles-api-rest.jito.wtf/api/v1/bundles/tip_floor",
"https://bundles.jito.wtf/api/v1/bundles/tip_floor",
);
if (!response.ok) {
this.logger.error(
this.logger.warn(
{ status: response.status, statusText: response.statusText },
"getRecentJitoTips http request failed",
);
Expand All @@ -188,7 +188,7 @@ export class SolanaPricePusherJito implements IPricePusher {
Number(data[0].landed_tips_50th_percentile) * LAMPORTS_PER_SOL,
);
} catch (err: any) {
this.logger.error({ err }, "getRecentJitoTips failed");
this.logger.warn({ err }, "getRecentJitoTips failed");
return undefined;
}
}
Expand Down
Loading