Skip to content

Commit b73c0a4

Browse files
committed
fix: update type
1 parent 2455061 commit b73c0a4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/integration/pox/helpers.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ export const getPoxInfo = async (
7272
retry?: number,
7373
): Promise<
7474
PoxInfo & {
75+
rejection_votes_left_required: number;
7576
total_liquid_supply_ustx: number;
7677
pox_activation_threshold_ustx: number;
7778
}
@@ -81,6 +82,7 @@ export const getPoxInfo = async (
8182
try {
8283
let response = await fetch(network.getPoxInfoUrl(), {});
8384
let poxInfo = (await response.json()) as PoxInfo & {
85+
rejection_votes_left_required: number;
8486
total_liquid_supply_ustx: number;
8587
pox_activation_threshold_ustx: number;
8688
};

0 commit comments

Comments
 (0)