Skip to content

Commit 455bbf6

Browse files
committed
update
1 parent 416a20b commit 455bbf6

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

apps/price_pusher/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,7 @@ human-readable logs, you can pipe the output of the program to `pino-pretty`. Se
203203

204204
You can configure the log level of some of the modules of the price pusher as well. The available modules are PriceServiceConnection, which
205205
is responsible for connecting to the Hermes price service, and Controller, which is responsible for checking the prices from the Hermes
206-
and the on-chain Pyth contract and deciding whether to push a new price. You can configure the log level of these modules by passing the
207-
`--price-service-connection-log-level` and `--controller-log-level` arguments, respectively.
206+
and the on-chain Pyth contract and deciding whether to push a new price. You can configure the log level of these modules by passing the `--controller-log-level` arguments, respectively.
208207

209208
### Example
210209

apps/price_pusher/src/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import { PriceItem } from "./interface";
44
export type PctNumber = number;
55
export type DurationInSeconds = number;
66
export const txSpeeds = ["slow", "standard", "fast"] as const;
7-
export type TxSpeed = (typeof txSpeeds)[number];
7+
export type TxSpeed = typeof txSpeeds[number];
88
export const customGasChainIds = [137] as const;
9-
export type CustomGasChainId = (typeof customGasChainIds)[number];
9+
export type CustomGasChainId = typeof customGasChainIds[number];
1010

1111
export async function sleep(ms: number): Promise<void> {
1212
return new Promise((resolve) => setTimeout(resolve, ms));

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,5 @@
3131
"patchedDependencies": {
3232
3333
}
34-
},
35-
"version": "1.0.0"
34+
}
3635
}

0 commit comments

Comments
 (0)