We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2455061 commit b73c0a4Copy full SHA for b73c0a4
tests/integration/pox/helpers.ts
@@ -72,6 +72,7 @@ export const getPoxInfo = async (
72
retry?: number,
73
): Promise<
74
PoxInfo & {
75
+ rejection_votes_left_required: number;
76
total_liquid_supply_ustx: number;
77
pox_activation_threshold_ustx: number;
78
}
@@ -81,6 +82,7 @@ export const getPoxInfo = async (
81
82
try {
83
let response = await fetch(network.getPoxInfoUrl(), {});
84
let poxInfo = (await response.json()) as PoxInfo & {
85
86
87
88
};
0 commit comments