From c18f726c39da6baf0aed7cf1e58555eafd14a631 Mon Sep 17 00:00:00 2001 From: Guillermo Bescos Alapont Date: Sat, 4 Feb 2023 01:06:37 -0600 Subject: [PATCH] Fix import --- src/example_ws_usage.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/example_ws_usage.ts b/src/example_ws_usage.ts index 7e152dd..30156e2 100644 --- a/src/example_ws_usage.ts +++ b/src/example_ws_usage.ts @@ -1,6 +1,5 @@ import { Connection } from '@solana/web3.js' -import { PythConnection } from './PythConnection' -import { getPythClusterApiUrl, getPythProgramKeyForCluster, PythCluster, PriceStatus } from '.' +import { getPythClusterApiUrl, getPythProgramKeyForCluster, PythCluster, PriceStatus, PythConnection } from '.' const PYTHNET_CLUSTER_NAME: PythCluster = 'pythnet' const connection = new Connection(getPythClusterApiUrl(PYTHNET_CLUSTER_NAME))