Skip to content

Commit be36e29

Browse files
committed
linting
1 parent def4683 commit be36e29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/price_pusher/src/solana/solana.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export class SolanaPricePusher implements IPricePusher {
100100
private computeUnitPriceMicroLamports: number
101101
) {}
102102

103-
async updatePriceFeed(priceIds: string[], _: number[]): Promise<void> {
103+
async updatePriceFeed(priceIds: string[]): Promise<void> {
104104
if (priceIds.length === 0) {
105105
return;
106106
}
@@ -189,7 +189,7 @@ export class SolanaPricePusherJito implements IPricePusher {
189189
return new Promise((resolve) => setTimeout(resolve, ms));
190190
}
191191

192-
async updatePriceFeed(priceIds: string[], _: number[]): Promise<void> {
192+
async updatePriceFeed(priceIds: string[]): Promise<void> {
193193
const recentJitoTip = await this.getRecentJitoTipLamports();
194194
const jitoTip =
195195
this.dynamicJitoTips && recentJitoTip !== undefined

0 commit comments

Comments
 (0)