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 f25ea16 commit db80e73Copy full SHA for db80e73
src/fixtures/info.ts
@@ -1,5 +1,7 @@
1
-export const upgradesInfo = {
2
- apricotPhaselTime: '2020-12-05T05:00:00Z',
+import type { GetUpgradesInfoResponse } from '../info';
+
3
+export const upgradesInfo: GetUpgradesInfoResponse = {
4
+ apricotPhase1Time: '2020-12-05T05:00:00Z',
5
apricotPhase2Time: '2020-12-05T05:00:00Z',
6
apricotPhase3Time: '2020-12-05T05:00:00Z',
7
apricotPhase4Time: '2020-12-05T05:00:00Z',
src/info/model.ts
@@ -77,7 +77,7 @@ export type isBootstrapped = {
77
};
78
79
export type GetUpgradesInfoResponse = {
80
- apricotPhaselTime: string;
+ apricotPhase1Time: string;
81
apricotPhase2Time: string;
82
apricotPhase3Time: string;
83
apricotPhase4Time: string;
0 commit comments