-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use nodes for network ping urls (#241)
* refactor: stagger the request durations to use less precise timings * refactor: rename system state * fix: remove external network ping to browser websites and use network algod nodes
- Loading branch information
1 parent
9c96846
commit 4e7798b
Showing
9 changed files
with
40 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...ion/features/system/types/ISystemState.ts → ...extension/features/system/types/IState.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
// types | ||
import type { ILogger } from '@common/types'; | ||
import IConfirmModal from './IConfirmModal'; | ||
import IScanQRCodeModal from './IScanQRCodeModal'; | ||
import type IConfirmModal from './IConfirmModal'; | ||
import type IScanQRCodeModal from './IScanQRCodeModal'; | ||
|
||
interface ISystemState { | ||
interface IState { | ||
confirmModal: IConfirmModal | null; | ||
logger: ILogger; | ||
online: boolean; | ||
scanQRCodeModal: IScanQRCodeModal | null; | ||
sidebar: boolean; | ||
} | ||
|
||
export default ISystemState; | ||
export default IState; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export type { default as IConfirmModal } from './IConfirmModal'; | ||
export type { default as IScanQRCodeModal } from './IScanQRCodeModal'; | ||
export type { default as ISystemState } from './ISystemState'; | ||
export type { default as IState } from './IState'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters