Skip to content

Commit 15443a4

Browse files
authored
Merge pull request #3267 from pyth-network/cprussin/set-finality
fix: set pyth client finality for IH
2 parents 350c338 + befc643 commit 15443a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/insights/src/services/pyth/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const parseCluster = (name: string): Cluster | undefined =>
4343
: undefined;
4444

4545
const mkConnection = (cluster: Cluster) =>
46-
new Connection(ClusterToRPC[cluster]);
46+
new Connection(ClusterToRPC[cluster], "confirmed");
4747

4848
const connections = {
4949
[Cluster.Pythnet]: mkConnection(Cluster.Pythnet),

0 commit comments

Comments
 (0)